-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.35 KB
/
package.json
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
{
"name": "@ranger-theme/create-ranger-app",
"version": "0.3.0",
"description": "Ranger cli quick start program utilities",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"license": "MIT",
"bin": {
"ranger-cli": "dist/index.js",
"create-ranger-app": "dist/index.js"
},
"files": [
"dist",
"handlebars/*",
"templates/*",
"README.md"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"cli": "node dist/index.js",
"clean": "rimraf dist",
"prepublishOnly": "npm run build"
},
"dependencies": {
"chalk": "^5.3.0",
"cli-table3": "^0.6.3",
"commander": "^12.0.0",
"execa": "^8.0.1",
"figlet": "^1.7.0",
"fs-extra": "^11.2.0",
"globby": "^14.0.1",
"graceful-fs": "^4.2.11",
"handlebars": "^4.7.8",
"inquirer": "^9.2.15",
"is-binary-path": "^2.1.0",
"rimraf": "^5.0.5",
"tsup": "^8.0.2",
"validate-npm-package-name": "^5.0.0"
},
"devDependencies": {
"@types/figlet": "^1.5.8",
"@types/fs-extra": "^11.0.4",
"@types/graceful-fs": "^4.1.9",
"@types/inquirer": "^9.0.7",
"@types/node": "^20.11.24",
"@types/validate-npm-package-name": "^4.0.2",
"eslint": "^8.2.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.8.8",
"typescript": "^5.3.3"
}
}