-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.37 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.37 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
{
"name": "runtimeuse",
"version": "0.7.0",
"description": "AI agent runtime with WebSocket protocol, artifact handling, and secret management",
"license": "FSL",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"runtimeuse": "./dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/getlark/runtimeuse.git",
"directory": "packages/runtimeuse"
},
"homepage": "https://github.com/getlark/runtimeuse",
"bugs": "https://github.com/getlark/runtimeuse/issues",
"keywords": [
"ai",
"agent",
"runtime",
"websocket",
"sandbox",
"openai",
"claude"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "vitest run",
"pretest:integration": "npm run build",
"test:integration": "vitest run --config vitest.integration.config.ts",
"typecheck": "tsc --noEmit",
"dev-publish": "bash scripts/dev-publish.sh"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.73",
"@openai/agents": "^0.6.0",
"chokidar": "^5.0.0",
"ignore": "^7.0.5",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/node": "^22.10.0",
"@types/ws": "^8.5.13",
"typescript": "^5.7.0",
"vitest": "^4.0.18"
}
}