-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.84 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.84 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
{
"name": "nxt-gen-cli",
"version": "2.1.6",
"description": "The ultimate Next.js scaffold CLI generator. Customize your stack with Prisma, React Query, Shadcn, HeroUI, and more in seconds.",
"main": "dist/index.js",
"type": "module",
"bin": {
"nxt-gen-cli": "bin/nxt-gen-cli"
},
"preferGlobal": true,
"scripts": {
"build": "tsc",
"test": "npm run test:smoke",
"test:smoke": "node test/smoke-test.mjs",
"test:int": "node test/test-cli.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PrabothCharith/nxt-gen-cli.git"
},
"keywords": [
"nextjs",
"cli",
"template",
"generator",
"scaffold",
"prisma",
"react-query",
"shadcn",
"heroui",
"boilerplate",
"starter",
"automation",
"productivity",
"dev-tools",
"cli-tool",
"full-stack",
"typescript",
"tanstack",
"postgres",
"sqlite"
],
"author": "Praboth Charith (https://praboth.me)",
"license": "MIT",
"files": [
"dist",
"bin",
"README.md",
"LICENSE.md",
"SECURITY.md"
],
"bugs": {
"url": "https://github.com/PrabothCharith/nxt-gen-cli/issues"
},
"homepage": "https://github.com/PrabothCharith/nxt-gen-cli#readme",
"dependencies": {
"boxen": "^8.0.1",
"chalk": "^5.6.2",
"commander": "^14.0.2",
"execa": "^9.6.1",
"figlet": "^1.8.0",
"fs-extra": "^11.3.2",
"gradient-string": "^3.0.0",
"handlebars": "^4.7.8",
"ora": "^9.0.0",
"prompts": "^2.4.2",
"ts-morph": "^27.0.2",
"update-notifier": "^7.3.1"
},
"devDependencies": {
"@types/figlet": "^1.7.0",
"@types/fs-extra": "^11.0.4",
"@types/gradient-string": "^1.1.6",
"@types/node": "^24.10.2",
"@types/prompts": "^2.4.9",
"@types/update-notifier": "^6.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}