-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.17 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.17 KB
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
{
"name": "nanogpt-nanoproxy",
"private": false,
"version": "2.0.1",
"description": "Local OpenAI-compatible NanoGPT bridge with OpenCode npm plugin support, object/XML bridge protocols, native-first fallback, and standalone server mode.",
"type": "commonjs",
"main": "./index.mjs",
"exports": {
".": {
"import": "./index.mjs",
"default": "./index.mjs"
},
"./plugin": "./src/plugin.mjs",
"./server": "./server.js",
"./core": "./src/core.js"
},
"scripts": {
"start": "node server.js",
"check": "node --check src/core.js && node --check src/plugin.mjs && node --check server.js && node selftest.js",
"selftest": "node selftest.js"
},
"keywords": [
"opencode",
"nanogpt",
"tool-bridge",
"xml",
"proxy",
"llm",
"ai",
"plugin",
"opencode-plugin",
"npm"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nanogpt-community/NanoProxy"
},
"files": [
"index.mjs",
"src",
"server.js",
"README.md",
"LICENSE",
"toggle-debug.ps1",
"Dockerfile",
"docker-compose.yml"
],
"publishConfig": {
"access": "public"
}
}