-
-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
126 lines (126 loc) · 3.26 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "weakauras-companion",
"version": "5.2.7",
"description": "WeakAuras Companion App",
"keywords": [
"electron",
"rollup",
"vite",
"vue3",
"vue",
"WeakAuras",
"World of Warcraft"
],
"repository": {
"type": "git",
"url": "https://github.com/WeakAuras/WeakAuras-Companion.git"
},
"license": "GPL-2.0-or-later",
"author": "Buds <[email protected]>",
"type": "module",
"main": "dist-electron/main/index.mjs",
"scripts": {
"build": "vue-tsc && vite build && electron-builder",
"clean": "git clean -xdf node_modules dist dist-electron",
"compile-tools": "tsc -p tools",
"dev": "vite",
"i18n": "pnpm run compile-tools && node ./tools/scripts/extract-i18n-messages.js",
"i18n-report": "pnpm dlx vue-i18n-extract report --add --remove --separator 'buggy' --vueFiles './src/**/*.?(ts|vue)' --languageFiles './i18n/*.json'",
"preinstall": "npx only-allow pnpm",
"lint": "eslint ./src --cache && prettier . --check --cache",
"lint:fix": "eslint ./src --fix && prettier . --write",
"prepare": "husky"
},
"lint-staged": {
"*.?(js|ts|ts|vue)": "prettier --write"
},
"config": {
"default-locale": "en",
"supported-locales": [
"en",
"es",
"de",
"fr",
"ru",
"tr",
"zh-cn"
]
},
"dependencies": {
"archiver": "^7.0.1",
"got": "^12.6.1",
"regedit": "^5.1.3",
"sharp": "^0.33.5",
"tga": "^1.0.7"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@iconify-json/fa6-brands": "^1.2.5",
"@iconify-json/mdi": "^1.2.2",
"@iconify/tools": "^4.1.1",
"@intlify/unplugin-vue-i18n": "^6.0.3",
"@types/archiver": "^6.0.3",
"@types/luaparse": "0.2.1",
"@types/luxon": "^3.4.2",
"@types/node": "^22.10.3",
"@types/tail": "^2.2.3",
"@unocss/eslint-config": "^0.65.3",
"@unocss/preset-icons": "^0.65.3",
"@unocss/preset-web-fonts": "^0.65.3",
"@vitejs/plugin-vue": "^5.2.1",
"browserslist": "^4.24.3",
"electron": "33.2.1",
"electron-builder": "^25.1.8",
"electron-log": "^5.2.4",
"electron-store": "^10.0.0",
"electron-updater": "^6.3.9",
"eslint": "^9.17.0",
"eslint-plugin-vue": "^9.32.0",
"floating-vue": "^5.2.2",
"glob": "^11.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"luaparse": "^0.2.1",
"luxon": "^3.5.0",
"pinia": "^2.3.0",
"pinia-plugin-persistedstate-2": "^2.0.28",
"prettier": "^3.4.2",
"tail": "^2.2.6",
"tree-kill": "^1.2.2",
"typescript": "^5.6.3",
"typescript-eslint": "8.19.0",
"unocss": "^0.65.3",
"vite": "^5.4.10",
"vite-plugin-electron": "^0.29.0",
"vite-plugin-electron-renderer": "^0.14.6",
"vite-plugin-resolve": "^2.5.2",
"vite-plugin-vue-devtools": "^7.6.8",
"vite-plugin-webfont-dl": "^3.10.3",
"vitest": "^2.1.8",
"vue": "^3.5.13",
"vue-i18n": "^10.0.5",
"vue-tsc": "^2.2.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=22"
},
"pnpm": {
"supportedArchitectures": {
"cpu": [
"x64",
"arm64"
],
"os": [
"win32",
"darwin",
"linux"
]
}
},
"debug": {
"env": {
"VITE_DEV_SERVER_URL": "http://127.0.0.1:3344/"
}
}
}