-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.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
{
"name": "nova-browser",
"private": true,
"version": "1.0.0",
"type": "module",
"main": "dist-electron/main.cjs",
"scripts": {
"dev:web": "vite",
"build:electron": "esbuild electron/main.ts electron/preload.ts electron/webstore-preload.ts --outdir=dist-electron --platform=node --bundle --external:electron --external:@cliqz/adblocker-electron --external:cross-fetch --external:express --external:@modelcontextprotocol/sdk --format=cjs --out-extension:.js=.cjs",
"build": "tsc && vite build && npm run build:electron",
"test:e2e": "esbuild tests/runAll.ts --bundle --platform=node --outfile=dist-test/runAll.cjs && node dist-test/runAll.cjs",
"test": "npm run test:e2e",
"preview": "vite preview",
"dev": "npm run build:electron && concurrently \"vite\" \"electron .\""
},
"dependencies": {
"@cliqz/adblocker-electron": "^1.34.0",
"@mlc-ai/web-llm": "^0.2.84",
"@modelcontextprotocol/sdk": "^1.29.0",
"@mozilla/readability": "^0.6.0",
"cross-fetch": "^4.1.0",
"dompurify": "^3.4.12",
"eventsource": "^4.1.0",
"express": "^5.2.1",
"framer-motion": "^12.42.2",
"lucide-react": "^0.469.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"unzip-crx-3": "^0.2.0"
},
"devDependencies": {
"@tailwindcss/vite": "^4.3.3",
"@types/dompurify": "^3.0.5",
"@types/express": "^5.0.6",
"@types/mozilla-readability": "^0.2.1",
"@types/node": "^22.10.2",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.3.4",
"concurrently": "^9.1.0",
"electron": "^33.2.1",
"esbuild": "^0.24.2",
"tailwindcss": "^4.3.3",
"typescript": "~5.6.2",
"vite": "^6.0.5"
}
}