-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.33 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": "runo",
"version": "1.0.5",
"description": "Simplifies the process of running command line scripts, similar to npm scripts but for any type of project.",
"main": "./bin/main.js",
"bin": {
"runo": "./bin/main.js"
},
"scripts": {
"dev": "rollup -c -w",
"build": "rimraf bin && rollup -c",
"format": "rome format . --write",
"format:check": "rome format .",
"lint": "rome check ."
},
"dependencies": {
"colorette": "^2.0.20",
"commander": "^11.0.0",
"fastest-levenshtein": "^1.0.16"
},
"devDependencies": {
"@rollup/plugin-json": "^6.0.0",
"@types/node": "^20.5.1",
"esbuild": "^0.19.2",
"rimraf": "^5.0.1",
"rollup": "^3.28.0",
"rollup-plugin-esbuild": "^5.0.0",
"rome": "^12.1.3",
"typescript": "^5.1.6"
},
"files": [
"bin"
],
"license": "MIT",
"author": "Kevin Hermawan",
"repository": {
"type": "git",
"url": "git+https://github.com/kevinhermawan/runo.git"
},
"bugs": {
"url": "https://github.com/kevinhermawan/runo/issues"
},
"homepage": "https://github.com/kevinhermawan/runo#readme",
"keywords": [
"cli",
"command line",
"command line interface",
"script runner",
"script management",
"npm scripts",
"run scripts",
"watch files",
"automated tasks",
"configuration file"
]
}