-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (53 loc) · 1.16 KB
/
package.json
File metadata and controls
54 lines (53 loc) · 1.16 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
{
"name": "@stacker-oss/cli",
"version": "0.1.2",
"author": "Ranveer Soni <ranveersoni.me>",
"description": "The ultra-fast CLI for Stacker — scaffold production-ready projects in one command",
"keywords": [
"cli",
"stacker",
"scaffolding",
"next.js",
"vite",
"tanstack",
"template",
"project-generator"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/StackerOSS/CLI.git"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"bin": {
"stacker": "src/index.ts"
},
"scripts": {
"start": "bun ./src/index.ts",
"prettier": "prettier --write .",
"build": "tsdown --publint"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^25.6.0",
"publint": "^0.3.18"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@clack/prompts": "^1.2.0",
"@tanstack/cli": "^0.63.0",
"@tanstack/router-cli": "^1.166.25",
"cac": "^7.0.0",
"create-next-app": "^16.2.3",
"create-vite": "^9.0.4",
"picocolors": "^1.1.1",
"shadcn": "latest",
"tsdown": "^0.21.7",
"zod": "^4.3.6"
}
}