-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 921 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 921 Bytes
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
{
"name": "backgroundzero",
"version": "1.0.0",
"description": "Desktop app for removing image backgrounds",
"main": "./out/main/index.js",
"author": "",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"preview": "electron-vite preview",
"package": "electron-vite build && electron-builder --config electron-builder.yml",
"lint": "tsc --noEmit"
},
"dependencies": {
"@imgly/background-removal-node": "^1.4.5",
"electron-store": "^10.0.0"
},
"devDependencies": {
"@tailwindcss/vite": "^4.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.0",
"electron": "^33.0.0",
"electron-builder": "^25.0.0",
"electron-vite": "^3.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwindcss": "^4.0.0",
"typescript": "^5.7.0"
}
}