@proxysoul/soulforge 1.0.2

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.
@@ -0,0 +1,27 @@
1
+ ; Query from: https://raw.githubusercontent.com/nvim-treesitter/nvim-treesitter/refs/heads/master/queries/markdown/injections.scm
2
+ (fenced_code_block
3
+ (info_string
4
+ (language) @_lang)
5
+ (code_fence_content) @injection.content
6
+ (#set-lang-from-info-string! @_lang))
7
+
8
+ ((html_block) @injection.content
9
+ (#set! injection.language "html")
10
+ (#set! injection.combined)
11
+ (#set! injection.include-children))
12
+
13
+ ((minus_metadata) @injection.content
14
+ (#set! injection.language "yaml")
15
+ (#offset! @injection.content 1 0 -1 0)
16
+ (#set! injection.include-children))
17
+
18
+ ((plus_metadata) @injection.content
19
+ (#set! injection.language "toml")
20
+ (#offset! @injection.content 1 0 -1 0)
21
+ (#set! injection.include-children))
22
+
23
+ ([
24
+ (inline)
25
+ (pipe_table_cell)
26
+ ] @injection.content
27
+ (#set! injection.language "markdown_inline"))
package/package.json ADDED
@@ -0,0 +1,86 @@
1
+ {
2
+ "name": "@proxysoul/soulforge",
3
+ "version": "1.0.2",
4
+ "description": "Graph-powered code intelligence — multi-agent coding with codebase-aware AI",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://github.com/proxysoul/soulforge.git"
8
+ },
9
+ "publishConfig": {
10
+ "registry": "https://registry.npmjs.org",
11
+ "access": "public"
12
+ },
13
+ "module": "src/boot.tsx",
14
+ "type": "module",
15
+ "license": "BUSL-1.1",
16
+ "author": "proxySoul",
17
+ "bin": {
18
+ "soulforge": "./dist/index.js",
19
+ "sf": "./dist/index.js"
20
+ },
21
+ "files": [
22
+ "dist",
23
+ "THIRD_PARTY_LICENSES.md"
24
+ ],
25
+ "scripts": {
26
+ "dev": "bun run src/boot.tsx",
27
+ "build": "bun scripts/build.ts",
28
+ "build:no-compiler": "bun build src/boot.tsx --outdir dist --target bun --external react-devtools-core --entry-naming \"[dir]/index.[ext]\"",
29
+ "build:binary": "bun build src/boot.tsx --compile --external react-devtools-core --outfile bin/soulforge",
30
+ "bundle": "bash scripts/bundle.sh arm64 darwin",
31
+ "bundle:x64": "bash scripts/bundle.sh x64 darwin",
32
+ "bundle:linux": "bash scripts/bundle.sh x64 linux",
33
+ "bundle:linux-arm64": "bash scripts/bundle.sh arm64 linux",
34
+ "lint": "biome check src/",
35
+ "lint:fix": "biome check --write src/",
36
+ "format": "biome format --write src/",
37
+ "test": "bun test",
38
+ "test:coverage": "bun test --coverage --coverage-reporter=text --coverage-reporter=lcov --coverage-dir=coverage",
39
+ "test:coverage:html": "bun run test:coverage && genhtml coverage/lcov.info --output-directory coverage/html --dark-mode && open coverage/html/index.html",
40
+ "typecheck": "tsc --noEmit",
41
+ "prepublishOnly": "bun run lint && bun run typecheck && bun run build",
42
+ "release": "bun run build && npm publish",
43
+ "release:patch": "bash scripts/release.sh patch",
44
+ "release:minor": "bash scripts/release.sh minor",
45
+ "release:major": "bash scripts/release.sh major",
46
+ "release:dry": "bash scripts/release.sh patch --dry-run"
47
+ },
48
+ "devDependencies": {
49
+ "@babel/core": "7.29.0",
50
+ "@biomejs/biome": "2.4.9",
51
+ "@types/babel__core": "7.20.5",
52
+ "@types/bun": "1.3.11",
53
+ "@types/linkify-it": "5.0.0",
54
+ "@types/node": "25.5.0",
55
+ "@types/react": "19.2.14",
56
+ "babel-plugin-react-compiler": "1.0.0",
57
+ "bun-types": "1.3.11",
58
+ "typescript": "6.0.2"
59
+ },
60
+ "dependencies": {
61
+ "@ai-sdk/anthropic": "3.0.64",
62
+ "@ai-sdk/google": "3.0.53",
63
+ "@ai-sdk/openai": "3.0.48",
64
+ "@ai-sdk/xai": "3.0.74",
65
+ "@anthropic-ai/sdk": "0.80.0",
66
+ "@llmgateway/ai-sdk-provider": "3.5.0",
67
+ "@mozilla/readability": "0.6.0",
68
+ "@openrouter/ai-sdk-provider": "2.3.3",
69
+ "@opentui/react": "0.1.90",
70
+ "ai": "6.0.138",
71
+ "ghostty-opentui": "1.4.10",
72
+ "isbinaryfile": "6.0.0",
73
+ "linkedom": "0.18.12",
74
+ "linkify-it": "5.0.0",
75
+ "marked": "17.0.5",
76
+ "neovim": "5.4.0",
77
+ "react": "19.2.4",
78
+ "shiki": "4.0.2",
79
+ "strip-ansi": "7.2.0",
80
+ "tree-sitter-wasms": "0.1.13",
81
+ "ts-morph": "27.0.2",
82
+ "web-tree-sitter": "0.25.10",
83
+ "zod": "4.3.6",
84
+ "zustand": "5.0.12"
85
+ }
86
+ }