-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.25 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.25 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
70
71
72
73
74
75
76
77
78
79
{
"name": "lumo-tamer",
"version": "0.5.0",
"description": "Use Proton's Lumo AI through OpenAI-compatible API and CLI",
"main": "dist/src/tamer.js",
"type": "module",
"workspaces": [
"packages/*"
],
"bin": {
"tamer": "./dist/src/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": "./scripts/upstream/sync.sh",
"build": "npx tsc && npx 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/src/tamer.js server",
"cli": "node dist/src/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": {
"@msgpack/msgpack": "^3.1.3",
"@reduxjs/toolkit": "^2.11.2",
"@types/lodash": "^4.17.23",
"@types/toposort": "^2.0.7",
"arg": "^5.0.2",
"bytes": "^3.1.2",
"dotenv": "^16.4.1",
"express": "^4.18.2",
"handlebars": "^4.7.8",
"indexeddbshim": "^16.1.0",
"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",
"redux-saga": "^1.4.2",
"toposort": "^2.0.2",
"uuid": "^9.0.1",
"yaml": "^2.8.2",
"zod": "^4.3.5"
},
"devDependencies": {
"@types/bytes": "^3.1.5",
"@types/express": "^4.17.21",
"@types/json-stable-stringify": "^1.1.0",
"@types/node": "^20.11.5",
"@types/uuid": "^9.0.8",
"@vitest/coverage-v8": "^4.0.18",
"fake-indexeddb": "^6.2.5",
"tsc-alias": "^1.8.16",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^4.0.18"
}
}