-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 728 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 728 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
{
"name": "auth2api",
"version": "1.0.0",
"description": "Lightweight Claude OAuth to OpenAI-compatible API proxy",
"main": "dist/index.js",
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"login": "tsx src/index.ts --login",
"test:smoke": "tsx --test tests/smoke.test.ts",
"prettier": "prettier --write \"src/**/*.ts\""
},
"dependencies": {
"express": "^4.21.0",
"js-yaml": "^4.1.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"@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"
}
}