-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 1.9 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
{
"name": "ui8kit",
"version": "2.0.1",
"description": "CLI to install and maintain UI8Kit component/block registries (multi-runtime, file-based)",
"type": "module",
"bin": {
"ui8kit": "./dist/index.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/ui8kit/cli.git"
},
"bugs": {
"url": "https://github.com/ui8kit/cli/issues"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"docs",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"keywords": [
"cli",
"ui",
"components",
"shadcn",
"tailwind",
"ui8kit",
"svelte",
"react",
"solid",
"vue",
"templ",
"codegen",
"registry"
],
"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",
"smoke": "bash scripts/smoke-cli-workflow.sh",
"smoke:win": "powershell.exe -NoProfile -ExecutionPolicy Bypass -File scripts/smoke-cli-workflow.ps1",
"clean:artifacts": "bash scripts/node-artifact-cleaner.sh --yes",
"prepack": "npm run build",
"prepublishOnly": "npm run type-check && npm test && npm run build",
"test": "node scripts/run-vitest.mjs run",
"test:watch": "node scripts/run-vitest.mjs",
"pack:check": "npm pack --dry-run"
},
"dependencies": {
"commander": "^11.1.0",
"prompts": "^2.4.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.19.0",
"@types/prompts": "^2.4.9",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"vitest": "^4.0.0"
},
"engines": {
"node": ">=20.0.0"
}
}