@proxysoul/soulforge 1.3.7 → 1.3.8
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 +100 -11
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -57809,6 +57809,100 @@ var init_providers = __esm(() => {
|
|
|
57809
57809
|
providerMap = new Map(allProviders.map((p) => [p.id, p]));
|
|
57810
57810
|
});
|
|
57811
57811
|
|
|
57812
|
+
// package.json
|
|
57813
|
+
var package_default;
|
|
57814
|
+
var init_package = __esm(() => {
|
|
57815
|
+
package_default = {
|
|
57816
|
+
name: "@proxysoul/soulforge",
|
|
57817
|
+
version: "1.3.8",
|
|
57818
|
+
description: "Graph-powered code intelligence \u2014 multi-agent coding with codebase-aware AI",
|
|
57819
|
+
repository: {
|
|
57820
|
+
type: "git",
|
|
57821
|
+
url: "https://github.com/proxysoul/soulforge.git"
|
|
57822
|
+
},
|
|
57823
|
+
publishConfig: {
|
|
57824
|
+
registry: "https://registry.npmjs.org",
|
|
57825
|
+
access: "public"
|
|
57826
|
+
},
|
|
57827
|
+
module: "src/boot.tsx",
|
|
57828
|
+
type: "module",
|
|
57829
|
+
license: "BUSL-1.1",
|
|
57830
|
+
author: "proxySoul",
|
|
57831
|
+
bin: {
|
|
57832
|
+
soulforge: "./dist/bin.sh",
|
|
57833
|
+
sf: "./dist/bin.sh"
|
|
57834
|
+
},
|
|
57835
|
+
engines: {
|
|
57836
|
+
bun: ">=1.2.0"
|
|
57837
|
+
},
|
|
57838
|
+
files: [
|
|
57839
|
+
"dist",
|
|
57840
|
+
"THIRD_PARTY_LICENSES.md"
|
|
57841
|
+
],
|
|
57842
|
+
scripts: {
|
|
57843
|
+
dev: "bun run src/boot.tsx",
|
|
57844
|
+
build: "bun scripts/build.ts",
|
|
57845
|
+
"build:no-compiler": 'bun build src/boot.tsx --outdir dist --target bun --external react-devtools-core --entry-naming "[dir]/index.[ext]"',
|
|
57846
|
+
"build:binary": "bun build src/boot.tsx --compile --external react-devtools-core --outfile bin/soulforge",
|
|
57847
|
+
bundle: "bash scripts/bundle.sh arm64 darwin",
|
|
57848
|
+
"bundle:x64": "bash scripts/bundle.sh x64 darwin",
|
|
57849
|
+
"bundle:linux": "bash scripts/bundle.sh x64 linux",
|
|
57850
|
+
"bundle:linux-arm64": "bash scripts/bundle.sh arm64 linux",
|
|
57851
|
+
lint: "biome check src/",
|
|
57852
|
+
"lint:fix": "biome check --write src/",
|
|
57853
|
+
format: "biome format --write src/",
|
|
57854
|
+
test: "bun test",
|
|
57855
|
+
"test:coverage": "bun test --coverage --coverage-reporter=text --coverage-reporter=lcov --coverage-dir=coverage",
|
|
57856
|
+
"test:coverage:html": "bun run test:coverage && genhtml coverage/lcov.info --output-directory coverage/html --dark-mode && open coverage/html/index.html",
|
|
57857
|
+
typecheck: "tsc --noEmit",
|
|
57858
|
+
prepublishOnly: "bun run lint && bun run typecheck && bun run build",
|
|
57859
|
+
release: "bun run build && npm publish",
|
|
57860
|
+
"release:patch": "bash scripts/release.sh patch",
|
|
57861
|
+
"release:minor": "bash scripts/release.sh minor",
|
|
57862
|
+
"release:major": "bash scripts/release.sh major",
|
|
57863
|
+
"release:dry": "bash scripts/release.sh patch --dry-run"
|
|
57864
|
+
},
|
|
57865
|
+
devDependencies: {
|
|
57866
|
+
"@babel/core": "7.29.0",
|
|
57867
|
+
"@biomejs/biome": "2.4.9",
|
|
57868
|
+
"@types/babel__core": "7.20.5",
|
|
57869
|
+
"@types/bun": "1.3.11",
|
|
57870
|
+
"@types/linkify-it": "5.0.0",
|
|
57871
|
+
"@types/node": "25.5.0",
|
|
57872
|
+
"@types/react": "19.2.14",
|
|
57873
|
+
"babel-plugin-react-compiler": "1.0.0",
|
|
57874
|
+
"bun-types": "1.3.11",
|
|
57875
|
+
typescript: "6.0.2"
|
|
57876
|
+
},
|
|
57877
|
+
dependencies: {
|
|
57878
|
+
"@ai-sdk/anthropic": "3.0.64",
|
|
57879
|
+
"@ai-sdk/google": "3.0.53",
|
|
57880
|
+
"@ai-sdk/openai": "3.0.48",
|
|
57881
|
+
"@ai-sdk/xai": "3.0.74",
|
|
57882
|
+
"@anthropic-ai/sdk": "0.80.0",
|
|
57883
|
+
"@llmgateway/ai-sdk-provider": "3.5.0",
|
|
57884
|
+
"@mozilla/readability": "0.6.0",
|
|
57885
|
+
"@openrouter/ai-sdk-provider": "2.3.3",
|
|
57886
|
+
"@opentui/react": "0.1.90",
|
|
57887
|
+
ai: "6.0.138",
|
|
57888
|
+
"ghostty-opentui": "1.4.10",
|
|
57889
|
+
isbinaryfile: "6.0.0",
|
|
57890
|
+
linkedom: "0.18.12",
|
|
57891
|
+
"linkify-it": "5.0.0",
|
|
57892
|
+
marked: "17.0.5",
|
|
57893
|
+
neovim: "5.4.0",
|
|
57894
|
+
react: "19.2.4",
|
|
57895
|
+
shiki: "4.0.2",
|
|
57896
|
+
"strip-ansi": "7.2.0",
|
|
57897
|
+
"tree-sitter-wasms": "0.1.13",
|
|
57898
|
+
"ts-morph": "27.0.2",
|
|
57899
|
+
"web-tree-sitter": "0.25.10",
|
|
57900
|
+
zod: "4.3.6",
|
|
57901
|
+
zustand: "5.0.12"
|
|
57902
|
+
}
|
|
57903
|
+
};
|
|
57904
|
+
});
|
|
57905
|
+
|
|
57812
57906
|
// src/core/version.ts
|
|
57813
57907
|
import { existsSync as existsSync6, mkdirSync as mkdirSync5, readFileSync as readFileSync5, writeFileSync as writeFileSync4 } from "fs";
|
|
57814
57908
|
import { homedir as homedir6 } from "os";
|
|
@@ -58099,19 +58193,14 @@ async function checkForUpdate() {
|
|
|
58099
58193
|
};
|
|
58100
58194
|
}
|
|
58101
58195
|
}
|
|
58102
|
-
var PKG_NAME = "@proxysoul/soulforge", CONFIG_DIR2, VERSION_CACHE_FILE, CACHE_TTL, DISMISSED_FILE, _currentVersion
|
|
58196
|
+
var PKG_NAME = "@proxysoul/soulforge", CONFIG_DIR2, VERSION_CACHE_FILE, CACHE_TTL, DISMISSED_FILE, _currentVersion, CURRENT_VERSION;
|
|
58103
58197
|
var init_version = __esm(() => {
|
|
58198
|
+
init_package();
|
|
58104
58199
|
CONFIG_DIR2 = join6(homedir6(), ".soulforge");
|
|
58105
58200
|
VERSION_CACHE_FILE = join6(CONFIG_DIR2, "version-cache.json");
|
|
58106
58201
|
CACHE_TTL = 30 * 60 * 1000;
|
|
58107
58202
|
DISMISSED_FILE = join6(CONFIG_DIR2, "update-dismissed.json");
|
|
58108
|
-
|
|
58109
|
-
const pkgPath = join6(import.meta.dir, "..", "..", "package.json");
|
|
58110
|
-
if (existsSync6(pkgPath)) {
|
|
58111
|
-
const pkg = JSON.parse(readFileSync5(pkgPath, "utf-8"));
|
|
58112
|
-
_currentVersion = pkg.version ?? "0.0.0";
|
|
58113
|
-
}
|
|
58114
|
-
} catch {}
|
|
58203
|
+
_currentVersion = package_default.version ?? "0.0.0";
|
|
58115
58204
|
CURRENT_VERSION = _currentVersion;
|
|
58116
58205
|
});
|
|
58117
58206
|
|
|
@@ -424666,7 +424755,7 @@ function createRoot(renderer) {
|
|
|
424666
424755
|
}
|
|
424667
424756
|
var import_react2, import_react3, import_react4, import_jsx_dev_runtime, import_react_reconciler, import_constants33, import_react5, import_constants34, textNodeKeys, SpanRenderable, TextModifierRenderable, BoldSpanRenderable, ItalicSpanRenderable, UnderlineSpanRenderable, LineBreakRenderable, LinkRenderable, baseComponents, componentCatalogue, AppContext, useAppContext = () => {
|
|
424668
424757
|
return import_react2.useContext(AppContext);
|
|
424669
|
-
}, ErrorBoundary,
|
|
424758
|
+
}, ErrorBoundary, package_default2, idCounter, currentUpdatePriority, hostConfig, reconciler, _r, flushSync, createPortal;
|
|
424670
424759
|
var init_chunk_tq1yd1rw = __esm(async () => {
|
|
424671
424760
|
init_chunk_2mx7fq49();
|
|
424672
424761
|
await __promiseAll([
|
|
@@ -424786,7 +424875,7 @@ var init_chunk_tq1yd1rw = __esm(async () => {
|
|
|
424786
424875
|
return this.props.children;
|
|
424787
424876
|
}
|
|
424788
424877
|
};
|
|
424789
|
-
|
|
424878
|
+
package_default2 = {
|
|
424790
424879
|
name: "@opentui/react",
|
|
424791
424880
|
version: "0.1.90",
|
|
424792
424881
|
description: "React renderer for building terminal user interfaces using OpenTUI core",
|
|
@@ -425012,7 +425101,7 @@ var init_chunk_tq1yd1rw = __esm(async () => {
|
|
|
425012
425101
|
return null;
|
|
425013
425102
|
},
|
|
425014
425103
|
rendererPackageName: "@opentui/react",
|
|
425015
|
-
rendererVersion:
|
|
425104
|
+
rendererVersion: package_default2.version
|
|
425016
425105
|
};
|
|
425017
425106
|
reconciler = import_react_reconciler.default(hostConfig);
|
|
425018
425107
|
if (process.env["DEV"] === "true") {
|