-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.64 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.64 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
{
"name": "react-example",
"private": true,
"version": "1.0.0",
"type": "module",
"main": "electron/main.cjs",
"scripts": {
"dev": "tsx server.ts & vite",
"build": "vite build",
"preview": "vite preview",
"clean": "rm -rf dist dist-server release",
"lint": "tsc --noEmit",
"electron:dev": "concurrently -k \"cross-env DISABLE_HMR=true tsx server.ts\" \"vite\" \"wait-on tcp:5173 && electron .\"",
"build:server": "esbuild server.ts --bundle --packages=external --platform=node --outdir=dist-server --format=esm",
"electron:build:mac": "npm run clean && npm run build && npm run build:server && electron-builder --mac",
"electron:build:win": "npm run clean && npm run build && npm run build:server && electron-builder --win --x64",
"electron:build:all": "npm run clean && npm run build && npm run build:server && electron-builder --mac && electron-builder --win --x64"
},
"build": {
"appId": "com.autoblog.app",
"productName": "AutoBlog",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"dist-server/**/*",
"electron/main.cjs"
],
"extraResources": [
{
"from": "node_modules/playwright",
"to": "app.asar.unpacked/node_modules/playwright"
},
{
"from": "node_modules/playwright-core",
"to": "app.asar.unpacked/node_modules/playwright-core"
}
],
"mac": {
"category": "public.app-category.productivity",
"icon": "assets/icon.icns",
"target": [
"dmg"
]
},
"win": {
"icon": "assets/icon.ico",
"target": "nsis"
}
},
"dependencies": {
"@google/genai": "^1.29.0",
"@tailwindcss/vite": "^4.1.14",
"@vitejs/plugin-react": "^5.0.4",
"axios": "^1.13.6",
"better-sqlite3": "^12.4.1",
"cheerio": "^1.2.0",
"clsx": "^2.1.1",
"cors": "^2.8.6",
"dotenv": "^17.3.1",
"express": "^4.22.1",
"lucide-react": "^0.546.0",
"motion": "^12.23.24",
"multer": "^2.0.2",
"playwright": "^1.58.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^10.1.0",
"tailwind-merge": "^3.5.0",
"vite": "^6.2.0",
"youtube-transcript": "^1.2.1"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^4.17.25",
"@types/multer": "^2.0.0",
"@types/node": "^22.14.0",
"autoprefixer": "^10.4.21",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"electron": "^40.6.1",
"electron-builder": "^26.8.1",
"esbuild": "^0.27.3",
"tailwindcss": "^4.1.14",
"tsx": "^4.21.0",
"typescript": "~5.8.2",
"vite": "^6.2.0",
"wait-on": "^9.0.4"
}
}