-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.1 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
{
"name": "deepsproxy",
"version": "1.0.0",
"description": "",
"main": "index.js",
"bin": "src/index.ts",
"scripts": {
"start": "npx tsx src/index.ts",
"setup-vault": "npx tsx src/scripts/setup-vault.ts",
"login": "npx tsx src/scripts/login.ts deepseek",
"login:ds": "npx tsx src/scripts/login.ts deepseek",
"login:hf": "npx tsx src/scripts/login.ts huggingface",
"login:kimi": "npx tsx src/scripts/login.ts kimi",
"login:glm": "npx tsx src/scripts/login.ts glm",
"login:mimo": "npx tsx src/scripts/login.ts mimo",
"test": "tsx --test src/__tests__/**/*.test.ts",
"build": "tsc"
},
"keywords": [],
"author": "Pedro Farias",
"license": "ISC",
"dependencies": {
"@hono/node-server": "^2.0.2",
"dotenv": "^17.4.2",
"hono": "^4.12.18",
"open": "^11.0.0",
"playwright": "^1.60.0",
"tar": "^7.5.15",
"uuid": "^14.0.0"
},
"devDependencies": {
"@types/node": "^25.6.2",
"@types/open": "^6.1.0",
"@types/tar": "^6.1.13",
"@types/uuid": "^10.0.0",
"tsx": "^4.21.0",
"typescript": "^6.0.3"
},
"type": "module"
}