generated from google-gemini/aistudio-repository-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
139 lines (139 loc) · 4.31 KB
/
package.json
File metadata and controls
139 lines (139 loc) · 4.31 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "bando-fi-ai",
"productName": "Bando-Fi AI",
"description": "AI-powered application for creative image and video generation",
"version": "1.0.0",
"author": "Massive Magnetics",
"license": "MIT",
"private": true,
"type": "module",
"main": "electron/main.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:web": "vite build",
"preview": "vite preview",
"electron": "cross-env NODE_ENV=development electron .",
"electron:dev": "concurrently \"npm run dev\" \"wait-on http://localhost:3000 && cross-env NODE_ENV=development electron .\"",
"electron:build": "npm run build && electron-builder",
"electron:build:win": "npm run build && electron-builder --win",
"electron:build:mac": "npm run build && electron-builder --mac",
"electron:build:linux": "npm run build && electron-builder --linux",
"pack": "npm run build && electron-builder --dir",
"dist": "npm run build && electron-builder",
"dist:win": "npm run build && electron-builder --win --x64",
"dist:all": "npm run build && electron-builder -mwl",
"cap:sync": "npm run build && npx cap sync",
"cap:sync:android": "npm run build && npx cap sync android",
"cap:sync:ios": "npm run build && npx cap sync ios",
"cap:open:android": "npx cap open android",
"cap:open:ios": "npx cap open ios",
"cap:run:android": "npm run build && npx cap sync android && npx cap run android",
"cap:run:ios": "npm run build && npx cap sync ios && npx cap run ios",
"build:android": "npm run build && npx cap sync android && cd android && ./gradlew assembleRelease",
"build:ios": "npm run build && npx cap sync ios",
"release:web": "npm run build:web",
"release:windows": "npm run dist:win",
"release:android": "npm run build:android",
"release:ios": "npm run build:ios",
"release:all": "npm run build && npm run dist:all && npm run build:android"
},
"build": {
"appId": "com.massivemagnetics.bandofiai",
"productName": "Bando-Fi AI",
"directories": {
"output": "release",
"buildResources": "build-resources"
},
"files": [
"dist/**/*",
"electron/**/*",
"package.json"
],
"extraResources": [
{
"from": "build-resources",
"to": "resources",
"filter": ["**/*"]
}
],
"win": {
"target": [
{
"target": "nsis",
"arch": ["x64"]
},
{
"target": "portable",
"arch": ["x64"]
}
],
"icon": "build-resources/icon.ico",
"artifactName": "${productName}-Setup-${version}-${arch}.${ext}",
"publish": null
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"deleteAppDataOnUninstall": false,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "Bando-Fi AI"
},
"portable": {
"artifactName": "${productName}-Portable-${version}-${arch}.${ext}"
},
"mac": {
"target": ["dmg", "zip"],
"category": "public.app-category.graphics-design",
"icon": "build-resources/icon.icns",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "build-resources/entitlements.mac.plist",
"entitlementsInherit": "build-resources/entitlements.mac.plist"
},
"dmg": {
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"target": ["AppImage", "deb", "rpm"],
"category": "Graphics",
"icon": "build-resources/icon.png",
"maintainer": "Massive Magnetics"
}
},
"dependencies": {
"@google/genai": "^1.11.0",
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@capacitor/cli": "^6.2.0",
"@capacitor/core": "^6.2.0",
"@capacitor/android": "^6.2.0",
"@capacitor/ios": "^6.2.0",
"@types/node": "^22.14.0",
"@vitejs/plugin-react": "^5.0.0",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"electron": "^39.2.3",
"electron-builder": "^26.0.12",
"typescript": "~5.8.2",
"vite": "^6.2.0",
"vite-plugin-pwa": "^0.20.5",
"wait-on": "^9.0.3",
"workbox-window": "^7.3.0"
}
}