-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.27 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
{
"name": "reddiq-assistant",
"description": "ReddIQ: An AI-powered assistant for Reddit that delivers instant post and comment insights. It summarizes complex threads, analyzes sentiment, and highlights key takeaways to help you navigate Reddit more efficiently.",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "node ./scripts/wxt-dev.js",
"dev:firefox": "wxt -b firefox",
"build": "wxt build",
"build:firefox": "wxt build -b firefox",
"zip": "wxt zip",
"zip:firefox": "wxt zip -b firefox",
"compile": "tsc --noEmit",
"postinstall": "wxt prepare",
"test": "vitest",
"test-ui": "vitest --ui"
},
"dependencies": {
"@tailwindcss/postcss": "^4.1.18",
"axios": "^1.13.2",
"lucide-react": "^0.562.0",
"postcss": "^8.5.6",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hot-toast": "^2.6.0",
"react-markdown": "^10.1.0",
"tailwindcss": "^4.1.18",
"vitest": "^3.1.1"
},
"devDependencies": {
"@types/chrome": "^0.1.32",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"@wxt-dev/module-react": "^1.1.2",
"typescript": "^5.6.3",
"vite": "^6.4.1",
"wxt": "^0.19.29"
},
"pnpm": {
"overrides": {
"vite": "^6.4.1"
}
}
}