-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 969 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 969 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
{
"name": "codesetup",
"version": "1.1.1",
"description": "A CLI tool for setting up projects",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"bin": {
"codesetup": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"build": "tsup",
"upload": "pnpm build && npm publish"
},
"dependencies": {
"chalk": "^5.4.1",
"commander": "^13.1.0",
"fs-extra": "^11.3.0",
"inquirer": "^12.3.3",
"ora": "^8.2.0",
"simple-git": "^3.27.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.13.0",
"tsup": "^8.3.6",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
},
"author": "Arijit Debnath",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/arijitdn/codesetup.git"
},
"keywords": [
"cli",
"starter-kit",
"template"
]
}