-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.51 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": "@gutenye/commander-completion-carapace",
"version": "1.0.0",
"description": "Effortlessly add intelligent autocomplete support to your Commander.js CLI app using Carapace. Supports Bash, Zsh, Fish, Nushell and more",
"keywords": [
"commander",
"commanderjs",
"carapace",
"completion",
"autocomplete",
"complete",
"bash",
"zsh",
"fish",
"nushell"
],
"license": "MIT",
"repository": "github:gutenye/commander-completion-carapace",
"type": "module",
"exports": {
"bun": "./src/index.ts",
"default": "./build/index.js"
},
"files": ["src", "tsconfig.json", "build", "!**/__tests__"],
"scripts": {
"test": "bun test",
"lint": "biome check --fix",
"lint:ci": "biome ci --reporter=github",
"build": "rm -rf build; tsc --project tsconfig.build.json; tsc-alias --project tsconfig.build.json",
"prepublishOnly": "bun run build"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"lodash-es": "^4.17.21",
"tiny-invariant": "^1.3.3",
"yaml": "^2.6.1"
},
"peerDependencies": {
"commander": "^12.1.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/bun": "^1.1.14",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.10.2",
"commander": "^12.1.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"memfs": "^4.15.1",
"tsc-alias": "^1.8.10",
"typescript": "^5.7.2"
}
}