This repository was archived by the owner on Oct 11, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 4.66 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 4.66 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "meshmonitor",
"private": true,
"version": "0.0.0-development",
"type": "module",
"scripts": {
"frontend:dev": "bunx --bun vite",
"frontend:build": "bunx --bun vite build",
"frontend:serve": "bunx --bun vite preview",
"frontend:analyze": "bunx vite-bundle-visualizer -c ./vite.config.ts",
"worker:dev": "bun --watch ./packages/worker/index.ts",
"worker:inspect": "bun --inspect ./packages/worker/index.ts",
"worker:build:base": "bun build --sourcemap ./packages/worker/index.ts",
"worker:build:node": "bun run worker:build:base --outdir ./dist/worker_node --target node",
"worker:build:bun": "bun run worker:build:base --outdir ./dist/worker_bun --target bun",
"worker:build:all": "bun run worker:build:node && bun run worker:build:bun",
"worker:compile:base": "bun build --compile --minify ./packages/worker/index.ts",
"worker:compile:current": "bun run worker:compile:base --outfile ./dist/bin/worker",
"worker:compile:linux:x64": "bun run worker:compile:base --target=bun-linux-x64 --outfile ./dist/bin/worker_linux_x64",
"worker:compile:linux:arm64": "bun run worker:compile:base --target=bun-linux-arm64 --outfile ./dist/bin/worker_linux_arm64",
"worker:compile:windows:x64": "bun run worker:compile:base --target=bun-windows-x64-modern --outfile ./dist/bin/worker_windows_x64",
"worker:compile:darwin:arm64": "bun run worker:compile:base --target=bun-darwin-arm64 --outfile ./dist/bin/worker_darwin_arm64",
"worker:compile:darwin:x64": "bun run worker:compile:base --target=bun-darwin-x64 --outfile ./dist/bin/worker_darwin_x64",
"worker:compile:all": "bun run worker:compile:linux:x64 && bun run worker:compile:linux:arm64 && bun run worker:compile:windows:x64 && bun run worker:compile:darwin:arm64 && bun run worker:compile:darwin:x64",
"autotranslate:dev": "bun run ./packages/autotranslate/index.ts",
"autotranslate:build:node": "bun build ./packages/autotranslate/index.ts --sourcemap --outdir ./dist/autotranslate --target node",
"autotranslate:build": "bun build ./packages/autotranslate/index.ts --sourcemap --outdir ./dist/autotranslate --target bun",
"docker-helper:build": "bun build ./packages/docker-helper/index.ts --sourcemap --outdir ./dist/docker-helper --target bun",
"docker-helper:build:node": "bun build ./packages/docker-helper/index.ts --sourcemap --outdir ./dist/docker-helper --target node",
"docker-helper:build:compile": "bun build --compile --minify ./packages/docker-helper/index.ts --outfile ./dist/bin/docker-helper",
"knip": "knip -c .knip.ts",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"dependencies": {
"@buf/meshtastic_protobufs.bufbuild_es": "^2.2.0-20241006120827-cc36fd21e859.1",
"@bufbuild/protobuf": "^2.2.0",
"ajv": "^8.17.1",
"commander": "^12.1.0",
"mqtt": "^5.10.1",
"nanoid": "^5.0.7",
"p-queue": "^8.0.1",
"pino": "^9.5.0",
"surrealdb": "^1.0.6",
"umzug": "^3.8.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@eslint/js": "^9.13.0",
"@mui/icons-material": "^6.1.5",
"@mui/lab": "^6.0.0-beta.13",
"@mui/material": "^6.1.5",
"@mui/styles": "^6.1.5",
"@mui/x-data-grid": "^7.22.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.0.1",
"@types/bun": "^1.1.12",
"@types/is-base64": "^1.1.3",
"@types/leaflet": "^1.9.14",
"@types/leaflet.markercluster": "^1.5.4",
"@types/nprogress": "^0.2.3",
"@types/randomcolor": "^0.5.9",
"@types/react-timeago": "^4.1.7",
"@vitejs/plugin-react-swc": "^3.7.1",
"ahooks": "^3.8.1",
"country-flag-icons": "^1.5.13",
"date-fns": "^4.1.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react-hooks": "^5.1.0-rc-fb9a90fa48-20240614",
"eslint-plugin-react-refresh": "^0.4.14",
"globals": "^15.11.0",
"i18next": "^23.16.4",
"is-base64": "^1.1.0",
"knip": "^5.34.0",
"nprogress": "^0.2.0",
"openai": "^4.68.4",
"prettier": "^3.3.3",
"prop-types": "^15.8.1",
"randomcolor": "^0.6.2",
"react": "^19.0.0-rc-fb9a90fa48-20240614",
"react-battery-gauge": "^1.0.7",
"react-custom-scrollbars-2": "^4.5.0",
"react-dom": "^19.0.0-rc-fb9a90fa48-20240614",
"react-helmet-async": "^2.0.5",
"react-i18next": "^15.1.0",
"react-json-view": "^1.21.3",
"react-leaflet": "^4.2.1",
"react-leaflet-cluster": "^2.1.0",
"react-router": "^6.27.0",
"react-router-dom": "^6.27.0",
"react-timeago": "^7.2.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.11.0",
"vite": "^5.4.10"
}
}