-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
92 lines (92 loc) · 1.96 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "dofus-db-treasure-hunt-overlay",
"version": "2.1.1",
"description": "DofusDB Treasure Hunt Overlay",
"author": {
"name": "WushuLate",
"url": "https://github.com/Kiyozz",
"email": "kevinturmel@gmail.com"
},
"private": true,
"scripts": {
"dev": "electron-esbuild dev",
"build": "electron-esbuild build",
"package": "electron-builder",
"prepare": "husky install"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/eslint-parser": "^7.17.0",
"@typescript-eslint/eslint-plugin": "~5.22.0",
"@typescript-eslint/parser": "~5.22.0",
"@vercel/style-guide": "^3.0.0",
"electron": "^18.2.0",
"electron-builder": "~23.0.3",
"electron-esbuild": "^5.0.2",
"electron-store": "^8.0.1",
"esbuild": "^0.14.38",
"eslint": "~8.14.0",
"eslint-config-prettier": "~8.5.0",
"eslint-plugin-import": "~2.26.0",
"eslint-plugin-prettier": "~4.0.0",
"husky": "~7.0.4",
"lint-staged": "^12.4.1",
"prettier": "~2.6.2",
"rimraf": "~3.0.2",
"typescript": "~4.6.4"
},
"build": {
"appId": "io.kiyozz.dofushunt",
"productName": "Dofus Hunt Overlay",
"copyright": "Copyright © WushuLate",
"extraMetadata": {
"name": "Dofus Hunt Overlay",
"main": "main.js"
},
"artifactName": "${productName}.${ext}",
"files": [
{
"from": ".",
"filter": [
"package.json"
]
},
{
"from": "dist/main"
}
],
"nsis": {
"oneClick": true
},
"win": {
"target": [
"nsis"
]
},
"mac": {
"target": [
"dmg"
]
},
"linux": {
"target": [
"deb",
"AppImage",
"tar.gz"
],
"category": "Game"
},
"directories": {
"buildResources": "resources"
},
"publish": null
},
"lint-staged": {
"*.ts": [
"eslint --fix"
],
"*.{md,json}": [
"prettier --write"
]
}
}