@bbigbang/agent-node 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/main.js +0 -0
- package/package.json +18 -18
package/dist/main.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bbigbang/agent-node",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Remote agent node — connects to core and runs ACP agents locally",
|
|
6
6
|
"main": "dist/main.js",
|
|
@@ -14,29 +14,20 @@
|
|
|
14
14
|
"!dist/**/*.map",
|
|
15
15
|
"package.json"
|
|
16
16
|
],
|
|
17
|
-
"scripts": {
|
|
18
|
-
"dev": "tsx src/main.ts",
|
|
19
|
-
"build": "tsc -p tsconfig.json && node scripts/copy-native-worker.mjs",
|
|
20
|
-
"typecheck": "tsc --noEmit -p tsconfig.json",
|
|
21
|
-
"lint": "echo 'No lint configured'",
|
|
22
|
-
"start": "node dist/main.js",
|
|
23
|
-
"test": "vitest run",
|
|
24
|
-
"test:watch": "vitest"
|
|
25
|
-
},
|
|
26
17
|
"engines": {
|
|
27
18
|
"node": ">=18"
|
|
28
19
|
},
|
|
29
20
|
"dependencies": {
|
|
30
|
-
"@bbigbang/agent-command": "workspace:*",
|
|
31
|
-
"@bbigbang/cli": "workspace:*",
|
|
32
|
-
"@bbigbang/channel-bridge": "workspace:*",
|
|
33
|
-
"@bbigbang/memory": "workspace:*",
|
|
34
|
-
"@bbigbang/protocol": "workspace:*",
|
|
35
|
-
"@bbigbang/runtime-acp": "workspace:*",
|
|
36
21
|
"@anthropic-ai/claude-agent-sdk": "^0.2.109",
|
|
37
22
|
"better-sqlite3": "^12.6.2",
|
|
38
23
|
"node-pty": "^1.0.0",
|
|
39
|
-
"ws": "^8.18.1"
|
|
24
|
+
"ws": "^8.18.1",
|
|
25
|
+
"@bbigbang/agent-command": "0.1.1",
|
|
26
|
+
"@bbigbang/cli": "0.1.1",
|
|
27
|
+
"@bbigbang/channel-bridge": "0.1.1",
|
|
28
|
+
"@bbigbang/memory": "0.1.1",
|
|
29
|
+
"@bbigbang/protocol": "0.1.1",
|
|
30
|
+
"@bbigbang/runtime-acp": "0.1.1"
|
|
40
31
|
},
|
|
41
32
|
"devDependencies": {
|
|
42
33
|
"@types/better-sqlite3": "^7.6.13",
|
|
@@ -45,5 +36,14 @@
|
|
|
45
36
|
"tsx": "^4.21.0",
|
|
46
37
|
"typescript": "^5.9.3",
|
|
47
38
|
"vitest": "^3.2.1"
|
|
39
|
+
},
|
|
40
|
+
"scripts": {
|
|
41
|
+
"dev": "tsx src/main.ts",
|
|
42
|
+
"build": "tsc -p tsconfig.json && node scripts/copy-native-worker.mjs",
|
|
43
|
+
"typecheck": "tsc --noEmit -p tsconfig.json",
|
|
44
|
+
"lint": "echo 'No lint configured'",
|
|
45
|
+
"start": "node dist/main.js",
|
|
46
|
+
"test": "vitest run",
|
|
47
|
+
"test:watch": "vitest"
|
|
48
48
|
}
|
|
49
|
-
}
|
|
49
|
+
}
|