wcb/create/template/package.json
Ayo 751067d367
Some checks are pending
Tests / Unit (push) Waiting to run
Tests / E2E (push) Waiting to run
chore(create): bump peer wcb to 6.1.5
bump wcb to latest
sync create-wcb version to 0.2.1
2026-07-25 11:55:28 +02:00

42 lines
1.1 KiB
JSON

{
"name": "wcb-button",
"version": "1.0.0",
"type": "module",
"description": "A wcb-button web component",
"license": "MIT",
"homepage": "https://webcomponent.io",
"customElements": "custom-elements.json",
"module": "./dist/wcb-button.js",
"types": "./dist/wcb-button.d.ts",
"exports": {
".": {
"types": "./dist/wcb-button.d.ts",
"import": "./dist/wcb-button.js",
"require": "./dist/wcb-button.umd.cjs",
"default": "./dist/wcb-button.js"
}
},
"files": [
"dist",
"custom-elements.json",
"README.md",
"LICENSE"
],
"scripts": {
"test": "echo \"Warning: no test specified\"",
"dev": "vite",
"build": "vite build",
"build:lib": "vite build --config vite-lib.config.ts",
"analyze": "cem analyze",
"prepack": "npm run build:lib && npm run analyze"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.11.0",
"@types/node": "^26.1.1",
"vite": "^8.1.5",
"vite-plugin-dts": "^5.0.3"
},
"peerDependencies": {
"web-component-base": "^6.1.5"
}
}