-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 789 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 789 Bytes
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
{
"name": "bookmark-deck",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"build:extension": "vite build --config vite.config.extension.js",
"dev:extension": "vite build --config vite.config.extension.js --watch",
"generate-icons": "node scripts/generate-icons.js",
"pack:extension": "npm run build:extension && cd extension && zip -r ../artifacts/bookmark-deck-extension.zip . -x '*.DS_Store' -x 'icons/icon.svg'"
},
"dependencies": {
"pinia": "^3.0.4",
"vue": "^3.5.24"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.18",
"@vitejs/plugin-vue": "^6.0.1",
"sharp": "^0.34.5",
"tailwindcss": "^4.1.18",
"vite": "^7.2.4"
}
}