-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.11 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.11 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
{
"name": "behavioral-ai-bot",
"version": "1.0.0",
"description": "AI bot for behavioral data debugging annotation tasks",
"main": "electron/main.js",
"scripts": {
"start": "electron .",
"build:frontend": "cd frontend && npm install && npm run build",
"dist:linux": "npm run build:frontend && electron-builder --linux",
"dist:appimage": "npm run build:frontend && electron-builder --linux AppImage",
"postinstall": "electron-builder install-app-deps"
},
"build": {
"appId": "com.behavioral.aibot",
"productName": "Behavioral AI Bot",
"copyright": "2025",
"linux": {
"target": [
{ "target": "AppImage", "arch": ["x64"] },
{ "target": "deb", "arch": ["x64"] }
],
"category": "Development",
"maintainer": "behavioral-ai-bot"
},
"files": [
"electron/**/*",
"frontend/out/**/*",
"!**/node_modules/.cache/**",
"!**/.next/**"
],
"directories": {
"output": "dist"
},
"asar": true
},
"dependencies": {
"electron": "^33.0.0"
},
"devDependencies": {
"electron-builder": "^25.0.0"
}
}