-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1019 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 1019 Bytes
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
{
"name": "multidoro",
"version": "1.0.0",
"description": "Multidoro: A desktop Pomodoro tracking app powered by Google Gemini Live API.",
"main": "dist/main.js",
"type": "commonjs",
"scripts": {
"build": "tsc && node scripts/copy-assets.js",
"watch": "tsc -w",
"start": "electron .",
"dist": "npm run build && electron-builder"
},
"dependencies": {
"@google/genai": "^1.1.0",
"dotenv": "^16.4.5",
"sql.js": "^1.8.0"
},
"devDependencies": {
"@types/node": "^20.12.12",
"@types/sql.js": "^1.4.9",
"electron": "^30.0.6",
"electron-builder": "^24.13.3",
"tsx": "^4.10.5",
"typescript": "^5.4.5"
},
"build": {
"appId": "com.multidoro.app",
"productName": "Multidoro",
"directories": {
"output": "dist-release"
},
"files": [
"dist/**/*",
"package.json"
],
"asar": true,
"win": {
"target": [
"portable",
"nsis"
],
"icon": "src/renderer/assets/icon.ico"
}
}
}