-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.26 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
{
"name": "nest-thermostat-lit",
"version": "0.1.0",
"description": "Nest thermostat like lit element",
"main": "nest-thermostat.js",
"module": "nest-thermostat.js",
"type": "module",
"scripts": {
"start": "rollup -c --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/berrywhite96/nest-thermostat.git"
},
"keywords": [
"nest",
"thermostat",
"lit"
],
"author": "berrywhite",
"license": "MIT",
"bugs": {
"url": "https://github.com/berrywhite96/nest-thermostat/issues"
},
"homepage": "https://github.com/berrywhite96/nest-thermostat#readme",
"dependencies": {
"@rollup/plugin-commonjs": "^22.0.2",
"lit": "^2.3.0",
"postcss-preset-env": "^7.7.2",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-postcss-lit": "^2.0.0",
"rollup-plugin-serve": "^2.0.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"prettier": "^2.6.2",
"rollup": "^2.77.3",
"rollup-plugin-terser": "^7.0.2"
}
}