-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 811 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 811 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
{
"name": "github-time-tracker",
"private": true,
"version": "1.0.2",
"type": "module",
"scripts": {
"watch": "nodemon --watch src --ext js,jsx,html,css,json --exec \"npm run build\"",
"build:popup": "vite build --config vite.config.popup.js",
"build:background": "vite build --config vite.config.background.js",
"build:content": "vite build --config vite.config.content.js",
"build": "npm run build:popup && npm run build:background && npm run build:content"
},
"dependencies": {
"@preact/preset-vite": "^2.5.0",
"@tailwindcss/vite": "^4.1.6",
"preact": "^10.19.3",
"tailwindcss": "^4.1.6"
},
"devDependencies": {
"nodemon": "^3.1.10",
"vite": "^6.3.5",
"vite-plugin-css-injected-by-js": "^3.5.2",
"vite-plugin-static-copy": "^2.3.1"
}
}