-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.66 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
{
"name": "darwin-evolve",
"version": "0.1.0",
"description": "A self-evolving personal AI agent on Feishu/Lark — reflection, learning, and knowledge graduation loops on top of a coding-agent harness.",
"author": "Chen Hao",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"build:runner": "cd agent-runner && npm run build",
"build:all": "npm run build && npm run build:runner",
"trace:viewer": "tsx src/trace-viewer.ts",
"smoke:codex-runner": "node scripts/smoke-codex-runner.mjs",
"start": "node dist/index.js",
"pm2:start": "bash scripts/start.sh",
"pm2:stop": "bash scripts/stop.sh",
"pm2:restart": "bash scripts/restart.sh",
"pm2:logs": "bash scripts/logs.sh",
"dev": "tsx src/index.ts",
"typecheck": "tsc --noEmit",
"format": "prettier --write \"src/**/*.ts\"",
"format:fix": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"postinstall": "cd agent-runner && npm install",
"setup": "tsx setup/index.ts",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@larksuiteoapi/node-sdk": "^1.59.0",
"better-sqlite3": "^11.8.1",
"cron-parser": "^5.5.0",
"dotenv": "^16.6.1",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"pm2": "^6.0.14",
"yaml": "^2.8.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.10.0",
"@vitest/coverage-v8": "^4.0.18",
"prettier": "^3.8.1",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^4.0.18"
},
"engines": {
"node": "^20 || ^22 || >=24"
}
}