-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.85 KB
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
{
"name": "raidify-companion",
"//productName": "MUST match electron-builder.yml's productName. The NSIS uninstaller removes %APPDATA%/<productName>, while the app writes to %APPDATA%/<app.getName()> — and app.getName() falls back to `name` when this key is absent. Without it the two paths differ, deleteAppDataOnUninstall deletes an empty directory, and an uninstall leaves credentials.bin holding a token valid for up to 180 days.",
"productName": "Raidify Companion",
"version": "0.2.0",
"description": "Bridges the Raidify WoW addon's saved variables to the Raidify API.",
"author": "FriskyyDev",
"license": "MIT",
"private": true,
"type": "module",
"main": "./out/main/index.js",
"scripts": {
"dev": "electron-vite dev",
"build": "npm run typecheck && electron-vite build",
"typecheck": "tsc --noEmit -p tsconfig.node.json && tsc --noEmit -p tsconfig.web.json",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"package": "npm run build && npm run smoke && electron-builder --win --ia32 --publish never",
"release": "npm run build && npm run smoke && electron-builder --win --ia32 --publish always",
"schema:pull": "node scripts/pull-schema.mjs",
"smoke": "node scripts/smoke.cjs"
},
"dependencies": {
"@fontsource-variable/archivo": "^5.3.0",
"@fontsource-variable/inter": "^5.3.0",
"electron-updater": "^6.3.9",
"wasmoon": "^1.16.0"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.18",
"@types/node": "^22.10.2",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@vitejs/plugin-react": "^4.3.4",
"electron": "^43.2.0",
"electron-builder": "^26.15.3",
"electron-vite": "^5.0.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"tailwindcss": "^4.1.18",
"typescript": "~5.9.3",
"vite": "^7.2.4",
"vitest": "^3.2.4"
}
}