-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 1.96 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
60
61
62
63
64
65
66
67
68
69
{
"name": "myjdownloader-card",
"version": "1.5.0",
"description": "This Lovelace custom card displays downloads information provided by the MyJDownloader Integration",
"author": "Luis Zurro <luiszurrodecos@gmail.com>",
"homepage": "https://github.com/Nyaran/myjdownloader-card#readme",
"repository": "git@github.com:Nyaran/myjdownloader-card.git",
"bugs": {
"url": "https://github.com/Nyaran/myjdownloader-card/issues"
},
"funding": [
{
"type": "ko-fi",
"url": "https://ko-fi.com/nyaran"
},
{
"type": "Buy me a coffee",
"url": "https://www.buymeacoffee.com/nyaran"
}
],
"license": "MIT",
"keywords": [
"home-assistant",
"homeassistant",
"hass",
"hacs",
"hacs-default",
"lovelace",
"custom-cards",
"myjdownloader",
"jdownloader"
],
"type": "module",
"module": "myjdownloader-card.js",
"scripts": {
"clean": "rimraf dist",
"start": "run-s 'rollup -- --watch'",
"prebuild": "node -p \"'export const CARD_VERSION = \\'' + require('./package.json').version + '\\';'\" > src/version.ts",
"build": "run-s clean lint rollup",
"postbuild": "node -p \"'export const CARD_VERSION = \\'0.0.0\\';'\" > src/version.ts",
"rollup": "rollup -c rollup.config.js",
"lint": "eslint --max-warnings 0 ./src"
},
"dependencies": {
"@lit-labs/scoped-registry-mixin": "1.0.3",
"custom-card-helpers": "1.9.0",
"lit": "3.2.1"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "7.25.9",
"@eslint/js": "9.20.0",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-commonjs": "28.0.2",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "16.0.0",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "12.1.2",
"@types/eslint__js": "8.42.3",
"eslint": "9.20.1",
"eslint-plugin-chai-friendly": "1.0.1",
"eslint-plugin-promise": "7.2.1",
"npm-run-all": "4.1.5",
"rimraf": "6.0.1",
"rollup": "4.34.6",
"rollup-plugin-serve": "3.0.0",
"typescript": "5.7.3",
"typescript-eslint": "8.24.0"
}
}