-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.6 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 2.6 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
96
97
98
99
100
101
102
103
{
"name": "paint",
"description": "A simple paint application for Linux",
"homepage": "https://paint.app",
"author": "Paint Team <info@paint.app>",
"private": true,
"version": "1.2.0",
"type": "module",
"main": "electron/main.cjs",
"scripts": {
"dev": "vite --port=3000 --host=0.0.0.0",
"build": "vite build",
"preview": "vite preview",
"clean": "rm -rf dist",
"lint": "tsc --noEmit",
"start": "cross-env NODE_ENV=development concurrently \"npm run dev\" \"wait-on http://localhost:3000 && electron .\"",
"dist": "npm run build && electron-builder",
"dist:rpm": "npm run build && electron-builder --linux rpm",
"dist:rpm:docker": "docker run --rm -v \"$PWD\":/project -w /project electronuserland/builder:18 bash -c \"npm install && npm run dist:rpm && chown -R $(id -u):$(id -g) dist-electron/ node_modules/\""
},
"dependencies": {
"@tailwindcss/vite": "^4.1.14",
"@vitejs/plugin-react": "^5.0.4",
"dotenv": "^17.2.3",
"express": "^4.21.2",
"lucide-react": "^0.546.0",
"motion": "^12.23.24",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"vite": "^6.2.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^22.14.0",
"autoprefixer": "^10.4.21",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"electron": "^42.4.1",
"electron-builder": "^26.8.1",
"tailwindcss": "^4.1.14",
"tsx": "^4.21.0",
"typescript": "~5.8.2",
"vite": "^6.2.0",
"wait-on": "^9.0.4"
},
"build": {
"appId": "com.linuxpaint.app",
"productName": "Paint",
"fileAssociations": [
{
"ext": "png",
"name": "PNG Image",
"role": "Editor"
},
{
"ext": "jpg",
"name": "JPEG Image",
"role": "Editor"
},
{
"ext": "jpeg",
"name": "JPEG Image",
"role": "Editor"
},
{
"ext": "bmp",
"name": "Bitmap Image",
"role": "Editor"
},
{
"ext": "webp",
"name": "WebP Image",
"role": "Editor"
}
],
"directories": {
"output": "dist-electron"
},
"files": [
"dist/**/*",
"electron/**/*",
"assets/**/*"
],
"linux": {
"target": [
"AppImage",
"deb",
"snap",
"pacman",
"tar.gz",
"flatpak"
],
"icon": "build/icons/linux/",
"category": "Graphics",
"maintainer": "Paint Team <info@paint.app>"
},
"flatpak": {
"runtimeVersion": "25.08",
"base": "org.electronjs.Electron2.BaseApp",
"baseVersion": "25.08"
}
}
}