-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.47 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.47 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
{
"name": "ex-electron",
"productName": "ex",
"version": "0.1.0",
"description": "Desktop shell for the ex team chat.",
"private": true,
"main": "dist/main.js",
"author": "DigitalTolk",
"license": "MIT",
"scripts": {
"regen-icons": "tsx scripts/make-icons.ts",
"bundle": "tsx scripts/bundle.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"build": "npm run typecheck && npm run lint && npm run bundle",
"start": "npm run bundle && electron .",
"dist": "npm run build && tsx scripts/build-app.ts",
"dist:mac": "npm run build && tsx scripts/build-app.ts --mac --arm64",
"dist:linux": "npm run build && tsx scripts/build-app.ts --linux --x64 --arm64",
"dist:win": "npm run build && tsx scripts/build-app.ts --win --x64 --arm64",
"dist:all": "npm run build && tsx scripts/build-app.ts --mac --arm64 --linux --x64 --arm64 --win --x64 --arm64"
},
"devDependencies": {
"@anthropic-ai/bedrock-sdk": "^0.29.2",
"@eslint/js": "^10.0.1",
"@types/node": "^24.12.4",
"@vitest/coverage-v8": "^4.1.6",
"electron": "^42.1.0",
"electron-builder": "^26.8.1",
"esbuild": "^0.28.0",
"eslint": "^10.4.0",
"png-to-ico": "^3.0.1",
"sharp": "^0.34.5",
"tsx": "^4.22.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.4",
"vitest": "^4.1.5"
},
"engines": {
"node": ">=24.0.0 <25.0.0"
}
}