-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 2 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
{
"name": "techpulse",
"version": "1.3.1",
"description": "RSS Tech News Aggregator with AI Classification",
"author": "Yacine Ayari",
"main": "out/main/index.js",
"scripts": {
"dev": "electron-vite dev -- --no-sandbox",
"build": "electron-vite build",
"preview": "electron-vite preview",
"package": "npm run build && electron-builder",
"package:win": "npm run build && npm run native:win-x64 && electron-builder --win --x64 && npm run native:host",
"package:win:arm64": "npm run build && npm run native:win-arm64 && electron-builder --win --arm64 && npm run native:host",
"package:linux": "npm run build && npm run native:host && electron-builder --linux",
"native:win-x64": "cd node_modules/better-sqlite3 && npx prebuild-install --platform win32 --arch x64 --runtime electron --target 33.3.1",
"native:win-arm64": "cd node_modules/better-sqlite3 && npx prebuild-install --platform win32 --arch arm64 --runtime electron --target 33.3.1",
"native:host": "npx electron-rebuild -f -w better-sqlite3",
"test": "vitest run",
"test:watch": "vitest",
"postinstall": "electron-rebuild -f -w better-sqlite3"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"@electron-toolkit/utils": "^3.0.0",
"@tanstack/react-virtual": "^3.13.21",
"better-sqlite3": "^11.9.0",
"node-cron": "^3.0.3",
"rss-parser": "^3.13.0",
"win-ca": "^3.5.1"
},
"devDependencies": {
"@electron-toolkit/tsconfig": "^1.0.1",
"@electron/rebuild": "^3.7.1",
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.0.0",
"@types/node-cron": "^3.0.11",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.21",
"electron": "33.3.1",
"electron-builder": "^25.1.8",
"electron-vite": "^2.3.0",
"postcss": "^8.5.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3",
"vite": "^5.4.14",
"vitest": "^4.0.18"
}
}