-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 3.27 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 3.27 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
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
{
"name": "twiki",
"version": "1.3.2",
"description": "Desktop client for viewing and automating game tweaks",
"private": true,
"main": "./out/main/index.js",
"author": "",
"workspaces": [
"src/renderer"
],
"scripts": {
"test": "vitest run",
"test:e2e": "npm run build && playwright test",
"test:e2e:headed": "npm run build && playwright test --headed",
"test:e2e:debug": "npm run build && playwright test --debug",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck:renderer": "npm run check -w @pcgw/renderer",
"typecheck:watch": "npm run typecheck:node -- --watch && npm run typecheck:web -- --watch",
"typecheck": "npm run typecheck:node && npm run typecheck:web && npm run typecheck:renderer",
"check": "npm run lint && npm run format:check && npm run typecheck",
"start": "electron-vite preview",
"dev": "concurrently --kill-others -p \"[{name}]\" -n=typecheck,electron,sveltekit -c=red,blue,green \"npm run typecheck:watch\" \"electron-vite dev --watch\" \"npm run dev:sveltekit\"",
"dev:wsl": "ELECTRON_ENTRY=$(wslpath -w .) ELECTRON_EXEC_PATH=$(cd .. && pwd)/scripts/electron-wsl-wrapper.sh concurrently --kill-others -p \"[{name}]\" -n=typecheck,electron,sveltekit -c=red,blue,green \"npm run typecheck:watch\" \"electron-vite dev --watch\" \"npm run dev:sveltekit\"",
"build": "npm run build:sveltekit && npm run typecheck && electron-vite build",
"postinstall": "electron-builder install-app-deps",
"build:win": "npm run build && electron-builder --win --config",
"build-publish:win": "npm run build && electron-builder --win --config --publish always",
"dev:sveltekit": "cd src/renderer && npm run dev",
"build:sveltekit": "cd src/renderer && npm run build"
},
"dependencies": {
"@electron-toolkit/preload": "^3.0.1",
"@electron-toolkit/utils": "^3.0.0",
"@twiki/shared": "*",
"adm-zip": "^0.5.16",
"cheerio": "^1.1.2",
"dotenv": "^17.2.3",
"electron-log": "^5.2.3",
"electron-serve": "^2.1.1",
"electron-updater": "^6.1.7",
"glob": "^13.0.0",
"megajs": "^1.3.9",
"node-unrar-js": "^2.0.2",
"systeminformation": "^5.27.11",
"turndown": "^7.2.2",
"ws": "^8.18.3",
"zod": "^3.25.0",
"zod-to-json-schema": "^3.25.0"
},
"devDependencies": {
"@electron-toolkit/tsconfig": "^1.0.1",
"@playwright/test": "^1.57.0",
"@types/adm-zip": "^0.5.7",
"@types/node": "^22.10.1",
"@types/turndown": "^5.0.6",
"@types/ws": "^8.18.1",
"concurrently": "^8.0.1",
"electron": "33.4.11",
"electron-builder": "^26.0.12",
"electron-vite": "^2.3.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-svelte": "^3.0.0",
"globals": "^16.0.0",
"javascript-obfuscator": "^5.2.1",
"prettier": "^3.3.2",
"prettier-plugin-svelte": "^3.3.3",
"rollup-plugin-obfuscator": "^1.1.0",
"svelte-eslint-parser": "^1.0.0",
"tslib": "^2.6.3",
"typescript": "^5.7.2",
"typescript-eslint": "^8.0.0",
"vite": "^6.0.2",
"vitest": "^4.0.14"
}
}