-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 863 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 863 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "fork-u-weather-aware",
"version": "3.0.0",
"description": "Fork U - Weather Aware - Weather overlay for Home Assistant with Three.js",
"type": "module",
"scripts": {
"start": "vite",
"build": "vite build",
"build:hacs": "vite build && node -e \"const fs=require('fs'),path=require('path'); fs.copyFileSync('dist/fork_u-weather_aware.js','fork_u-weather_aware.js'); if(fs.existsSync('dist/workers')){ fs.mkdirSync('workers',{recursive:true}); for(const f of fs.readdirSync('dist/workers')) fs.copyFileSync(path.join('dist/workers',f),path.join('workers',f)); }\"",
"dev": "vite build --watch",
"serve": "vite",
"screenshots": "node scripts/screenshots.js",
"preview": "vite preview"
},
"dependencies": {
"three": "^0.170.0"
},
"devDependencies": {
"vite": "^7.3.1",
"puppeteer": "^23.0.0"
}
}