-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1004 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 1004 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
{
"name": "auth2api",
"version": "1.0.0",
"description": "Lightweight Claude OAuth to OpenAI-compatible API proxy (team fork with admin tooling and docs)",
"license": "MIT",
"repository": {
"type": "git",
"url": "github:panxt/auth2api-team"
},
"main": "dist/index.js",
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"login": "tsx src/index.ts --login",
"test": "tsx --test tests/*.test.ts",
"test:smoke": "tsx --test tests/smoke.test.ts",
"prettier": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\""
},
"dependencies": {
"better-sqlite3": "^12.10.0",
"express": "^4.21.0",
"js-yaml": "^4.1.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^4.17.21",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.14.0",
"@types/uuid": "^10.0.0",
"prettier": "^3.8.1",
"tsx": "^4.19.0",
"typescript": "^5.5.0"
}
}