-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.19 KB
/
package.json
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
{
"name": "ebb",
"type": "module",
"productName": "ebb",
"version": "2.9.0",
"description": "electron booru browser",
"homepage": "https://github.com/pikdum/ebb",
"main": ".vite/build/main.js",
"build": {
"appId": "dev.pikdum.ebb",
"win": {
"publish": ["github"]
},
"linux": {
"category": "Graphics",
"target": "AppImage",
"publish": ["github"]
}
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest watch",
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"lint": "biome lint .",
"check": "biome check .",
"build": "rm -rf dist/ out/ && npm run package -- -p linux,win32 && electron-builder -wl -p never",
"build:linux": "rm -rf dist/ out/ && npm run package -- -p linux && electron-builder -l -p never",
"build:windows": "rm -rf dist/ out/ && npm run package -- -p win32 && electron-builder -w -p never",
"check-types": "tsc --noEmit"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@electron-forge/cli": "7.7.0",
"@electron-forge/maker-deb": "7.7.0",
"@electron-forge/maker-rpm": "7.7.0",
"@electron-forge/maker-squirrel": "7.7.0",
"@electron-forge/maker-zip": "7.7.0",
"@electron-forge/plugin-auto-unpack-natives": "7.7.0",
"@electron-forge/plugin-fuses": "7.7.0",
"@electron-forge/plugin-vite": "7.7.0",
"@electron/fuses": "1.8.0",
"@tailwindcss/typography": "0.5.16",
"@tailwindcss/vite": "4.0.8",
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"@vitejs/plugin-react": "4.3.4",
"autoprefixer": "10.4.20",
"babel-plugin-react-compiler": "beta",
"electron": "34.2.0",
"electron-builder": "25.1.8",
"lefthook": "1.11.0",
"tailwindcss": "4.0.8",
"ts-node": "10.9.2",
"typescript": "5.7.3",
"vite": "6.2.0",
"vitest": "3.0.7"
},
"keywords": [],
"author": {
"name": "pikdum",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"classnames": "2.5.1",
"downshift": "9.0.8",
"electron-context-menu": "4.0.5",
"electron-updater": "6.3.9",
"html-entities": "2.5.2",
"numbro": "2.5.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-feather": "2.0.10",
"react-markdown": "9.1.0"
}
}