-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.46 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
{
"name": "create-rdp-app",
"version": "1.1.1",
"type": "module",
"description": "A powerful CLI tool to create Next.js projects with shadcn/ui, NextAuth.js, Turbopack and more",
"main": "dist/index.js",
"bin": {
"create-rdp-app": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"prepublishOnly": "npm run build",
"clean": "rm -rf dist"
},
"keywords": [
"nextjs",
"cli",
"generator",
"shadcn",
"nextauth",
"typescript",
"turbopack",
"tailwind",
"create-app",
"scaffolding",
"rdp",
"ui",
"react"
],
"author": "RDP Datacenter <noc@rdpdatacenter.in>",
"license": "MIT",
"dependencies": {
"inquirer": "^8.2.6",
"fs-extra": "^11.3.0",
"chalk": "^5.3.0",
"gradient-string": "^2.0.2",
"figlet": "^1.7.0",
"ora": "^8.1.1"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.8",
"@types/node": "^24.0.8",
"@types/figlet": "^1.5.8",
"@types/gradient-string": "^1.1.6",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/rdp-datacenter/cli.git"
},
"bugs": {
"url": "https://github.com/rdp-datacenter/cli/issues"
},
"homepage": "https://github.com/rdp-datacenter/cli#readme",
"files": [
"dist/**/*",
"README.md",
"LICENSE"
]
}