-
-
Notifications
You must be signed in to change notification settings - Fork 160
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·47 lines (47 loc) · 1.42 KB
/
package.json
File metadata and controls
executable file
·47 lines (47 loc) · 1.42 KB
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": "scheduler-card",
"version": "4.0.15",
"description": "Scheduler card for Lovelace",
"main": "dist/scheduler-card.js",
"scripts": {
"build": "npm run lint && npm run format && npm run rollup",
"rollup": "rollup -c",
"lint": "eslint src/**/*.ts --fix",
"format": "prettier --write '**/*.ts'",
"start": "rollup -c --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nielsfaber/scheduler-card.git"
},
"author": "nielsfaber",
"license": "ISC",
"bugs": {
"url": "https://github.com/nielsfaber/scheduler-card/issues"
},
"homepage": "https://github.com/nielsfaber/scheduler-card#readme",
"dependencies": {
"@formatjs/intl-utils": "^3.8.4",
"@mdi/js": "^7.4.47",
"fecha": "^4.2.3",
"home-assistant-js-websocket": "^8.0.1",
"lit": "^2.7.4",
"rollup": "^1.32.1",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-ignore": "^1.0.10",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-terser": "^5.1.2",
"rollup-plugin-typescript2": "^0.31.1",
"rollup-plugin-uglify": "^6.0.3",
"rollup-plugin-visualizer": "^4.2.0",
"typescript": "^5.8.3"
},
"devDependencies": {
"@parcel/transformer-inline-string": "^2.8.3",
"@rollup/plugin-dynamic-import-vars": "^2.1.2",
"parcel": "^2.8.3"
}
}