forked from ZeroTricks/lumo-tamer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.98 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.98 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "lumo-tamer",
"version": "0.3.0",
"description": "Use Proton's Lumo AI through OpenAI-compatible API and CLI",
"main": "dist/tamer.js",
"type": "module",
"bin": {
"tamer": "./dist/tamer.js"
},
"scripts": {
"dev:server": "tsx watch src/tamer.ts server",
"dev:cli": "tsx src/tamer.ts",
"dev:server:debug": "tsx watch --inspect=0.0.0.0:9229 src/tamer.ts server",
"dev:cli:debug": "tsx --inspect=0.0.0.0:9229 src/tamer.ts",
"sync-upstream": "./src/proton-upstream/sync-upstream.sh",
"build": "tsc && tsc-alias",
"build:login": "cd src/auth/login/go && go build -o ../../../../dist/proton-auth && echo 'All done!' || echo 'Warning: Go binary not built (Is Go installed?)'",
"build:all": "npm run build && npm run build:login",
"clean": "rm -rf dist",
"server": "node dist/tamer.js server",
"cli": "node dist/tamer.js",
"test": "vitest run",
"test:watch": "vitest",
"test:unit": "vitest run tests/unit/",
"test:integration": "vitest run tests/integration/"
},
"keywords": [
"lumo",
"proton",
"bridge",
"openai",
"api"
],
"author": "",
"license": "GPL-3.0",
"dependencies": {
"@types/lodash": "^4.17.23",
"@types/toposort": "^2.0.7",
"arg": "^5.0.2",
"dotenv": "^16.4.1",
"express": "^4.18.2",
"handlebars": "^4.7.8",
"js-yaml": "^4.1.1",
"json-stable-stringify": "^1.3.0",
"keytar": "^7.9.0",
"lodash": "^4.17.23",
"openai": "^6.17.0",
"openpgp": "^6.0.0",
"p-queue": "^8.0.1",
"pino": "^10.1.0",
"pino-pretty": "^13.1.3",
"playwright": "^1.41.0",
"prom-client": "^15.1.3",
"toposort": "^2.0.2",
"uuid": "^9.0.1",
"zod": "^4.3.5"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.11.5",
"@types/uuid": "^9.0.8",
"@vitest/coverage-v8": "^4.0.18",
"tsc-alias": "^1.8.16",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^4.0.18"
}
}