-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.85 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.85 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "fishxcode-cli",
"version": "0.1.1",
"description": "AI coding tool manager — one-click integration with FishXCode API for claude-code, aider, codex, opencode and more",
"type": "module",
"author": "fishxcode <admin@fishxcode.com>",
"license": "MIT",
"homepage": "https://cli.fishxcode.com",
"repository": {
"type": "git",
"url": "https://github.com/fishxcode/fishxcode-cli"
},
"bugs": {
"url": "https://github.com/fishxcode/fishxcode-cli/issues"
},
"publishConfig": {
"access": "public"
},
"bin": {
"fishx": "dist/index.js",
"fishxcode": "dist/index.js"
},
"files": [
"dist",
"README.md",
"README.zh-CN.md",
"README.en.md",
"README.fr.md",
"README.es.md",
"README.pt.md",
"LICENSE"
],
"engines": {
"node": ">=18",
"bun": ">=1.1.0"
},
"scripts": {
"dev": "bun run src/index.ts",
"build": "bun build src/index.ts --target=node --outfile dist/index.js",
"typecheck": "tsc --noEmit",
"test": "bun test",
"lint": "biome check .",
"format": "biome format --write .",
"check": "bun run typecheck && bun test && bun run build",
"prepublishOnly": "bun run check",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"keywords": [
"fishxcode",
"fishxcode-cli",
"cli",
"ai-coding",
"claude",
"codex",
"opencode",
"openclaw",
"continue",
"bun",
"typescript"
],
"dependencies": {
"commander": "^14.0.1",
"picocolors": "^1.1.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.15.29",
"@vite-pwa/vitepress": "^1.1.0",
"bun-types": "^1.3.10",
"medium-zoom": "^1.1.0",
"typescript": "^5.8.3",
"vitepress": "^1.6.4",
"vitepress-plugin-group-icons": "^1.7.1"
}
}