-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2 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
{
"name": "ReadLuck",
"version": "1.1",
"main": "src/main.js",
"scripts": {
"start": "electron .",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "electron-builder",
"build:win": "electron-builder --win",
"build:portable": "electron-builder --win portable",
"dist": "electron-builder --publish=never"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "ReadLuck - Gerenciador de Biblioteca Pessoal",
"devDependencies": {
"electron": "^36.2.0",
"electron-builder": "^24.13.3",
"electron-packager": "^17.1.2"
},
"dependencies": {
"electron-store": "^8.1.0",
"rtf2text": "^1.0.1",
"xlsx": "^0.18.5"
},
"build": {
"appId": "com.readluck.app",
"productName": "ReadLuck",
"icon": "build/icon.ico",
"directories": {
"output": "dist",
"buildResources": "src/assets"
},
"files": [
"src/**/*",
"node_modules/**/*",
"package.json"
],
"win": {
"target": [
{
"target": "nsis",
"arch": ["x64", "ia32"]
},
{
"target": "portable",
"arch": ["x64", "ia32"]
}
],
"icon": "build/icon.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"perMachine": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "ReadLuck",
"deleteAppDataOnUninstall": true,
"installerIcon": "build/icon.ico",
"uninstallerIcon": "build/icon.ico",
"artifactName": "ReadLuck Setup ${version}.${ext}"
},
"portable": {
"artifactName": "ReadLuck Portable ${version}.${ext}"
},
"linux": {
"target": [
{
"target": "AppImage",
"arch": ["x64", "ia32"]
},
{
"target": "deb",
"arch": ["x64", "ia32"]
}
],
"icon": "src/assets/ReadLuck-Icone-Oficial-2025-Final.ico",
"category": "Office"
}
}
}