-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 856 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 856 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
31
32
33
34
35
36
37
38
{
"name": "@godiao/free-way",
"version": "0.1.0",
"description": "OpenAI-compatible router for free LLM APIs",
"main": "dist/index.js",
"bin": {
"freeway": "dist/index.js"
},
"type": "module",
"files": [
"dist",
"src/web/static",
"src/web/templates"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test:compat": "npm run build && node scripts/compat-regression.mjs",
"test:security": "npm run build && node scripts/security-regression.mjs",
"test:usage": "npm run build && node scripts/usage-regression.mjs"
},
"keywords": [
"llm",
"router",
"free-api",
"openai"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.7.0"
},
"dependencies": {
"undici": "^8.1.0"
}
}