-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.11 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.11 KB
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
{
"name": "@gutenye/script.js",
"version": "1.1.0",
"description": "Write shell scripts in JavaScript",
"keywords": [
"shell",
"script",
"bash",
"exec",
"spawn",
"zx",
"bunshell"
],
"license": "MIT",
"repository": "github:gutenye/script.js",
"type": "module",
"exports": {
"bun": "./src/index.ts",
"default": "./src/index.ts"
},
"files": [
"src",
"tsconfig.json",
"build",
"!**/__tests__"
],
"bin": {
"script.js": "src/script.ts",
"ake": "src/ake.ts",
"akectl": "src/akectl.ts"
},
"scripts": {
"test": "bun test",
"lint": "biome check --fix",
"lint:ci": "biome ci --reporter=github"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@gutenye/script.js": "^2.3.0",
"table": "^6.9.0",
"yaml": "^2.6.0"
},
"peerDependencies": {
"typescript": "^5.7.2"
},
"devDependencies": {
"@biomejs/biome": "^2.4.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/bun": "latest",
"conventional-changelog-conventionalcommits": "^8.0.0"
}
}