-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.3 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
{
"name": "codemonkey",
"version": "0.1.0",
"description": "Background runtime & observability console for CLI coding agents",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ysaima/codemonkey.git"
},
"keywords": [
"cli-agent",
"coding-assistant",
"pty",
"terminal",
"daemon",
"opencode",
"codex",
"feishu",
"developer-tools"
],
"engines": {
"node": ">=22"
},
"bin": {
"codemonkey": "./dist/frontends/cli/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"prepublishOnly": "npm run build",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "node --import tsx --test --test-timeout=25000 --test-reporter=dot 'src/**/*.test.ts'",
"test:unit": "node --import tsx --test --test-timeout=25000 --test-reporter=dot 'src/**/*.test.ts'",
"test:integration": "node --import tsx --test --test-timeout=180000 --test-reporter=spec 'tests/integration/**/*.test.ts'",
"cm": "node --import tsx src/frontends/cli/index.ts"
},
"dependencies": {
"@larksuiteoapi/node-sdk": "^1.51.0",
"@xterm/headless": "5.5.0",
"node-pty": "1.0.0"
},
"devDependencies": {
"@types/node": "22.10.2",
"tsx": "4.19.2",
"typescript": "5.7.2"
}
}