-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.17 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.17 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
{
"name": "notebooklm-for-windows",
"version": "3.0.0",
"description": "Native cross-platform desktop wrapper for Google NotebookLM",
"main": "src/main.js",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder --publish never",
"dist:win": "electron-builder --win --publish never",
"dist:mac": "electron-builder --mac --publish never",
"dist:linux": "electron-builder --linux --publish never",
"dist:all": "electron-builder -mwl --publish never",
"test": "playwright test",
"test:smoke": "playwright test tests/smoke"
},
"author": {
"name": "Gyanesh Samanta",
"email": "mail.gyaneshsamanta@gmail.com"
},
"license": "MIT",
"devDependencies": {
"@electron/packager": "^18.3.2",
"@playwright/test": "^1.49.0",
"electron": "^34.1.0",
"electron-builder": "^26.8.1",
"playwright": "^1.49.0"
},
"dependencies": {
"auto-launch": "^5.0.6",
"electron-updater": "^6.3.9"
},
"build": {
"appId": "com.gyanesh.notebooklm-for-windows",
"productName": "NotebookLM-for-Windows",
"directories": {
"output": "dist"
},
"files": [
"src/**/*",
"assets/**/*",
"package.json"
],
"win": {
"target": ["nsis", "portable"],
"icon": "assets/icon.png"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "NotebookLM-for-Windows",
"artifactName": "NotebookLM-for-Windows-v${version}-Setup.${ext}"
},
"portable": {
"artifactName": "NotebookLM-for-Windows-v${version}.${ext}"
},
"mac": {
"target": ["dmg", "zip"],
"icon": "assets/icon.png",
"category": "public.app-category.productivity",
"darkModeSupport": true,
"artifactName": "NotebookLM-for-Mac-v${version}.${ext}"
},
"dmg": {
"artifactName": "NotebookLM-for-Mac-v${version}.${ext}"
},
"linux": {
"target": ["AppImage", "deb"],
"icon": "assets/icon.png",
"category": "Office",
"artifactName": "NotebookLM-for-Linux-v${version}.${ext}"
}
}
}