-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.55 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.55 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
{
"name": "trem_lite",
"version": "3.2.1",
"description": "Taiwan Real-time Earthquake Monitoring",
"main": "./src/main.js",
"author": "ExpTechTW <ExpTech.tw@gmail.com>",
"scripts": {
"rebuild": "electron-rebuild",
"start": "bun run rebuild && NODE_ENV=development electron .",
"build": "electron-builder build --mac --win --linux",
"build:mac": "electron-builder build --mac",
"build:win": "electron-builder build --win",
"build:linux": "electron-builder build --linux",
"lint": "eslint \"src/**/*.{js,ts}\" --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/ExpTechTW/TREM-Lite.git"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@stylistic/eslint-plugin": "^5.7.1",
"@types/eslint__js": "^9.14.0",
"electron": "^40.1.0",
"electron-builder": "^26.0.12",
"eslint": "^9.14.0",
"eslint-plugin-require-sort": "^1.3.0",
"globals": "^17.2.0",
"node-abi": "^4.26.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.13.0"
},
"dependencies": {
"@electron/remote": "^2.1.3",
"@exptech/http": "github:ExpTechTW/exptech-sdk-http#0.0.4",
"adm-zip": "^0.5.16",
"electron-store": "11.0.2",
"electron-updater": "^6.7.3",
"fs-extra": "^11.3.0",
"js-yaml": "^4.1.0",
"maplibre-gl": "^5.5.0",
"ntp-time-sync": "^0.5.0",
"pino": "^10.3.0",
"speak-tts": "^2.0.8",
"undici": "^7.9.0",
"zstd-napi": "^0.0.12"
},
"trustedDependencies": [
"electron",
"zstd-napi"
],
"overrides": {
"node-abi": "^4.26.0"
}
}