@proxysoul/soulforge 2.18.6 → 2.20.0
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/index.js +2669 -1255
- package/dist/workers/intelligence.worker.js +636 -88
- package/dist/workers/io.worker.js +2 -1
- package/package.json +14 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@proxysoul/soulforge",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.20.0",
|
|
4
4
|
"description": "Graph-powered code intelligence — multi-agent coding with codebase-aware AI",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -66,8 +66,9 @@
|
|
|
66
66
|
"postinstall": "bun scripts/postinstall.mjs"
|
|
67
67
|
},
|
|
68
68
|
"devDependencies": {
|
|
69
|
-
"@
|
|
70
|
-
"@
|
|
69
|
+
"@ast-grep/cli": "^0.43.0",
|
|
70
|
+
"@babel/core": "7.29.7",
|
|
71
|
+
"@biomejs/biome": "2.4.16",
|
|
71
72
|
"@types/babel__core": "7.20.5",
|
|
72
73
|
"@types/bun": "1.3.14",
|
|
73
74
|
"@types/linkify-it": "5.0.0",
|
|
@@ -82,7 +83,7 @@
|
|
|
82
83
|
"@ai-sdk/anthropic": "^3.0.78",
|
|
83
84
|
"@ai-sdk/deepseek": "^2.0.35",
|
|
84
85
|
"@ai-sdk/fireworks": "^2.0.52",
|
|
85
|
-
"@ai-sdk/google": "^3.0.
|
|
86
|
+
"@ai-sdk/google": "^3.0.80",
|
|
86
87
|
"@ai-sdk/groq": "^3.0.39",
|
|
87
88
|
"@ai-sdk/mcp": "^1.0.42",
|
|
88
89
|
"@ai-sdk/mistral": "^3.0.37",
|
|
@@ -95,9 +96,10 @@
|
|
|
95
96
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
96
97
|
"@mozilla/readability": "0.6.0",
|
|
97
98
|
"@openrouter/ai-sdk-provider": "2.9.0",
|
|
98
|
-
"@opentui/react": "0.
|
|
99
|
+
"@opentui/react": "0.3.1",
|
|
99
100
|
"ai": "^6.0.189",
|
|
100
101
|
"ghostty-opentui": "1.5.0",
|
|
102
|
+
"ignore": "^7.0.5",
|
|
101
103
|
"isbinaryfile": "6.0.0",
|
|
102
104
|
"jsonrepair": "^3.14.0",
|
|
103
105
|
"linkedom": "0.18.12",
|
|
@@ -113,14 +115,14 @@
|
|
|
113
115
|
"vercel-minimax-ai-provider": "^0.0.2",
|
|
114
116
|
"web-tree-sitter": "0.25.10",
|
|
115
117
|
"zod": "4.4.3",
|
|
116
|
-
"zustand": "5.0.
|
|
118
|
+
"zustand": "5.0.14"
|
|
117
119
|
},
|
|
118
120
|
"optionalDependencies": {
|
|
119
|
-
"@opentui/core-darwin-arm64": "0.
|
|
120
|
-
"@opentui/core-darwin-x64": "0.
|
|
121
|
-
"@opentui/core-linux-arm64": "0.
|
|
122
|
-
"@opentui/core-linux-x64": "0.
|
|
123
|
-
"@opentui/core-win32-arm64": "0.
|
|
124
|
-
"@opentui/core-win32-x64": "0.
|
|
121
|
+
"@opentui/core-darwin-arm64": "0.3.1",
|
|
122
|
+
"@opentui/core-darwin-x64": "0.3.1",
|
|
123
|
+
"@opentui/core-linux-arm64": "0.3.1",
|
|
124
|
+
"@opentui/core-linux-x64": "0.3.1",
|
|
125
|
+
"@opentui/core-win32-arm64": "0.3.1",
|
|
126
|
+
"@opentui/core-win32-x64": "0.3.1"
|
|
125
127
|
}
|
|
126
128
|
}
|