-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.2 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.2 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
{
"name": "typeui.sh",
"version": "0.6.0",
"description": "Generate design system specifications and style guides as skill files for AI coding providers",
"main": "dist/cli.js",
"bin": {
"typeui.sh": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE.md"
],
"scripts": {
"dev": "tsx src/cli.ts",
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"prepack": "npm run build",
"release:check": "npm run typecheck && npm run test && npm pack --dry-run"
},
"repository": {
"type": "git",
"url": "https://github.com/bergside/typeui"
},
"keywords": [
"cli",
"design system",
"skills",
"ai",
"design md",
"design skills",
"claude skills",
"ai skills",
"ui",
"ux"
],
"author": "https://bergside.com",
"license": "MIT License",
"type": "commonjs",
"engines": {
"node": ">=18"
},
"homepage": "https://www.typeui.sh",
"dependencies": {
"commander": "^14.0.3",
"inquirer": "^12.11.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.3.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}