-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.17 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
{
"name": "synapse",
"private": true,
"version": "0.1.0",
"type": "module",
"description": "A privacy-first Chrome extension that passively builds a searchable knowledge graph from your browsing.",
"scripts": {
"dev": "vite",
"build": "node scripts/sync-local-ml-assets.mjs && node scripts/generate-icons.mjs && tsc --noEmit && vite build",
"preview": "vite preview",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"icons": "node scripts/generate-icons.mjs",
"ml-assets": "node scripts/sync-local-ml-assets.mjs"
},
"dependencies": {
"@mozilla/readability": "^0.5.0",
"@xenova/transformers": "^2.17.2",
"dexie": "^4.0.8",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-force-graph-2d": "^1.25.5"
},
"devDependencies": {
"@crxjs/vite-plugin": "^2.0.0-beta.25",
"@types/chrome": "^0.0.268",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.19",
"fake-indexeddb": "^6.2.3",
"postcss": "^8.4.39",
"sharp": "^0.34.5",
"tailwindcss": "^3.4.6",
"typescript": "^5.5.3",
"vite": "^5.3.4",
"vitest": "^4.1.4"
}
}