-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.82 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
{
"name": "list-dock",
"private": true,
"version": "1.7.2",
"type": "module",
"scripts": {
"dev": "vite",
"dev:web": "cross-env VITE_BUILD_TARGET=web vite --host",
"dev:extension": "cross-env VITE_BUILD_TARGET=extension vite --host",
"build": "tsc -b && pnpm run build:web && pnpm run build:extension",
"build:extension": "cross-env VITE_BUILD_TARGET=extension vite build",
"build:web": "cross-env VITE_BUILD_TARGET=web vite build",
"lint": "eslint .",
"preview": "vite preview",
"preview:web": "vite preview --outDir dist-web",
"release": "release-it",
"version": "node scripts/bump-manifest.js && git add manifest.json",
"version:show": "node -p \"require('./package.json').version\""
},
"dependencies": {
"clsx": "^2.1.1",
"firebase": "^12.12.1",
"framer-motion": "^12.23.26",
"fuse.js": "^7.1.0",
"lucide-react": "^0.562.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-hot-toast": "^2.6.0",
"tailwind-merge": "^3.4.0",
"uuid": "^13.0.0",
"zustand": "^5.0.9"
},
"devDependencies": {
"@crxjs/vite-plugin": "2.0.0-beta.33",
"@eslint/js": "^9.39.1",
"@matrix-rex/release-tool": "^1.3.0",
"@tailwindcss/vite": "^4.1.18",
"@types/chrome": "^0.1.32",
"@types/node": "^24.10.1",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@types/uuid": "^11.0.0",
"@vitejs/plugin-react": "^5.1.1",
"autoprefixer": "^10.4.23",
"cross-env": "^10.1.0",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.18",
"typescript": "~5.9.3",
"typescript-eslint": "^8.46.4",
"vite": "^7.2.4",
"vite-plugin-pwa": "^1.2.0",
"vite-plugin-qrcode": "^0.4.1"
}
}