New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@blueprintui/typewriter

Package Overview
Dependencies
Maintainers
0
Versions
75
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@blueprintui/typewriter - npm Package Compare versions

Comparing version 2.1.4 to 2.1.5

dist/custom-elements.json

244

package.json
{
"name": "@blueprintui/typewriter",
"version": "2.1.4",
"version": "2.1.5",
"type": "module",
"types": "./index.d.ts",
"customElements": "./custom-elements.json",
"customElements": "./dist/custom-elements.json",
"html.customData": [
"./vscode.html-custom-data.json"
],
"css.customData": [
"./vscode.css-custom-data.json"
],
"license": "MIT",

@@ -20,23 +25,234 @@ "author": "Crylan Software",

"web components",
"key navigation",
"blueprintui"
],
"files": [
"*"
"package.json",
"README.md",
"LICENSE.md",
"dist/**/*"
],
"sideEffects": [
"./include/*.js"
"./dist/include/*.js"
],
"exports": {
"./custom-elements.json": "./custom-elements.json",
"./include/*": "./include/*",
".": "./index.js",
"./*": "./*/index.js"
"./package.json": "./package.json",
"./custom-elements.json": "./dist/custom-elements.json",
"./include/*.js": {
"types": "./dist/include/*.d.ts",
"default": "./dist/include/*.js"
},
"./*": {
"types": "./dist/*/index.d.ts",
"default": "./dist/*/index.js"
},
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"publishConfig": {
"provenance": true
"dependencies": {
"lit": "catalog:",
"tslib": "catalog:"
},
"dependencies": {
"lit": "^3.1.4",
"tslib": "^2.6.3"
"devDependencies": {
"@blueprintui/themes": "workspace:^",
"@blueprintui/test": "workspace:^",
"@web/dev-server": "catalog:",
"@web/dev-server-esbuild": "catalog:",
"@web/dev-server-rollup": "catalog:",
"@web/test-runner": "catalog:",
"@web/test-runner-core": "catalog:",
"@web/test-runner-playwright": "catalog:",
"publint": "catalog:"
},
"scripts": {
"ci": "wireit",
"start": "wireit",
"docs": "wireit",
"build": "wireit",
"build:watch": "wireit",
"drafter": "wireit",
"drafter:watch": "wireit",
"test": "wireit",
"test:watch": "node ../test/dist/wtr.js --watch",
"test:unit": "wireit",
"test:coverage": "wireit",
"test:a11y": "wireit",
"test:api": "wireit",
"test:performance": "wireit",
"test:api:update": "wireit",
"sourcemap": "wireit"
},
"wireit": {
"ci": {
"dependencies": [
"lint",
"build",
"test",
"test:performance"
]
},
"start": {
"dependencies": [
"build:watch",
"drafter:watch"
]
},
"lint": {
"dependencies": [
"lint:publish"
]
},
"lint:publish": {
"command": "publint",
"dependencies": [
"build"
],
"files": [
"./dist",
"./package.json",
"./README.md",
"./LICENSE.md"
],
"output": []
},
"build": {
"command": "bp build",
"files": [
"./src/**/*",
"!./src/**/*.spec.ts",
"!./src/**/*.performance.ts",
"./blueprint.config.js",
"./tsconfig.lib.json",
"./tsconfig.json",
"./package.json"
],
"output": [
"./dist"
]
},
"build:watch": {
"command": "bp build --watch",
"service": true,
"dependencies": [
"build"
]
},
"docs": {
"command": "cd docs && lite-server"
},
"drafter": {
"command": "drafter build",
"files": [
"./src/**/*",
"./blueprint.config.js",
"./package.json"
],
"output": [
"./dist/drafter"
],
"dependencies": [
"build",
"../themes:build"
]
},
"drafter:watch": {
"command": "drafter build --watch",
"service": true,
"dependencies": [
"build"
]
},
"test": {
"dependencies": [
"build",
"test:api",
"test:unit"
]
},
"test:watch": {
"command": "node ../test/dist/wtr.js --watch",
"service": true
},
"test:unit": {
"command": "node ../test/dist/wtr.js",
"files": [
"./src/**/*",
"./package.json",
"./web-dev-server.config.mjs",
"./web-test-runner.config.mjs",
"./tsconfig.spec.json",
"./tsconfig.json"
],
"dependencies": [
"../test:build",
"build"
],
"output": []
},
"test:coverage": {
"command": "node ../test/dist/wtr.js --coverage",
"files": [
"./src/**/*",
"./package.json"
],
"output": [
"./.coverage"
],
"dependencies": [
"../test:build"
]
},
"test:a11y": {
"command": "node ../test/dist/wtr.js --config ./web-test-runner.a11y.mjs",
"files": [
"./src/**/*",
"./package.json",
"./web-dev-server.config.mjs"
],
"dependencies": [
"../test:build",
"build"
],
"output": []
},
"test:performance": {
"command": "node ../test/dist/wtr.js --config ./web-test-runner.performance.mjs",
"files": [
"./src/**/*",
"./package.json",
"./web-dev-server.config.mjs",
"web-test-runner.performance.mjs"
],
"dependencies": [
"../test:build",
"build"
],
"output": []
},
"test:api": {
"command": "bp api --test",
"dependencies": [
"build"
],
"files": [
"./src/**/*",
"./package.json"
],
"output": []
},
"test:api:update": {
"command": "bp api --update",
"dependencies": [
"build"
]
},
"sourcemap": {
"command": "pnpm dlx source-map-explorer ./**/*.js",
"dependencies": [
"build"
]
}
}
}
.tsbuildinfo
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc