-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.75 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
{
"name": "@cloudbase/open-agent-kernel",
"version": "0.1.0-beta.15",
"description": "CloudBase Open Agent Kernel — server-side agentic agent SDK with built-in CloudBase resources",
"license": "Apache-2.0",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"build": "tsup src/index.ts --format esm --dts",
"type-check": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@agentclientprotocol/sdk": "^1.0.0",
"@anthropic-ai/claude-agent-sdk": "^0.3.146",
"@anthropic-ai/sdk": "^0.93.0",
"@cloudbase/manager-node": "^4.10.6",
"@cloudbase/node-sdk": "^3.18.1",
"@modelcontextprotocol/sdk": "^1.29.0",
"@types/tar": "^6.1.13",
"tar": "^7.5.16",
"zod": "^4.3.6"
},
"devDependencies": {
"tsup": "^8.0.0",
"typescript": "~5.7.0",
"vitest": "^3.2.0"
},
"engines": {
"node": ">=22"
},
"keywords": [
"cloudbase",
"agent",
"ai",
"sdk",
"tencent-cloud",
"serverless",
"mcp",
"sandbox"
],
"repository": {
"type": "git",
"url": "git+https://github.com/TencentCloudBase/OpenVibeCoding.git",
"directory": "packages/open-agent-kernel"
},
"bugs": {
"url": "https://github.com/TencentCloudBase/OpenVibeCoding/issues"
},
"homepage": "https://github.com/TencentCloudBase/OpenVibeCoding/tree/main/packages/open-agent-kernel#readme",
"publishConfig": {
"access": "public"
}
}