-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.91 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
{
"name": "@nebutra/code-execution",
"version": "0.1.1",
"description": "Action and observation execution layer backed by sandbox-runtime",
"private": false,
"license": "MIT",
"type": "module",
"nebutra": {
"status": "wip",
"productionReady": false,
"surface": "execution-capability",
"requires": [
"@nebutra/sandbox-runtime for shell and git execution",
"@nebutra/event-log for standalone action audit"
],
"gaps": [
"Notebook kernel execution is adapter-gated",
"Remote workspace providers depend on sandbox-runtime configuration",
"Approval UI is surfaced as observations; GUI handoff is not wired here"
],
"featureId": "code-execution",
"category": "ai",
"summary": "Shell, read, edit-by-diff, policy, replay, doctor, and debug tools"
},
"main": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": "./src/index.ts"
},
"scripts": {
"build": "tsup",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@nebutra/capability-kit": "^0.2.1",
"@nebutra/errors": "^0.1.1",
"@nebutra/event-log": "^0.1.1",
"@nebutra/execution-policy": "^0.1.1",
"@nebutra/sandbox-runtime": "^0.1.1"
},
"devDependencies": {
"@types/node": "^25.9.1",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.1.4"
},
"homepage": "https://github.com/Nebutra/code-execution#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Nebutra/code-execution.git"
},
"bugs": {
"url": "https://github.com/Nebutra/code-execution/issues"
},
"publishConfig": {
"access": "public"
},
"nebutraMirror": {
"sourceRepository": "Nebutra/Nebutra-Sailor",
"sourceDirectory": "packages/ai/code-execution",
"sourcePackage": "@nebutra/code-execution",
"sourceSha": "325d10b1e9fe35a6945cc0d01c33dbd04566bca3",
"canonicalSource": "monorepo"
}
}