-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.99 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 2.99 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
{
"private": true,
"name": "level",
"description": "App for step-by-step Bible translation",
"version": "0.6.1",
"author": {
"name": "Hiscoder",
"email": "info@hiscoder.com"
},
"main": "app/background.js",
"scripts": {
"dev": "nextron",
"build": "nextron build && yarn build:win",
"start": "yarn clear && yarn dev",
"postinstall": "electron-builder install-app-deps",
"clear": "rm -rf ./app ./dist ./renderer/.next",
"build:linux": "electron-builder --linux AppImage deb",
"build:win32": "electron-builder --win --ia32",
"build:win64": "electron-builder --win --x64",
"build:win": "yarn build:win32 && yarn build:win64"
},
"dependencies": {
"@headlessui/react": "2.1.5",
"@supabase/auth-helpers-nextjs": "^0.10.0",
"@supabase/supabase-js": "^2.46.1",
"@texttree/notepad-rcl": "^3.0.0",
"@texttree/obs-format-convert-rcl": "^0.5.0",
"@texttree/tn-quote-helpers": "^0.1.1",
"@texttree/translation-words-helpers": "^0.2.4",
"@texttree/v-cana-rcl": "^0.1.0-alpha.1",
"axios": "1.6.8",
"decompress": "^4.2.1",
"dotenv": "^16.4.5",
"electron-serve": "^1.3.0",
"electron-store": "^8.2.0",
"fs-extra": "^11.2.0",
"github-markdown-css": "^5.5.1",
"i18next": "^23.11.2",
"i18next-electron-fs-backend": "^3.0.2",
"jszip": "^3.10.1",
"localforage": "^1.10.0",
"marked": "^15.0.7",
"next-i18next": "^15.3.0",
"prop-types": "^15.8.1",
"puppeteer": "^24.2.0",
"react-hot-toast": "^2.4.1",
"react-i18next": "^14.1.0",
"react-markdown": "^9.0.1",
"react-textarea-autosize": "^8.5.3",
"recoil": "^0.7.7",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.0",
"usfm-js": "^3.4.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@svgr/webpack": "^8.1.0",
"autoprefixer": "^10.4.19",
"electron": "^30.0.0",
"electron-builder": "^24.13.3",
"next": "^14.1.1",
"nextron": "^9.1.0",
"postcss": "^8.4.38",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "3.4.3"
},
"resolutions": {
"braces": "3.0.3"
},
"build": {
"appId": "com.example.yourapp",
"productName": "LEVEL",
"extraResources": [
{
"from": "resources/default/project_bible.zip",
"to": "resources/default/project_bible.zip"
},
{
"from": "resources/default/project_obs.zip",
"to": "resources/default/project_obs.zip"
}
],
"linux": {
"target": [
"deb"
],
"category": "Utility",
"icon": "resources",
"artifactName": "${productName}_${version}.${ext}"
},
"win": {
"target": [
"nsis",
"zip"
],
"icon": "resources/icon.ico",
"artifactName": "${productName}-win-${arch}-${version}.${ext}"
},
"files": [
"app/**/*",
"resources/**/*"
],
"icon": "resources/icon.ico"
}
}