-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.17 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
{
"name": "@gutenye/script.js",
"version": "1.0.0",
"description": "Write shell scripts in JavaScript",
"keywords": ["shell", "script", "bash", "exec", "spawn", "zx", "bunshell"],
"license": "MIT",
"repository": "github:gutenye/script.js",
"type": "module",
"files": ["src", "tsconfig.json", "build", "!**/__tests__"],
"bin": {
"gutenye-script.js": "src/script.ts"
},
"scripts": {
"test": "bun test",
"lint": "biome check --fix",
"lint:ci": "biome ci --reporter=github"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@gutenye/commander-completion-carapace": "^1.0.3",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"csv-parse": "^5.5.6",
"lodash-es": "^4.17.21",
"table": "^6.8.2",
"tiny-invariant": "^1.3.3",
"yaml": "^2.6.0",
"zx": "^8.2.1"
},
"peerDependencies": {
"typescript": "^5.7.2"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/bun": "latest",
"@types/lodash-es": "^4.17.12",
"conventional-changelog-conventionalcommits": "^8.0.0",
"tsc-alias": "^1.8.10"
}
}