-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.24 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.24 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
{
"name": "create-next-nest",
"version": "1.0.0",
"description": "A CLI to bootstrap a Next.js + Nest.js + Better-Auth starter kit.",
"repository": {
"type": "git",
"url": "git+https://github.com/Deveripon/cli-tool-create-next-nest.git"
},
"homepage": "https://github.com/Deveripon/cli-tool-create-next-nest#readme",
"bugs": {
"url": "https://github.com/Deveripon/cli-tool-create-next-nest/issues"
},
"type": "module",
"main": "./dist/index.js",
"bin": {
"create-next-nest": "./dist/index.js"
},
"files": [
"dist",
"package.json",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup src/index.ts --format esm --clean",
"dev": "tsup src/index.ts --format esm --watch",
"start": "node dist/index.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"nextjs",
"nestjs",
"better-auth",
"starter",
"cli",
"create-next-nest"
],
"author": "Deveripon",
"license": "MIT",
"devDependencies": {
"@types/degit": "^2.8.6",
"@types/node": "^25.0.3",
"ts-node": "^10.9.2",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"chalk": "^5.6.2",
"degit": "^2.8.4",
"execa": "^9.6.1"
}
}