-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.15 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.15 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
{
"name": "hack-sobes",
"version": "2.0.0",
"description": "AI Desktop Assistant with direct OpenAI API integration",
"main": "electron-app/main.js",
"scripts": {
"dev": "concurrently -k -s first -n VITE,ELECTRON \"npm run dev:renderer\" \"npm run wait-and-electron\"",
"dev:renderer": "cd electron-app/renderer && npm run dev",
"wait-and-electron": "npx wait-port localhost:5173 && npm run electron-dev",
"electron-dev": "electron ./electron-app/main.js",
"build:renderer": "cd electron-app/renderer && npm run build",
"start": "electron ./electron-app/main.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"array.prototype.findindex": "^2.2.4",
"avr-vad": "^1.0.10",
"axios": "^1.8.3",
"call-bind": "^1.0.8",
"call-bind-apply-helpers": "^1.0.1",
"dotenv": "^16.4.7",
"dunder-proto": "^1.0.1",
"ffmpeg-static": "^5.2.0",
"get-intrinsic": "^1.2.7",
"node-fetch": "^3.3.2",
"node-record-lpcm16": "^1.0.1",
"openai": "^4.73.0",
"react-router-dom": "^6.30.0",
"screenshot-desktop": "^1.15.1",
"set-function-length": "^1.2.2",
"tesseract.js": "^6.0.1",
"zustand": "^5.0.3"
},
"devDependencies": {
"@types/react": "^19.0.12",
"@types/react-dom": "^19.0.4",
"concurrently": "^9.1.2",
"electron": "^34.5.4",
"electron-builder": "^25.1.8",
"typescript": "^5.8.2",
"wait-on": "^8.0.3",
"wait-port": "^1.1.0"
},
"build": {
"appId": "ru.tgqueue.hacksobes",
"productName": "HackSobes",
"mac": {
"sign": false,
"identity": null,
"hardenedRuntime": false,
"icon": "electron-app/icon/icon.icns",
"target": [
{
"target": "dmg"
}
],
"extendInfo": {
"LSUIElement": "1",
"NSMicrophoneUsageDescription": "Приложению требуется доступ к микрофону для записи аудио."
},
"category": "public.app-category.utilities"
},
"asarUnpack": [
"**/node_modules/ffmpeg-static/**",
"**/node_modules/tesseract.js-core/**",
"**/native/*.node",
"**/models/**"
]
}
}