-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.01 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 3.01 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@keyou007/agent-bot",
"version": "0.1.24-alpha.5",
"type": "module",
"description": "Use Codex, TraeX, and compatible coding agents from Lark/Feishu.",
"license": "GPL-3.0-only",
"repository": {
"type": "git",
"url": "git+https://github.com/keyou/agent-bot.git"
},
"homepage": "https://keyou.github.io/agent-bot/",
"bugs": {
"url": "https://github.com/keyou/agent-bot/issues"
},
"keywords": [
"agent",
"codex",
"traex",
"app-server",
"acp",
"feishu",
"lark",
"cli"
],
"bin": {
"agentbot": "dist/cli.js",
"agent-bot": "dist/deprecated-cli.js"
},
"files": [
".env.example",
"assets/",
"CHANGELOG.md",
"config.example.yaml",
"dist/",
"docs/technical-reference.md",
"docs/technical-reference.zh.md",
"npm-shrinkwrap.json",
"README.zh.md",
"SECURITY.md",
"skills/agent-bot/",
"src/",
"tsconfig.json"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"dev": "tsx src/index.ts",
"clean": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
"build": "npm run clean && tsc -p tsconfig.json",
"start": "node dist/supervisor.js",
"start:once": "node dist/index.js",
"cli": "node dist/cli.js",
"test": "npm run test:unit && npm run test:process && npm run test:render",
"test:unit": "vitest run --exclude tests/shell/ShellCommandJobManager.test.ts --exclude tests/scripts/prepare-release.test.ts --exclude tests/feishu/GroupAvatarGenerator.test.ts",
"test:process": "vitest run tests/shell/ShellCommandJobManager.test.ts tests/scripts/prepare-release.test.ts --maxWorkers=1",
"test:render": "vitest run tests/feishu/GroupAvatarGenerator.test.ts --maxWorkers=1",
"typecheck": "tsc -p tsconfig.json --noEmit && tsc -p tsconfig.test.json",
"verify": "npm run typecheck && npm test",
"prepack": "npm run build && node scripts/check-package.mjs",
"prepublishOnly": "npm run verify",
"package:check": "npm run prepack",
"package:smoke": "node scripts/smoke-package.mjs",
"release": "node scripts/prepare-release.mjs",
"release:alpha": "node scripts/prepare-release.mjs alpha",
"release:stable": "node scripts/prepare-release.mjs stable"
},
"dependencies": {
"@agentclientprotocol/sdk": "1.2.1",
"@clack/prompts": "1.7.0",
"@larksuiteoapi/node-sdk": "1.73.0",
"@resvg/resvg-js": "2.6.2",
"better-sqlite3": "12.11.1",
"dotenv": "17.4.2",
"highlight.js": "11.12.0",
"markdown-it": "15.0.1",
"mermaid": "11.17.2",
"pino": "10.3.1",
"yaml": "2.9.0",
"zod": "4.4.3"
},
"devDependencies": {
"@types/better-sqlite3": "7.6.13",
"@types/node": "22.18.11",
"eslint": "10.6.0",
"linkedom": "0.18.13",
"prettier": "3.9.5",
"tsx": "4.23.0",
"typescript": "7.0.2",
"vitest": "4.1.10"
},
"overrides": {
"axios": "1.18.1"
},
"engines": {
"node": ">=22"
},
"packageManager": "npm@11.12.1"
}