-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.76 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
{
"name": "merlion",
"version": "0.1.31",
"description": "A CLI coding agent for terminal, WeChat, and OpenAI-compatible models",
"type": "module",
"engines": {
"node": ">=22"
},
"bin": {
"merlion": "./bin/merlion.js"
},
"files": [
"bin",
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"prepublishOnly": "npm run build && npm test",
"test": "node --experimental-strip-types --test 'tests/*.test.ts'",
"test:e2e": "node --experimental-strip-types --test --test-concurrency=1 'tests/e2e/*.test.ts'",
"test:all": "node --experimental-strip-types --test --test-concurrency=1 'tests/**/*.test.ts'",
"bench:phase0": "node --experimental-strip-types scripts/bench/run_phase0.ts",
"bench:analyze": "node --experimental-strip-types scripts/bench/analyze_phase0.ts",
"bench:bugsinpy": "node --experimental-strip-types scripts/bench_medium/bugsinpy/run.ts",
"bench:swebench-lite": "node --experimental-strip-types scripts/bench_medium/swebench_lite/run.ts",
"typecheck": "tsc --noEmit",
"merlion": "node --experimental-strip-types src/index.ts",
"agents:update": "node --experimental-strip-types scripts/agents/update.ts",
"agents:update:staged": "node --experimental-strip-types scripts/agents/update.ts --staged",
"agents:lint": "node --experimental-strip-types scripts/agents/lint.ts",
"agents:check-drift": "node --experimental-strip-types scripts/agents/update.ts --all --check",
"hooks:install": "git config core.hooksPath .githooks && echo '[hooks] core.hooksPath=.githooks'"
},
"devDependencies": {
"@types/node": "^25.6.0"
},
"dependencies": {
"@vscode/ripgrep": "^1.15.14",
"marked": "^16.4.2",
"qrcode-terminal": "^0.12.0",
"typescript": "^5.9.3"
}
}