-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 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
39
40
{
"name": "printwatch-card",
"version": "1.2.0",
"description": "A Home Assistant card for 3D printers",
"type": "module",
"main": "dist/printwatch-card.js",
"scripts": {
"build": "rollup -c",
"watch": "rollup -c --watch",
"lint": "eslint src/*",
"clean": "rimraf dist"
},
"keywords": [
"home-assistant",
"homeassistant",
"hacs",
"bambu-lab",
"3d-printer"
],
"author": "Steven Hubert",
"license": "MIT",
"dependencies": {
"lit": "^2.8.0",
"@lit/reactive-element": "^2.0.0",
"lit-html": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.0 || ^8.0.0",
"@babel/preset-env": "^7.20.0 || ^8.0.0",
"@rollup/plugin-babel": "^6.0.0",
"@rollup/plugin-commonjs": "^24.0.0 || ^25.0.0 || ^26.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.0 || ^16.0.0",
"@rollup/plugin-replace": "^5.0.0",
"@rollup/plugin-terser": "^0.4.0",
"eslint": "^8.0.0",
"rimraf": "^5.0.0 || ^6.0.0",
"rollup": "^3.0.0 || ^4.0.0"
}
}