@neurocode-ai/core 1.18.8 → 1.18.9
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 +131 -131
package/package.json
CHANGED
|
@@ -1,131 +1,131 @@
|
|
|
1
|
-
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json.schemastore.org/package.json",
|
|
3
|
+
"version": "1.18.9",
|
|
4
|
+
"name": "@neurocode-ai/core",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"db": "bun drizzle-kit",
|
|
9
|
+
"migration": "bun run script/migration.ts",
|
|
10
|
+
"fix-node-pty": "bun run script/fix-node-pty.ts",
|
|
11
|
+
"test": "bun test --only-failures",
|
|
12
|
+
"typecheck": "tsgo --noEmit"
|
|
13
|
+
},
|
|
14
|
+
"bin": {
|
|
15
|
+
"neurocode": "./bin/neurocode"
|
|
16
|
+
},
|
|
17
|
+
"exports": {
|
|
18
|
+
"./effect/layer-node": "./src/effect/layer-node.ts",
|
|
19
|
+
"./effect/app-node": "./src/effect/app-node.ts",
|
|
20
|
+
"./session/runner": "./src/session/runner/index.ts",
|
|
21
|
+
"./system-context": "./src/system-context/index.ts",
|
|
22
|
+
"./*": "./src/*.ts"
|
|
23
|
+
},
|
|
24
|
+
"imports": {
|
|
25
|
+
"#sqlite": {
|
|
26
|
+
"bun": "./src/database/sqlite.bun.ts",
|
|
27
|
+
"node": "./src/database/sqlite.node.ts",
|
|
28
|
+
"default": "./src/database/sqlite.bun.ts"
|
|
29
|
+
},
|
|
30
|
+
"#pty": {
|
|
31
|
+
"bun": "./src/pty/pty.bun.ts",
|
|
32
|
+
"node": "./src/pty/pty.node.ts",
|
|
33
|
+
"default": "./src/pty/pty.bun.ts"
|
|
34
|
+
},
|
|
35
|
+
"#fff": {
|
|
36
|
+
"bun": "./src/filesystem/fff.bun.ts",
|
|
37
|
+
"node": "./src/filesystem/fff.node.ts",
|
|
38
|
+
"default": "./src/filesystem/fff.bun.ts"
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"@tsconfig/bun": "1.0.9",
|
|
43
|
+
"@types/bun": "1.3.13",
|
|
44
|
+
"@types/cross-spawn": "6.0.6",
|
|
45
|
+
"@types/node": "24.12.2",
|
|
46
|
+
"@types/npm-package-arg": "6.1.4",
|
|
47
|
+
"@types/npmcli__arborist": "6.3.3",
|
|
48
|
+
"@types/semver": "7.7.1",
|
|
49
|
+
"@types/turndown": "5.0.5",
|
|
50
|
+
"@types/which": "3.0.4",
|
|
51
|
+
"@parcel/watcher-darwin-arm64": "2.5.1",
|
|
52
|
+
"@parcel/watcher-darwin-x64": "2.5.1",
|
|
53
|
+
"@parcel/watcher-linux-arm64-glibc": "2.5.1",
|
|
54
|
+
"@parcel/watcher-linux-arm64-musl": "2.5.1",
|
|
55
|
+
"@parcel/watcher-linux-x64-glibc": "2.5.1",
|
|
56
|
+
"@parcel/watcher-linux-x64-musl": "2.5.1",
|
|
57
|
+
"@parcel/watcher-win32-arm64": "2.5.1",
|
|
58
|
+
"@parcel/watcher-win32-x64": "2.5.1",
|
|
59
|
+
"@neurocode-ai/http-recorder": "1.18.8",
|
|
60
|
+
"drizzle-kit": "1.0.0-rc.2"
|
|
61
|
+
},
|
|
62
|
+
"dependencies": {
|
|
63
|
+
"@ai-sdk/alibaba": "1.0.17",
|
|
64
|
+
"@ai-sdk/amazon-bedrock": "4.0.112",
|
|
65
|
+
"@ai-sdk/anthropic": "3.0.82",
|
|
66
|
+
"@ai-sdk/azure": "3.0.88",
|
|
67
|
+
"@ai-sdk/cerebras": "2.0.41",
|
|
68
|
+
"@ai-sdk/cohere": "3.0.27",
|
|
69
|
+
"@ai-sdk/deepinfra": "2.0.41",
|
|
70
|
+
"@ai-sdk/gateway": "3.0.104",
|
|
71
|
+
"@ai-sdk/google": "3.0.73",
|
|
72
|
+
"@ai-sdk/google-vertex": "4.0.128",
|
|
73
|
+
"@ai-sdk/groq": "3.0.31",
|
|
74
|
+
"@ai-sdk/mistral": "3.0.51",
|
|
75
|
+
"@ai-sdk/openai": "3.0.84",
|
|
76
|
+
"@ai-sdk/openai-compatible": "2.0.41",
|
|
77
|
+
"@ai-sdk/perplexity": "3.0.26",
|
|
78
|
+
"@ai-sdk/provider": "3.0.8",
|
|
79
|
+
"@ai-sdk/provider-utils": "4.0.23",
|
|
80
|
+
"@ai-sdk/togetherai": "2.0.41",
|
|
81
|
+
"@ai-sdk/vercel": "2.0.39",
|
|
82
|
+
"@ai-sdk/xai": "3.0.102",
|
|
83
|
+
"@aws-sdk/credential-providers": "3.1057.0",
|
|
84
|
+
"@effect/opentelemetry": "4.0.0-beta.83",
|
|
85
|
+
"@effect/platform-node": "4.0.0-beta.83",
|
|
86
|
+
"@effect/sql-sqlite-bun": "4.0.0-beta.83",
|
|
87
|
+
"@lydell/node-pty": "1.2.0-beta.12",
|
|
88
|
+
"@ff-labs/fff-bun": "0.9.4",
|
|
89
|
+
"@npmcli/arborist": "9.4.0",
|
|
90
|
+
"@npmcli/config": "10.8.1",
|
|
91
|
+
"@neurocode-ai/effect-drizzle-sqlite": "1.18.8",
|
|
92
|
+
"@neurocode-ai/effect-sqlite-node": "1.18.8",
|
|
93
|
+
"@neurocode-ai/llm": "1.18.8",
|
|
94
|
+
"@neurocode-ai/schema": "1.18.8",
|
|
95
|
+
"@neurocode-ai/plugin": "1.18.8",
|
|
96
|
+
"@opentelemetry/api": "1.9.0",
|
|
97
|
+
"@opentelemetry/context-async-hooks": "2.6.1",
|
|
98
|
+
"@opentelemetry/exporter-trace-otlp-http": "0.214.0",
|
|
99
|
+
"@opentelemetry/sdk-trace-base": "2.6.1",
|
|
100
|
+
"@parcel/watcher": "2.5.1",
|
|
101
|
+
"@silvia-odwyer/photon-node": "0.3.4",
|
|
102
|
+
"@openrouter/ai-sdk-provider": "2.9.0",
|
|
103
|
+
"ai-gateway-provider": "3.1.2",
|
|
104
|
+
"bun-pty": "0.4.8",
|
|
105
|
+
"cross-spawn": "7.0.6",
|
|
106
|
+
"diff": "8.0.2",
|
|
107
|
+
"drizzle-orm": "1.0.0-rc.2",
|
|
108
|
+
"effect": "4.0.0-beta.83",
|
|
109
|
+
"fuzzysort": "3.1.0",
|
|
110
|
+
"gitlab-ai-provider": "6.11.1",
|
|
111
|
+
"glob": "13.0.5",
|
|
112
|
+
"google-auth-library": "10.5.0",
|
|
113
|
+
"gray-matter": "4.0.3",
|
|
114
|
+
"htmlparser2": "8.0.2",
|
|
115
|
+
"immer": "11.1.4",
|
|
116
|
+
"ignore": "7.0.5",
|
|
117
|
+
"jsonc-parser": "3.3.1",
|
|
118
|
+
"mime-types": "3.0.2",
|
|
119
|
+
"minimatch": "10.2.5",
|
|
120
|
+
"npm-package-arg": "13.0.2",
|
|
121
|
+
"semver": "^7.6.3",
|
|
122
|
+
"turndown": "7.2.0",
|
|
123
|
+
"venice-ai-sdk-provider": "2.1.1",
|
|
124
|
+
"which": "6.0.1",
|
|
125
|
+
"xdg-basedir": "5.1.0",
|
|
126
|
+
"zod": "4.1.8"
|
|
127
|
+
},
|
|
128
|
+
"overrides": {
|
|
129
|
+
"drizzle-orm": "1.0.0-rc.2"
|
|
130
|
+
}
|
|
131
|
+
}
|