-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 1.9 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
{
"name": "ebb",
"type": "module",
"productName": "ebb",
"version": "2.14.2",
"description": "electron booru browser",
"homepage": "https://github.com/pikdum/ebb",
"main": "out/main/main.js",
"build": {
"appId": "dev.pikdum.ebb",
"win": {
"publish": [
"github"
]
},
"files": [
"out/**/*",
"!node_modules/"
],
"linux": {
"category": "Graphics",
"target": "AppImage",
"publish": [
"github"
]
}
},
"scripts": {
"build": "vite build -c vite.renderer.ts && vite build -c vite.main.ts",
"check": "biome check .",
"check-types": "tsc --noEmit",
"lint": "biome lint .",
"package": "electron-builder -wl -p never",
"package:linux": "electron-builder -l -p never",
"package:windows": "electron-builder -w -p never",
"start": "node scripts/dev.js",
"test": "vitest run",
"test:watch": "vitest watch",
"check-all": "npm run check && npm run check-types && npm run lint && npm run test"
},
"devDependencies": {
"@biomejs/biome": "2.2.7",
"@tailwindcss/typography": "0.5.19",
"@tailwindcss/vite": "4.3.2",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "5.2.0",
"babel-plugin-react-compiler": "19.1.0-rc.3",
"electron": "39.8.10",
"electron-builder": "26.15.3",
"electron-devtools-installer": "4.0.0",
"happy-dom": "20.10.6",
"lefthook": "2.1.10",
"tailwindcss": "4.3.2",
"typescript": "5.9.3",
"vite": "7.3.6",
"vitest": "4.1.10"
},
"keywords": [],
"author": {
"name": "pikdum",
"email": "pikdum@kuudere.moe"
},
"license": "MIT",
"dependencies": {
"classnames": "2.5.1",
"downshift": "9.4.0",
"electron-context-menu": "4.1.2",
"electron-updater": "6.8.9",
"html-entities": "2.6.0",
"numbro": "2.5.0",
"react": "19.2.7",
"react-dom": "19.2.7",
"react-feather": "2.0.10",
"react-markdown": "10.1.0"
}
}