forked from nanogpt-community/NanoProxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 711 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 711 Bytes
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
{
"name": "nanoproxy",
"private": false,
"version": "1.1.0",
"description": "Local OpenAI-compatible proxy and OpenCode plugin that bridges tool calls for NanoGPT when native tool calling is unreliable.",
"type": "commonjs",
"main": "./src/plugin.mjs",
"exports": {
".": "./src/plugin.mjs",
"./server": "./server.js",
"./core": "./src/core.js"
},
"scripts": {
"start": "node server.js",
"check": "node --check server.js && node selftest.js"
},
"keywords": [
"opencode",
"nanogpt",
"tool-bridge",
"proxy",
"llm",
"ai"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nanogpt-community/NanoProxy"
}
}