deepdebug-local-agent 1.0.2 → 1.0.3
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/package.json +13 -18
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "deepdebug-local-agent",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "DeepDebug Local Agent - AI-powered code debugging assistant",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
@@ -12,34 +12,27 @@
|
|
|
12
12
|
"start": "node src/server.js",
|
|
13
13
|
"dev": "NODE_ENV=development node src/server.js",
|
|
14
14
|
"mcp": "node src/mcp-server.js",
|
|
15
|
+
"bundle": "esbuild src/server.js --bundle --platform=node --format=cjs --outfile=dist/bundle.cjs --external:@anthropic-ai/sdk",
|
|
15
16
|
"build": "npm run build:all",
|
|
16
|
-
"build:all": "npm run build:win && npm run build:mac && npm run build:linux",
|
|
17
|
-
"build:win": "pkg . --target
|
|
18
|
-
"build:mac": "pkg . --target
|
|
19
|
-
"build:mac-arm": "pkg . --target
|
|
20
|
-
"build:linux": "pkg . --target
|
|
17
|
+
"build:all": "npm run build:win && npm run build:mac && npm run build:mac-arm && npm run build:linux",
|
|
18
|
+
"build:win": "npm run bundle && pkg dist/bundle.cjs --target node18-win-x64 --output dist/deepdebug-agent-win.exe",
|
|
19
|
+
"build:mac": "npm run bundle && pkg dist/bundle.cjs --target node18-macos-x64 --output dist/deepdebug-agent-macos",
|
|
20
|
+
"build:mac-arm": "npm run bundle && pkg dist/bundle.cjs --target node18-macos-arm64 --output dist/deepdebug-agent-macos-arm64",
|
|
21
|
+
"build:linux": "npm run bundle && pkg dist/bundle.cjs --target node18-linux-x64 --output dist/deepdebug-agent-linux",
|
|
21
22
|
"docker:build": "docker build -t deepdebug/local-agent:latest .",
|
|
22
23
|
"docker:push": "docker push deepdebug/local-agent:latest",
|
|
23
24
|
"test": "node --test",
|
|
24
25
|
"lint": "eslint src/"
|
|
25
26
|
},
|
|
26
27
|
"pkg": {
|
|
27
|
-
"scripts": [
|
|
28
|
-
"src/**/*.js"
|
|
29
|
-
],
|
|
30
28
|
"assets": [
|
|
31
|
-
"
|
|
32
|
-
],
|
|
33
|
-
"targets": [
|
|
34
|
-
"node20-win-x64",
|
|
35
|
-
"node20-macos-x64",
|
|
36
|
-
"node20-macos-arm64",
|
|
37
|
-
"node20-linux-x64"
|
|
29
|
+
"node_modules/@anthropic-ai/**/*"
|
|
38
30
|
],
|
|
39
31
|
"outputPath": "dist"
|
|
40
32
|
},
|
|
41
33
|
"dependencies": {
|
|
42
|
-
"@
|
|
34
|
+
"@anthropic-ai/sdk": "^0.39.0",
|
|
35
|
+
"@modelcontextprotocol/sdk": "^1.0.4",
|
|
43
36
|
"body-parser": "^1.20.3",
|
|
44
37
|
"cors": "^2.8.5",
|
|
45
38
|
"express": "^4.19.2",
|
|
@@ -47,9 +40,11 @@
|
|
|
47
40
|
"pidusage": "^3.0.2",
|
|
48
41
|
"properties-reader": "^2.3.0",
|
|
49
42
|
"strip-ansi": "^7.1.0",
|
|
50
|
-
"unidiff": "^1.0.2"
|
|
43
|
+
"unidiff": "^1.0.2",
|
|
44
|
+
"ws": "^8.18.0"
|
|
51
45
|
},
|
|
52
46
|
"devDependencies": {
|
|
47
|
+
"esbuild": "^0.20.0",
|
|
53
48
|
"pkg": "^5.8.1",
|
|
54
49
|
"eslint": "^8.57.0"
|
|
55
50
|
},
|