-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
executable file
·47 lines (47 loc) · 1.38 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
{
"name": "alarmo_card",
"version": "1.0.0",
"description": "Alarmo card",
"main": "dist/alarmo-card.js",
"type": "module",
"scripts": {
"build": "npm run lint && npm run rollup",
"rollup": "rollup -c rollup.config.mjs",
"lint": "eslint --fix src/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nielsfaber/alarmo.git"
},
"author": "nielsfaber",
"license": "ISC",
"bugs": {
"url": "https://github.com/nielsfaber/alarmo/issues"
},
"homepage": "https://github.com/nielsfaber/alarmo#readme",
"dependencies": {
"@babel/core": "^7.25.2",
"@babel/plugin-proposal-decorators": "^7.24.7",
"@material/web": "^2.0.0",
"@mdi/js": "^7.4.47",
"@rollup/plugin-json": "^6.1.0",
"home-assistant-js-websocket": "^9.4.0",
"custom-card-helpers": "^1.9.0",
"@jridgewell/sourcemap-codec": "^1.5.0"
},
"devDependencies": {
"rollup": "^4.20.0",
"@rollup/plugin-babel": "^6.0.4",
"@babel/preset-env": "^7.25.3",
"@rollup/plugin-node-resolve": "^15.2.3",
"rollup-plugin-typescript2": "^0.36.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-commonjs": "^26.0.1",
"eslint": "^9.9.0",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-define-config": "^2.1.0",
"rimraf": "^6.0.1"
}
}