-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.03 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 3.03 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
92
93
94
95
96
97
98
99
{
"name": "feedzero",
"version": "0.12.0",
"description": "Privacy-first RSS reader",
"license": "AGPL-3.0-or-later",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "vite --port 3000",
"build": "vite build",
"build:api": "node scripts/build-api.js",
"build:extension": "node scripts/build-extension.js",
"build:all": "vite build && node scripts/build-api.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"serve": "node --import tsx server.ts",
"docs:tier-matrix": "tsx scripts/generate-tier-matrix-doc.ts",
"check-env": "tsx scripts/check-env.ts",
"prepare": "husky || true"
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.3.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/chrome": "^0.1.42",
"@types/node": "^25.9.1",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.2",
"@vitest/coverage-v8": "^3.0.0",
"fake-indexeddb": "^6.2.5",
"happy-dom": "^20.8.4",
"husky": "^9.1.7",
"lint-staged": "^17.0.5",
"rollup-plugin-visualizer": "^7.0.1",
"shadcn": "^4.8.2",
"tailwindcss": "^4.1.18",
"tw-animate-css": "^1.4.0",
"typescript": "^6.0.3",
"vite": "^8.0.14",
"vitest": "^3.0.0"
},
"private": true,
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@hono/node-server": "^2.0.4",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-hover-card": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-toggle": "^1.1.10",
"@radix-ui/react-toggle-group": "^1.1.11",
"@radix-ui/react-tooltip": "^1.2.8",
"@tanstack/react-virtual": "^3.13.25",
"@upstash/redis": "^1.38.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"defuddle": "^0.18.1",
"dexie": "^4.4.2",
"dompurify": "^3.4.5",
"feedsmith": "^2.9.4",
"hash-wasm": "^4.12.0",
"hono": "^4.12.23",
"lucide-react": "^1.16.0",
"marked": "^18.0.4",
"next-themes": "^0.4.6",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-resizable-panels": "^4.11.2",
"react-router": "^7.15.1",
"sonner": "^2.0.7",
"stripe": "^22.1.1",
"tailwind-merge": "^3.6.0",
"tsx": "^4.22.3",
"vaul": "^1.1.2",
"zustand": "^5.0.13"
},
"optionalDependencies": {
"@vercel/blob": "^2.4.0"
}
}