-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
83 lines (83 loc) · 2.07 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
{
"name": "fsg-mod-assistant",
"version": "5.1.5",
"description": "FSG Farm Sim Mod Assistant",
"main": "modAssist_main.js",
"homepage": "https://github.com/FSGModding/FSG_Mod_Assistant#readme",
"keywords": [],
"author": {
"name": "FSG Modding",
"email": "jtsage+datebox@gmail.com",
"url": "https://www.fsgmodding.com/"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/FSGModding/FSG_Mod_Assistant/issues/"
},
"repository": "github:FSGModding/FSG_Mod_Assistant",
"scripts": {
"lang": "node ./test/fix-locale-files.js",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"test": "node ./test/test.js",
"depends": "node ./test/outdated-deps.js",
"generate-docs": "node_modules\\.bin\\jsdoc -c .jsdoc.json"
},
"devDependencies": {
"@babel/core": "^7.25.7",
"@babel/eslint-parser": "^7.25.7",
"ansi-colors": "^4.1.3",
"clean-css": "^5.3.3",
"deepl-node": "^1.14.0",
"deepmerge": "^4.3.1",
"docolatte": "^4.5.1",
"electron": "^32.1.2",
"electron-builder": "~25.0.6",
"eslint": "^9.12.0",
"eslint-plugin-unicorn": "^56.0.0",
"globals": "^15.11.0",
"html-validate": "^8.24.1",
"jsdoc": "^4.0.3"
},
"dependencies": {
"ajv": "^8.17.1",
"ajv-formats": "^2.1.1",
"archiver": "^7.0.1",
"discord-rpc": "^4.0.1",
"electron-store": "^8.2.0",
"electron-updater": "^6.3.9",
"fast-xml-parser": "^4.5.0",
"glob": "^11.0.0",
"node-stream-zip": "^1.15.0",
"unzip-stream": "^0.3.4",
"wasm-vips": "^0.0.10"
},
"build": {
"appId": "jtsage.fsmodassist",
"productName": "FSModAssistant",
"files": [
"!README.*",
"!test/*",
"!screen_shots/**",
"!**/.vscode/*",
"!.github/*",
"!/dist/*",
"!/docs/*",
"!/img_src/*",
"!/renderer/inc/src/*"
],
"extraFiles": [
"texconv.exe",
"icon/*"
],
"win": {
"target": [
"nsis",
"portable"
]
},
"portable": {
"artifactName": "${productName} Portable ${version}.exe"
}
}
}