-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.03 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
31
32
33
34
35
36
37
38
{
"name": "minimal-cast-sender",
"version": "1.0.0",
"description": "A minimalist Chromecast Sender for the Web.",
"keywords": [
"chromecast",
"sender",
"svelte",
"video",
"cast"
],
"homepage": "https://github.com/joaopaulovieira/minimal-cast-sender",
"bugs": {
"url": "https://github.com/joaopaulovieira/minimal-cast-sender/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": "Joao Paulo Vieira <[email protected]>",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"start": "sirv public --no-clear",
"deploy": "npm run build && npx gh-pages -d public/"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"rollup": "^2.56.0",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-terser": "^7.0.2",
"svelte": "^3.42.1"
},
"dependencies": {
"sirv-cli": "^1.0.12"
}
}