-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.92 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
{
"name": "dxvk-studio",
"private": true,
"version": "1.1.0",
"description": "Professional DXVK management suite for Windows",
"author": "Zendevve",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/Zendevve/dxvk-studio"
},
"main": "dist-electron/main.js",
"scripts": {
"dev": "vite",
"build": "tsc && vite build && electron-builder",
"preview": "vite preview",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"better-sqlite3": "^11.6.0",
"framer-motion": "^11.13.0",
"fzstd": "^0.1.1",
"lucide-react": "^0.468.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.28.0",
"tar": "^7.5.2",
"uuid": "^13.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/better-sqlite3": "^7.6.12",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.50.1",
"@typescript-eslint/parser": "^8.50.1",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"electron": "^33.2.0",
"electron-builder": "^25.1.8",
"eslint": "^9.39.2",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.26",
"globals": "^16.5.0",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.16",
"typescript": "^5.6.3",
"typescript-eslint": "^8.50.1",
"vite": "^6.0.3",
"vite-plugin-electron": "^0.28.8",
"vite-plugin-electron-renderer": "^0.14.6",
"vitest": "^4.0.16"
},
"build": {
"appId": "com.dxvk.studio",
"productName": "DXVK Studio",
"directories": {
"output": "release"
},
"win": {
"target": [
"nsis",
"portable"
],
"icon": "public/icon.png"
}
}
}