-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.51 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.51 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
{
"name": "@shareai-lab/kode-sdk",
"version": "2.7.0",
"description": "Event-driven, long-running AI Agent development framework with enterprise-grade persistence and context management",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "rm -rf dist",
"prepare": "npm run build",
"test": "npm run test:unit",
"test:unit": "ts-node --project tsconfig.json ./tests/run-unit.ts",
"test:integration": "ts-node --project tsconfig.json ./tests/run-integration.ts",
"test:e2e": "ts-node --project tsconfig.json ./tests/run-e2e.ts",
"test:all": "ts-node --project tsconfig.json ./tests/run-all.ts",
"example:getting-started": "ts-node examples/getting-started.ts",
"example:openai": "ts-node examples/openai-usage.ts",
"example:gemini": "ts-node examples/gemini-usage.ts",
"example:agent-inbox": "ts-node examples/01-agent-inbox.ts",
"example:approval": "ts-node examples/02-approval-control.ts",
"example:room": "ts-node examples/03-room-collab.ts",
"example:scheduler": "ts-node examples/04-scheduler-watch.ts",
"example:nextjs": "ts-node examples/nextjs-api-route.ts",
"example:opensandbox": "ts-node examples/opensandbox-usage.ts",
"example:openrouter": "ts-node examples/05-openrouter-complete.ts",
"example:openrouter-stream": "ts-node examples/06-openrouter-stream.ts",
"example:openrouter-agent": "ts-node examples/07-openrouter-agent.ts",
"example:db-sqlite": "ts-node examples/db-sqlite.ts",
"example:db-postgres": "ts-node examples/db-postgres.ts"
},
"keywords": [
"agent",
"ai",
"llm",
"anthropic",
"claude",
"event-driven",
"multi-agent",
"collaboration",
"automation"
],
"author": "",
"license": "MIT",
"dependencies": {
"@alibaba-group/opensandbox": "~0.1.4",
"@modelcontextprotocol/sdk": "~1.22.0",
"ajv": "^8.17.1",
"better-sqlite3": "^12.6.2",
"dotenv": "^16.4.5",
"e2b": "^2.10.3",
"fast-glob": "^3.3.2",
"minimatch": "^10.2.4",
"pg": "^8.17.2",
"undici": "^7.18.2",
"zod": "^4.3.5",
"zod-to-json-schema": "^3.24.6"
},
"devDependencies": {
"@shareai-lab/kode-sdk": "file:.",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^20.0.0",
"@types/pg": "^8.16.0",
"ts-node": "^10.9.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}