-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.59 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.59 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
{
"name": "ui8kit",
"version": "1.5.2",
"description": "A CLI for adding UI components to your Vite React projects (UI8Kit core/blocks registries)",
"type": "module",
"bin": {
"ui8kit": "./dist/index.js"
},
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ui8kit/cli.git",
"directory": "."
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"cli",
"ui",
"components",
"vite",
"react",
"shadcn",
"tailwind",
"ui8kit",
"core"
],
"author": {
"name": "ui8kit",
"url": "https://github.com/ui8kit"
},
"license": "MIT",
"homepage": "https://ui.buildy.tw",
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"type-check": "tsc --noEmit",
"get-cdn": "node scripts/get-cdn.js",
"check:utility-map": "bash scripts/check-utility-map.sh",
"prepublishOnly": "npm run build",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^11.1.0",
"execa": "^8.0.1",
"fs-extra": "^11.1.1",
"glob": "^10.3.10",
"node-fetch": "^3.3.2",
"diff": "^7.0.0",
"ora": "^7.0.1",
"prompts": "^2.4.2",
"typescript": "^5.2.2",
"zod": "^3.22.4",
"zod-to-json-schema": "^3.24.5"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/diff": "^5.2.2",
"@types/node": "^20.8.0",
"@types/prompts": "^2.4.9",
"tsup": "^7.2.0",
"vitest": "^4.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}