-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
86 lines (86 loc) · 2.3 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
{
"name": "amethyst-launcher",
"version": "2.5.4",
"author": "FrederoxDev, theaddonn, OmniacDev",
"description": "Amethyst Launcher",
"main": "build/electron/main/main.js",
"type": "module",
"scripts": {
"start": "vite",
"build": "npm run build:vite && npm run build:electron",
"build:vite": "tsc -b && vite build",
"build:electron": "electron-builder -w",
"lint": "eslint . --ext ts,tsx src/**/* --report-unused-disable-directives --max-warnings 0",
"typecheck": "tsc --noEmit",
"format": "prettier --write src/**/*",
"bump-version": "npm version patch --no-git-tag-version"
},
"dependencies": {
"ajv": "^6.12.6",
"electron-updater": "^6.3.0-alpha.6",
"jszip": "^3.10.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.24.0",
"regedit-rs": "^1.0.2",
"sudo-prompt": "^9.2.1"
},
"devDependencies": {
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.19",
"electron": "^31.1.0",
"electron-builder": "^24.13.3",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"postcss": "^8.4.39",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.4",
"typescript": "^5.2.2",
"vite": "^5.3.1",
"vite-plugin-electron": "^0.28.7"
},
"build": {
"productName": "Amethyst-Launcher",
"appId": "com.frederoxdev.amethystlauncher",
"directories": {
"output": "release",
"buildResources": "build/public"
},
"files": [
"build/**/*"
],
"win": {
"target": "nsis",
"icon": "public/icons/icon.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"artifactName": "${productName}-${version}.exe"
},
"publish": [
{
"provider": "github",
"owner": "FrederoxDev",
"repo": "Amethyst-Launcher"
}
],
"fileAssociations": [
{
"ext": [
".amethyst",
".amth"
],
"name": "Amethyst Mod",
"role": "Editor",
"icon": "public/icons/icon.ico"
}
]
}
}