-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.62 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 3.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "@annondeveloper/ui-kit",
"version": "2.8.1",
"type": "module",
"description": "A zero-dependency React component library with built-in theming, motion, and accessibility.",
"main": "dist/esm/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
}
},
"./form": {
"import": {
"types": "./dist/esm/form.d.ts",
"default": "./dist/esm/form.js"
}
},
"./theme": {
"import": {
"types": "./dist/esm/theme.d.ts",
"default": "./dist/esm/theme.js"
}
},
"./lite": {
"import": {
"types": "./dist/esm/lite.d.ts",
"default": "./dist/esm/lite.js"
}
},
"./premium": {
"import": {
"types": "./dist/esm/premium.d.ts",
"default": "./dist/esm/premium.js"
}
},
"./lite/styles.css": "./src/lite/lite.css",
"./css/theme.css": "./dist/css/theme.css",
"./css/all.css": "./dist/css/all.css",
"./css/components/*": "./dist/css/components/*",
"./rsc": {
"import": {
"types": "./dist/esm/rsc.d.ts",
"default": "./dist/esm/rsc.js"
}
},
"./web-components": {
"import": {
"types": "./dist/esm/web-components.d.ts",
"default": "./dist/esm/web-components.js"
}
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup && tsup --config tsup.cli.config.ts && tsup --config tsup.mcp.config.ts && node scripts/extract-css.js && npx tsx scripts/extract-component-meta.ts",
"build:meta": "npx tsx scripts/extract-component-meta.ts",
"build:registry": "node dist/mcp/scripts/build-registry.js",
"build:mcp": "tsup --config tsup.mcp.config.ts && npm run build:registry",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:a11y": "vitest run src/__tests__/core/a11y",
"test:bundle-size": "node scripts/check-bundle-size.js",
"changelog": "node scripts/generate-changelog.js",
"build:report": "node scripts/generate-bundle-report.js",
"storybook": "storybook dev -p 6006",
"build:storybook": "storybook build -o storybook-static",
"test:visual": "playwright test",
"preversion": "node scripts/sync-versions.js",
"postversion": "git push && git push --tags"
},
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@axe-core/react": "^4.11.1",
"@storybook/addon-a11y": "^10.3.0",
"@storybook/react": "^10.3.0",
"@storybook/react-vite": "^10.3.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/jest-axe": "^3.5.9",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.0",
"jest-axe": "^10.0.0",
"jsdom": "^29.0.0",
"playwright": "^1.58.2",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"storybook": "^10.3.0",
"tsup": "^8.5.1",
"typescript": "^5.9.0",
"vite": "^8.0.0",
"vitest": "^4.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/annondeveloper/ui-kit.git"
},
"license": "MIT",
"keywords": [
"react",
"components",
"ui-kit",
"design-system",
"typescript",
"zero-dependency"
],
"sideEffects": false,
"bin": {
"ui-kit": "dist/cli/index.js",
"ui-kit-mcp": "dist/mcp/index.js"
},
"optionalDependencies": {
"@modelcontextprotocol/sdk": "^1.28.0",
"zod": "^4.3.6"
}
}