-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.57 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
57
58
{
"name": "rupa",
"description": "( रूप ) — An opinionated 🎽 formatter for commander.js with ✨ colored output.",
"version": "0.0.6",
"license": "Zlib",
"main": "dist/rupa.js",
"type": "module",
"homepage": "https://github.com/vsnthdev/rupa#readme",
"bugs": "https://github.com/vsnthdev/rupa/issues",
"author": {
"name": "Vasanth Srivatsa",
"email": "[email protected]",
"url": "https://vsnth.dev"
},
"repository": {
"type": "git",
"url": "https://github.com/vsnthdev/rupa.git"
},
"engines": {
"node": ">=17.8.0"
},
"scripts": {
"dev": "tsc --watch",
"clean": "rimraf ./dist",
"build": "rimraf ./dist && tsc --incremental false"
},
"keywords": [
"cli",
"args",
"option",
"command",
"argument",
"terminal",
"commander",
"command-line"
],
"dependencies": {
"chalk": "^5.4.1",
"deepmerge": "^4.3.1",
"wrap-ansi": "^9.0.0"
},
"peerDependencies": {
"commander": "13.x"
},
"devDependencies": {
"@types/node": "^22.10.5",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"prettier": "^3.2.5",
"rimraf": "^6.0.1",
"typescript": "^5.7.3"
}
}