forked from NemesisRE/kiosk-mode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 1.18 KB
/
package.json
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
{
"name": "kiosk-mode",
"version": "1.8.3",
"description": "Hides the Home Assistant header and/or sidebar",
"main": "kiosk-mode.js",
"repository": "[email protected]:NemesisRE/kiosk-mode.git",
"author": "Steven \"NemesisRE\" Koeberich <[email protected]>",
"license": "MIT",
"scripts": {
"build": "rollup --config rollup.config.js --bundleConfigAsCjs",
"test": "tsc --noEmit",
"prepare": "yarn build",
"prepublishOnly": "yarn test",
"version": "git add .",
"postversion": "git push && git push --tags",
"copy-kiosk-mode": "copyfiles -f dist/kiosk-mode.js .hass/config/www",
"start:ha": "docker run --rm -p8123:8123 -v ${PWD}/.hass/config:/config homeassistant/home-assistant:2023.4",
"start:ha:win": "docker run --rm -p8123:8123 -v %cd%/.hass/config:/config homeassistant/home-assistant:2023.4",
"demo": "yarn build && yarn copy-kiosk-mode && yarn start:ha",
"demo:win": "yarn build && yarn copy-kiosk-mode && yarn start:ha:win"
},
"devDependencies": {
"@rollup/plugin-json": "^6.0.0",
"copyfiles": "^2.4.1",
"rollup": "^3.19.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-ts": "^3.2.0",
"typescript": "^4.9.5"
}
}