@nitramburesh/wcds 0.3.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,87 @@
1
+ {
2
+ "name": "@nitramburesh/wcds",
3
+ "version": "0.3.10",
4
+ "description": "Web component design system",
5
+ "main": "./dist/wcds.js",
6
+ "module": "./dist/wcds.js",
7
+ "type": "module",
8
+ "types": "./dist/index.d.ts",
9
+ "sideEffects": true,
10
+ "exports": {
11
+ ".": {
12
+ "types": "./dist/index.d.ts",
13
+ "import": "./dist/wcds.js"
14
+ },
15
+ "./style": "./dist/wcds.css",
16
+ "./package.json": "./package.json",
17
+ "./custom-elements.json": "./custom-elements.json"
18
+ },
19
+ "files": [
20
+ "dist/**/*",
21
+ "./README.md",
22
+ "LICENSE",
23
+ "./custom-elements.json"
24
+ ],
25
+ "repository": {
26
+ "type": "git",
27
+ "url": "git+https://github.com/nitramburesh/WCDS.git"
28
+ },
29
+ "publishConfig": {
30
+ "access": "public"
31
+ },
32
+ "author": "nitramburesh",
33
+ "license": "ISC",
34
+ "bugs": {
35
+ "url": "https://github.com/nitramburesh/WCDS/issues"
36
+ },
37
+ "homepage": "https://github.com/nitramburesh/WCDS#readme",
38
+ "devDependencies": {
39
+ "@chromatic-com/storybook": "^4.0.1",
40
+ "@custom-elements-manifest/analyzer": "^0.11.0",
41
+ "@storybook/addon-a11y": "10.2.1",
42
+ "@storybook/addon-docs": "10.2.1",
43
+ "@storybook/addon-vitest": "10.2.1",
44
+ "@storybook/web-components-vite": "10.2.1",
45
+ "@types/node": "^24.5.2",
46
+ "@vitest/browser": "^3.2.4",
47
+ "@vitest/coverage-v8": "^3.2.4",
48
+ "@wc-toolkit/cem-validator": "^1.3.0",
49
+ "@wc-toolkit/module-path-resolver": "^1.0.0",
50
+ "@wc-toolkit/storybook-helpers": "^10.0.0",
51
+ "chromatic": "^13.3.5",
52
+ "custom-element-vs-code-integration": "^1.5.0",
53
+ "custom-elements-manifest": "^2.1.0",
54
+ "lit": "^3.3.1",
55
+ "playwright": "^1.53.2",
56
+ "rollup-plugin-visualizer": "^7.0.1",
57
+ "storybook": "10.2.1",
58
+ "style-dictionary": "^5.1.1",
59
+ "ts-lit-plugin": "^2.0.2",
60
+ "typescript": "~5.8.3",
61
+ "vite": "^7.0.0",
62
+ "vite-plugin-dts": "^4.5.4",
63
+ "vitest": "^3.2.4"
64
+ },
65
+ "peerDependencies": {
66
+ "lit": "^3.3.1"
67
+ },
68
+ "customElements": "custom-elements.json",
69
+ "scripts": {
70
+ "generate-tokens": "node src/tokens/build-tokens.js",
71
+ "manifest": "pnpm cem analyze",
72
+ "typecheck:build": "tsc -p tsconfig.build.json",
73
+ "dev": "pnpm prepare && storybook dev -p 6060",
74
+ "build": "pnpm prepare && pnpm typecheck:build && vite build",
75
+ "preview": "vite preview",
76
+ "test": "vitest run",
77
+ "test:watch": "vitest",
78
+ "test:browser": "vitest run --project browser",
79
+ "test:install-browsers": "playwright install chromium",
80
+ "test:storybook": "vitest run --project storybook",
81
+ "build-storybook": "storybook build",
82
+ "chromatic": "npx chromatic --force-rebuild",
83
+ "release:npm": "bash ./scripts/release-npm.sh",
84
+ "release:npm:local": "bash ./scripts/release-npm.sh --local-publish",
85
+ "pack": "npm pack"
86
+ }
87
+ }