-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.18 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
{
"name": "pilot-client-bridge",
"version": "1.0.5",
"description": "",
"main": "src/index.ts",
"scripts": {
"dev": "nodemon --watch ./src ./src/index.ts",
"build": "node scripts/embed-tray-bin.mjs && bun build ./src/index.ts --compile --target=bun-windows-x64-baseline --outfile ./dist/24client-bridge --windows-icon=src/assets/icon.ico --windows-title=\"24client-bridge\" --windows-description=\"Bridge application connecting 24client to Discord\" --windows-copyright=\"Zedruc and awdev_\"",
"build-installer": "pnpm build && node scripts/build-installer.mjs",
"serve": "pnpm run build && pnpm build-installer"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.14.0",
"dependencies": {
"axios": "^1.16.1",
"cors": "^2.8.6",
"express": "^5.2.1",
"node-ipc": "^12.0.0",
"node-notifier": "^10.0.1",
"open": "^11.0.0",
"systray2": "^2.1.4"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^25.9.1",
"@types/node-ipc": "^9.2.3",
"@types/node-notifier": "^8.0.5",
"nodemon": "^3.1.14",
"ts-node": "^10.9.2",
"typescript": "^6.0.3"
}
}