This repository was archived by the owner on Jun 8, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.6 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
{
"name": "desktop",
"version": "0.8.9",
"description": "ClosedLoop Desktop",
"author": "ClosedLoop AI <support@closedloop.ai>",
"private": true,
"type": "module",
"main": "dist/main/index.js",
"scripts": {
"dev": "pnpm build && ELECTRON_BIN=$(bash scripts/patch-electron-plist.sh | tail -1) && \"$ELECTRON_BIN\" dist/main/index.js",
"start": "ELECTRON_BIN=$(bash scripts/patch-electron-plist.sh | tail -1) && \"$ELECTRON_BIN\" dist/main/index.js",
"prebuild": "node -e \"const{execSync:e}=require('child_process'),{writeFileSync:w}=require('fs');const h=e('git rev-parse HEAD').toString().trim();w('src/shared/build-info.ts','// AUTO-GENERATED — do not edit\\nexport const BUILD_COMMIT_HASH = \\\"'+h+'\\\";\\n');\"",
"build": "pnpm prebuild && tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "eslint src/",
"test": "tsx --test test/*.test.ts",
"package": "pnpm build && electron-builder --mac --config electron-builder.yml",
"release": "pnpm build && electron-builder --mac --publish always --config electron-builder.yml"
},
"dependencies": {
"busboy": "^1.6.0",
"electron-store": "^8.2.0",
"electron-updater": "^6.8.3",
"glob": "^11.0.1",
"socket.io-client": "^4.8.1"
},
"devDependencies": {
"@types/busboy": "^1.5.4",
"@types/node": "^22.13.8",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"electron": "^35.0.2",
"electron-builder": "^26.8.1",
"eslint": "^10.0.3",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"typescript-eslint": "^8.57.1"
}
}