-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.79 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
{
"name": "altcost",
"version": "0.1.412",
"description": "Alternative History Asset Comparison Engine - Dual-Platform Release v0.1.412",
"private": true,
"type": "module",
"main": "electron/main.js",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"test": "vitest run --coverage",
"preview": "vite preview",
"electron": "electron .",
"dist": "npm run build && electron-builder",
"cap:sync": "cap sync",
"cap:open:android": "cap open android"
},
"dependencies": {
"@capacitor/android": "^5.6.0",
"@capacitor/core": "^5.6.0",
"clsx": "^2.1.1",
"html2canvas": "^1.4.1",
"lucide-react": "^0.474.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"recharts": "^2.15.0",
"tailwind-merge": "^2.6.0"
},
"devDependencies": {
"@capacitor/cli": "^5.6.0",
"@tailwindcss/vite": "^4.0.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.10.1",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.2.0",
"@vitest/coverage-v8": "^3.2.7",
"autoprefixer": "^10.4.20",
"concurrently": "^9.1.0",
"cross-env": "^7.0.3",
"electron": "^33.2.1",
"electron-builder": "^25.1.8",
"jsdom": "^30.0.0",
"postcss": "^8.4.32",
"tailwindcss": "^4.0.0",
"typescript": "^5.7.2",
"vite": "^6.0.7",
"vitest": "^3.2.7",
"wait-on": "^8.0.1"
},
"build": {
"appId": "com.altcost.app",
"productName": "AltCost",
"artifactName": "AltCost-Setup-0.1.412.${ext}",
"directories": {
"output": "dist_electron"
},
"win": {
"target": "nsis"
},
"publish": {
"provider": "github",
"releaseType": "release"
}
}
}