New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

@vetorzero/pts-custom-elements

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vetorzero/pts-custom-elements

Stencil Component Starter

latest
Source
npmnpm
Version
0.3.2
Version published
Maintainers
1
Created
Source

@vetorzero/pts-custom-elements

Custom web components for PTS, built with StencilJS.

Components

Getting Started

bun install
bun run start

Building

bun run build

Testing

bun run test

Publishing

Versions are auto-published to npm via CI when a new Git tag is pushed. To release a new version:

npm version patch   # or minor, major
git push --tags

This bumps the version in package.json, creates a Git tag, and pushes it — triggering the automated publish to npm.

Usage

Via unpkg (CDN)

Add the following script tag to your HTML. Components will be lazy-loaded as they are used:

<script type="module" src="https://unpkg.com/@vetorzero/pts-custom-elements"></script>

<pts-remote-picker
  name="entity"
  endpoint="https://api.example.com/remote-picker/entities"
></pts-remote-picker>

To pin a specific version:

<script type="module" src="https://unpkg.com/@vetorzero/pts-custom-elements@0.1.2/dist/pts-custom-elements/pts-custom-elements.esm.js"></script>

Via npm

bun add @vetorzero/pts-custom-elements

Then import the loader in your application entry point:

import '@vetorzero/pts-custom-elements/loader';

FAQs

Package last updated on 04 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts