-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.02 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.02 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@dchighs/dc-tools",
"private": true,
"version": "0.16.2",
"type": "commonjs",
"main": "dist-electron/main.js",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,css,json}\" \"*.{js,ts,json}\"",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"build": {
"appId": "dev.marcuth.dchighs.dc-tools",
"productName": "DC Tools",
"files": [
"dist/**/*",
"electron/dist/**/*"
],
"directories": {
"buildResources": "assets"
}
},
"dependencies": {
"@ark-ui/react": "^5.34.1",
"@base-ui/react": "^1.2.0",
"@dchighs/dc-assets": "^0.4.3",
"@dchighs/dc-client-state": "^0.1.0",
"@dchighs/dc-config": "^0.0.3",
"@dchighs/dc-core": "^0.4.1",
"@dchighs/dc-localization": "^0.0.6",
"@fontsource-variable/outfit": "^5.2.8",
"@hookform/resolvers": "^5.2.2",
"@marcuth/dds-to-png": "^0.0.4",
"@tailwindcss/vite": "^4.1.18",
"adm-zip": "^0.5.16",
"bigjpg": "^1.0.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"cors": "^2.8.5",
"electron-store": "^8.1.0",
"express": "^5.2.1",
"framer-motion": "^12.34.3",
"lucide-react": "^0.562.0",
"next-themes": "^0.4.6",
"radix-ui": "^1.4.3",
"react": "^19.2.0",
"react-dom": "^19.2.4",
"react-hook-form": "^7.71.2",
"react-icons": "^5.5.0",
"react-router-dom": "^6.30.3",
"shadcn": "^3.7.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/adm-zip": "^0.5.7",
"@types/cors": "^2.8.19",
"@types/electron": "^1.4.38",
"@types/express": "^5.0.6",
"@types/node": "^24.10.9",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"electron": "^40.6.1",
"electron-builder": "^26.8.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^16.5.0",
"prettier": "^3.8.0",
"prettier-plugin-sort-imports": "^1.8.11",
"ts-node": "^10.9.2",
"typescript": "~5.9.3",
"typescript-eslint": "^8.56.1",
"vite": "^7.2.4",
"vite-plugin-electron": "^0.29.0",
"vite-plugin-electron-renderer": "^0.14.6",
"vitest": "^4.0.18",
"wait-on": "^9.0.3"
}
}