-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 2.17 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "soundtouchplus-card",
"version": "",
"description": "",
"main": "src/main.js",
"module": "src/main.js",
"repository": "",
"author": "Todd Lucas",
"license": "MIT",
"dependencies": {
"@mdi/js": "^7.4.47",
"@vibrant/color": "^3.2.1-alpha.1",
"@vibrant/core": "^3.2.1-alpha.1",
"@vibrant/generator-default": "^3.2.1-alpha.1",
"@vibrant/image": "^3.2.1-alpha.1",
"@vibrant/image-browser": "^3.2.1-alpha.1",
"@vibrant/image-node": "^3.2.1-alpha.1",
"@vibrant/quantizer-mmcq": "^3.2.1-alpha.1",
"custom-card-helpers": "^1.9.0",
"lit": "^2.8.0",
"node-vibrant": "^3.2.1-alpha.1",
"url": "^0.11.4"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/jest": "27.4.1",
"@types/query-selector-shadow-dom": "^1.0.4",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.7.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"jest": "27.5.1",
"prettier": "^3.2.5",
"rollup": "^2.79.1",
"rollup-plugin-serve": "^2.0.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^4.9.5"
},
"scripts": {
"start": "rollup -c --watch",
"build": "npm run lint && npm run rollup && npm run deploy-vm",
"buildgithub": "npm run lint && npm run rollup",
"deploy-prod": "npm run build && cp dist/soundtouchplus-card.js ~/homeassistant/www/community/soundtouchplus-card/soundtouchplus-card.js",
"deploy-vm": "xcopy \"dist\\soundtouchplus-card.*\" \"\\\\homeassistantvm\\config\\www\" /Y /-I",
"lint": "eslint src/*.ts",
"rollup": "rollup -c",
"clean": "npm run clean_delfiles && npm run clean_deldirs",
"clean_delfiles": "del /S /Q \"node_modules\\.cache\\rollup-plugin-typescript2\\*.*\"",
"clean_deldirs": "for /d %G in (\"node_modules\\.cache\\rollup-plugin-typescript2\\rpt2_*\") do rd /s /q \"%~G\""
}
}