-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1003 Bytes
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1003 Bytes
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
{
"name": "create-scn-stack",
"version": "0.12.1",
"description": "Scaffold a complete shadcn component registry with documentation in minutes.",
"type": "module",
"bin": {
"create-scn-stack": "./dist/index.js"
},
"files": [
"dist",
"templates"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"lint": "tsc --noEmit",
"start": "node dist/index.js",
"test": "npm run build && vitest run",
"test:ci": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"shadcn",
"registry",
"cli",
"scaffold",
"components",
"ui"
],
"author": "jal-co",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jal-co/scn-stack.git"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@clack/prompts": "^1.4.0",
"picocolors": "^1.1.1"
},
"devDependencies": {
"@types/node": "^25.9.1",
"tsup": "^8.5.1",
"typescript": "^6.0.3",
"vitest": "^4.1.7"
}
}