-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.07 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
{
"name": "rumrun",
"version": "1.0.0",
"description": "List, search and run package.json scripts",
"repository": {
"type": "git",
"url": "git+https://github.com/thekarel/rumrun.git"
},
"author": "Charles Szilagyi",
"license": "MIT",
"bin": {
"rum": "bin/run.js"
},
"type": "module",
"scripts": {
"dev": "rimraf dist && tsc -w"
},
"oclif": {
"bin": "rum",
"commands": {
"strategy": "single",
"target": "./dist/commands/rum.js"
},
"dirname": "rumrun",
"topicSeparator": " "
},
"dependencies": {
"@colors/colors": "^1.6.0",
"@inquirer/core": "^8.1.0",
"@oclif/core": "^3.26.6",
"ansi-escapes": "^7.0.0",
"chalk": "^5.3.0",
"cli-table3": "^0.6.4",
"cli-width": "^4.1.0",
"common-tags": "^1.8.2",
"debug": "^4.3.4",
"detect-package-manager": "^3.0.2",
"effect": "^3.1.3",
"fuzzysort": "^2.0.4"
},
"devDependencies": {
"@types/common-tags": "^1.8.4",
"@types/debug": "^4.1.12",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2"
}
}