-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 2.03 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
{
"name": "maxcode",
"version": "2.0.0",
"description": "基于 MiniMax 模型、面向中国开发者的终端 AI 编程助手",
"type": "module",
"author": "Max Hou <gaolin1006@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/MaxHou-infinity/maxcode#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/MaxHou-infinity/maxcode.git"
},
"bugs": {
"url": "https://github.com/MaxHou-infinity/maxcode/issues"
},
"keywords": [
"ai",
"agent",
"terminal",
"tui",
"minimax",
"llm",
"coding-assistant",
"chinese"
],
"bin": {
"maxcode": "./src/index.ts"
},
"engines": {
"bun": ">=1.0.0"
},
"scripts": {
"start": "bun run src/index.ts",
"test": "bun test",
"typecheck": "tsc --noEmit",
"build": "bun build src/index.ts --outdir dist --target bun --external react-devtools-core",
"check": "bun run typecheck && bun test",
"build:compile": "bun build --compile --target bun-darwin-arm64 --outfile dist/maxcode src/index.ts",
"build:linux-x64": "bun build --compile --target bun-linux-x64 --outfile dist/maxcode-linux-x64 src/index.ts",
"build:darwin-arm64": "bun build --compile --target bun-darwin-arm64 --outfile dist/maxcode-darwin-arm64 src/index.ts",
"build:darwin-x64": "bun build --compile --target bun-darwin-x64 --outfile dist/maxcode-darwin-x64 src/index.ts",
"build:windows-x64": "bun build --compile --target bun-windows-x64 --outfile dist/maxcode-windows-x64.exe src/index.ts",
"build:all": "mkdir -p dist && bun run build:linux-x64 && bun run build:darwin-arm64 && bun run build:darwin-x64 && bun run build:windows-x64"
},
"dependencies": {
"commander": "^12.1.0",
"ink": "^5.1.0",
"react": "^18.3.1",
"turndown": "^7.2.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/bun": "^1.3.11",
"@types/node": "^22.0.0",
"@types/react": "^18.3.1",
"@types/turndown": "^5.0.6",
"bun-types": "^1.1.0",
"react-devtools-core": "^7.0.1",
"typescript": "^5.5.0"
}
}