-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.48 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.48 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
{
"name": "krebs",
"version": "1.0.0",
"description": "krebs CN - 精简版 AI Agent 框架",
"type": "module",
"main": "dist/index.js",
"bin": {
"krebs": "dist/index.js"
},
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc && tsc-alias",
"start": "node dist/index.js",
"test": "vitest",
"lint": "oxlint src",
"format": "oxfmt --write src",
"validate:skills": "tsx dist/cli/index.js validate:skills"
},
"keywords": [
"ai",
"agent",
"llm",
"framework"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.32.1",
"@clack/prompts": "^0.11.0",
"@mariozechner/pi-coding-agent": "^0.51.5",
"@sinclair/typebox": "^0.34.47",
"@types/multer": "^2.0.0",
"better-sqlite3": "^12.6.2",
"chalk": "^5.6.2",
"chokidar": "^5.0.0",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"multer": "^2.0.2",
"openai": "^4.83.0",
"proper-lockfile": "^4.1.2",
"sqlite-vec": "^0.1.7-alpha.2",
"tslog": "^4.10.2",
"ws": "^8.19.0",
"yaml": "^2.8.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^5.0.6",
"@types/node": "^25.0.10",
"@types/proper-lockfile": "^4.1.4",
"@types/ws": "^8.18.1",
"oxfmt": "0.26.0",
"oxlint": "^1.41.0",
"tsc-alias": "^1.8.16",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}