-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.05 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
{
"name": "capy-note",
"version": "1.2.8",
"description": "Capy-note - Effiziente Bewertung gescannter Schülerarbeiten",
"main": "electron/main.cjs",
"author": "Florian Christoph Nowak",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"electron:dev": "concurrently -k \"vite\" \"wait-on http://localhost:5173 && cross-env NODE_ENV=development electron .\"",
"electron:build": "vite build && electron-builder",
"electron:build:win": "vite build && electron-builder --win",
"electron:build:mac": "vite build && electron-builder --mac",
"electron:build:linux": "vite build && electron-builder --linux"
},
"dependencies": {
"@fontsource/gloria-hallelujah": "^5.2.8",
"@fontsource/indie-flower": "^5.2.7",
"lucide-react": "^0.460.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.3",
"autoprefixer": "^10.4.20",
"concurrently": "^9.1.0",
"cross-env": "^7.0.3",
"electron": "^33.2.0",
"electron-builder": "^25.1.8",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.15",
"vite": "^6.0.1",
"wait-on": "^8.0.1"
},
"build": {
"appId": "com.capynote.app",
"productName": "Capy-note",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"electron/**/*",
"public/**/*"
],
"win": {
"target": "nsis",
"artifactName": "${productName}-${version}-Windows.${ext}",
"icon": "public/icon.ico"
},
"mac": {
"target": "dmg",
"artifactName": "${productName}-${version}-macOS.${ext}",
"icon": "public/icon.png"
},
"linux": {
"target": "AppImage",
"artifactName": "${productName}-${version}-Linux.${ext}",
"icon": "public/icon.png"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"icon": "public/icon.png"
}
}