aegiscode 3.1.4 → 3.1.7
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 +2014 -8
- package/package.json +3 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aegiscode",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.7",
|
|
4
4
|
"description": "A CLI Coding Agent inspired by Claude Code - An AI-powered coding assistant that can read, write, and execute code",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/main.js",
|
|
@@ -12,8 +12,7 @@
|
|
|
12
12
|
"scripts": {
|
|
13
13
|
"dev": "NODE_NO_WARNINGS=1 tsx src/main.tsx",
|
|
14
14
|
"build": "node esbuild.mjs",
|
|
15
|
-
"publish:release": "node esbuild.mjs
|
|
16
|
-
"obfuscate:agent-sdk": "node scripts/obfuscate-dist-agent.mjs",
|
|
15
|
+
"publish:release": "node esbuild.mjs",
|
|
17
16
|
"start": "node --no-deprecation dist/main.js",
|
|
18
17
|
"typecheck": "tsc --noEmit",
|
|
19
18
|
"test:prompts": "tsx src/prompts/test.ts",
|
|
@@ -23,7 +22,7 @@
|
|
|
23
22
|
"test:mcp": "tsx src/mcp/test.ts",
|
|
24
23
|
"test:store": "tsx src/store/test.ts",
|
|
25
24
|
"gui": "node ./gui/run-gui.cjs",
|
|
26
|
-
"prepublishOnly": "node esbuild.mjs
|
|
25
|
+
"prepublishOnly": "node esbuild.mjs"
|
|
27
26
|
},
|
|
28
27
|
"keywords": [
|
|
29
28
|
"cli",
|
|
@@ -92,7 +91,6 @@
|
|
|
92
91
|
"@types/yargs": "^17.0.33",
|
|
93
92
|
"electron": "^42.4.1",
|
|
94
93
|
"esbuild": "^0.28.0",
|
|
95
|
-
"javascript-obfuscator": "^5.4.3",
|
|
96
94
|
"react-devtools-core": "^7.0.1",
|
|
97
95
|
"tsx": "^4.22.4",
|
|
98
96
|
"typescript": "^5.7.2"
|