This repository has been archived by the owner on Apr 8, 2023. It is now read-only.
generated from cawa-93/vite-electron-builder
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 2.06 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
{
"name": "harvest-monster",
"description": "Path of Exile Harvest Craft Management Tool",
"private": true,
"license": "GPL-3.0-or-later",
"engines": {
"node": ">=v16.13",
"npm": ">=8.1"
},
"repository": {
"type": "git",
"url": "https://github.com/ryanbarr/harvest-monster.git"
},
"author": {
"email": "[email protected]",
"name": "Ryan Barr",
"url": "https://twitch.tv/spooky"
},
"build": {
"publish": {
"provider": "github"
}
},
"main": "packages/main/dist/index.cjs",
"scripts": {
"build": "npm run build:main && npm run build:preload && npm run build:renderer",
"build:main": "cd ./packages/main && vite build",
"build:preload": "cd ./packages/preload && vite build",
"build:renderer": "cd ./packages/renderer && vite build",
"compile": "cross-env MODE=production npm run build && electron-builder build --config .electron-builder.config.js --dir --config.asar=false",
"test": "npm run test:e2e",
"test:e2e": "vitest run",
"watch": "node scripts/watch.js",
"postinstall": "cross-env ELECTRON_RUN_AS_NODE=1 npx --no-install electron ./scripts/update-electron-vendors.js ",
"release": "electron-builder -p always"
},
"devDependencies": {
"@types/tesseract.js": "^2.0.0",
"autoprefixer": "^10.4.8",
"cross-env": "7.0.3",
"electron": "^20.0.1",
"electron-builder": "^23.3.3",
"happy-dom": "6.0.4",
"playwright": "1.24.2",
"postcss": "^8.4.16",
"prettier": "2.7.1",
"prettier-plugin-svelte": "^2.7.0",
"tailwindcss": "^3.1.8",
"typescript": "4.7.4",
"unplugin-auto-expose": "0.0.2",
"vite": "^2.9.14",
"vitest": "0.21.1"
},
"dependencies": {
"@sveltejs/vite-plugin-svelte": "^1.0.0-next.49",
"@tailwindcss/forms": "^0.5.2",
"@zerodevx/svelte-toast": "^0.7.2",
"electron-log": "^4.4.8",
"electron-updater": "^5.2.1",
"lodash": "^4.17.21",
"semver-compare": "^1.0.0",
"svelte-feather-icons": "^4.0.0",
"svelte-i18n": "^3.4.0",
"svelte-modals": "^1.1.0",
"tesseract.js": "^2.1.5"
}
}