-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.91 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
{
"name": "meshtastic-api",
"version": "1.0.0",
"description": "",
"license": "GPL-3.0-only",
"type": "module",
"private": true,
"scripts": {
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"build": "prisma generate && tsc",
"migrate": "prisma migrate deploy",
"validate:maintenance-uf2": "tsx scripts/validate-maintenance-uf2.ts",
"build:data": "tsx tools/build-data.ts",
"build:static": "tsx tools/build-static.ts",
"validate": "tsx tools/validate.ts",
"typecheck": "tsc --noEmit && tsc -p worker/tsconfig.json && tsc -p tools/tsconfig.json",
"test": "vitest run",
"parity": "node tools/parity.mjs",
"typecheck:v2": "tsc -p worker/tsconfig.json && tsc -p tools/tsconfig.json"
},
"engines": {
"node": "22.x"
},
"dependencies": {
"@buf/meshtastic_api.bufbuild_es": "1.7.2-20240110092216-3a147af14302.1",
"@buf/meshtastic_api.connectrpc_es": "1.3.0-20240110092216-3a147af14302.1",
"@bufbuild/protobuf": "^1.7.2",
"@connectrpc/connect": "^1.3.0",
"@connectrpc/connect-express": "^1.3.0",
"@meshtastic/js": "2.2.23-0",
"@octokit/auth-app": "^6.0.3",
"@prisma/client": "5.22.0",
"@tinyhttp/app": "2.2.3",
"@tinyhttp/cors": "^2.0.0",
"@tinyhttp/dotenv": "^2.1.1",
"@tinyhttp/favicon": "^3.0.0",
"@tinyhttp/logger": "^2.0.0",
"add": "^2.0.6",
"mqtt": "^5.3.5",
"octokit": "^3.1.2",
"pnpm": "^8.15.3",
"redis": "^4.6.13",
"sub-events": "^1.9.0",
"ts-pattern": "^5.0.8",
"typescript": "^5.3.3"
},
"devDependencies": {
"@biomejs/biome": "^2.1.3",
"@buf/meshtastic_protobufs.bufbuild_es": "1.7.2-20240216123215-6b07c41c68c9.1",
"@cloudflare/vitest-pool-workers": "^0.22.0",
"@cloudflare/workers-types": "^5.20260901.1",
"@types/node": "^22.20.1",
"prisma": "^5.22.0",
"tsx": "^4.23.13",
"vitest": "^4.1.11",
"wrangler": "^4.127.1",
"yaml": "^2.9.0"
}
}