This repository was archived by the owner on Apr 7, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.75 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.75 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
{
"name": "bento-news",
"productName": "BentoNews",
"version": "0.3.1",
"description": "An AI-driven News App, 1000x faster than Google News",
"main": "./dist/main/index.js",
"author": "Terrence Ou",
"homepage": "https://github.com/terrence-ou/Bento-News",
"repository": {
"type": "git",
"url": "https://github.com/terrence-ou/Bento-News.git"
},
"scripts": {
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"start": "electron-vite preview --outDir=dist",
"dev": "electron-vite dev --outDir=dist",
"build": "npm run typecheck && electron-vite build",
"make": "electron-vite build --outDir=dist && electron-forge make",
"publish": "electron-vite build --outDir=dist && electron-forge publish",
"test:unit": "vitest",
"test": "npm run test:unit",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@radix-ui/react-checkbox": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-slot": "^1.1.0",
"ai-fetcher": "^0.3.5",
"axios": "^1.7.7",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"jotai": "^2.10.3",
"lucide-react": "^0.454.0",
"react-markdown": "^9.0.1",
"react-router-dom": "^6.28.0",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"update-electron-app": "^3.1.0"
},
"devDependencies": {
"@electron-forge/cli": "^7.6.0",
"@electron-forge/maker-dmg": "^7.6.0",
"@electron-forge/maker-zip": "^7.6.0",
"@electron-forge/publisher-github": "^7.6.0",
"@electron-toolkit/eslint-config-prettier": "^2.0.0",
"@electron-toolkit/eslint-config-ts": "^1.0.1",
"@electron-toolkit/preload": "^3.0.1",
"@electron-toolkit/tsconfig": "^1.0.1",
"@electron-toolkit/utils": "^3.0.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.14",
"@types/node": "^18.19.9",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^2.1.8",
"autoprefixer": "^10.4.20",
"dotenv": "^16.4.7",
"electron": "^32.2.5",
"electron-vite": "^2.0.0",
"eslint-plugin-react": "^7.33.2",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.47",
"prettier": "^3.2.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwindcss": "^3.4.14",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vitest": "^2.1.8"
}
}