-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.04 KB
/
package.json
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
{
"name": "bolls",
"version": "0.3.0",
"main": "out/main/main.js",
"license": "MIT",
"type": "module",
"repository": "https://github.com/Bohooslav/bolls-electron",
"homepage": "https://github.com/Bolls-Bible/bain/",
"keywords": [
"Bible",
"bolls"
],
"scripts": {
"start": "electron-vite preview",
"dev": "electron-vite dev",
"prebuild": "electron-vite build",
"pack": "electron-builder --dir",
"dist": "npm run prebuild && electron-builder"
},
"author": "Bohooslav <bpavlisinec@gmail.com>",
"description": "Read the Bible with full emphasis on the God`s Word only. Sola scriptura. Read God`s Word with a deep understanding of His design. Bible elevates your soul with rapid ascension to calm, safety and more.",
"dependencies": {
"electron-store": "^10.0.0"
},
"devDependencies": {
"electron": "^31.4.0",
"electron-builder": "^24.13.3",
"electron-vite": "^2.3.0"
},
"files": [
"!**/.vscode/*",
"!**/.github/*",
"!main.js",
"!dist/*",
"!electron.vite.config.{js,ts,mjs,cjs}",
"!vitest.config.{js,ts,mjs,cjs}",
"!{.eslintignore,.eslintrc.cjs,.prettierignore,.prettierrc.yaml,dev-app-update.yml,setupTests.js,lv-logo.svg,*.md}",
"!{.env,.env.*,.npmrc,pnpm-lock.yaml}",
"!{tsconfig.json,tsconfig.node.json,tsconfig.web.json}"
],
"build": {
"appId": "bolls.life",
"mac": {
"category": "public.app-category.education"
},
"linux": {
"category": "Education"
},
"win": {
"target": [
"appx",
"nsis"
],
"icon": "./build/icon.png"
},
"appx": {
"displayName": "Bolls Bible",
"publisherDisplayName": "Bohooslav",
"backgroundColor": "#04060C",
"identityName": "33943CA21EBD1.BollsBible",
"applicationId": "BollsBible",
"publisher": "CN=B97D0445-D287-4CDD-84F4-543D4B5E1762"
},
"appImage": {
"synopsis": "Read the Bible with full emphasis on the God`s Word only. Sola scriptura.",
"category": "Education"
},
"icon": "./build/icon.png"
}
}