-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.28 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.28 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "simple-thermostat",
"version": "2.6.0",
"type": "module",
"description": "A different take on the thermostat card for Home Assistant Lovelace UI",
"main": "dist/simple-thermostat.js",
"repository": "git@github.com:nervetattoo/simple-thermostat.git",
"author": "Raymond Julin <raymond.julin@gmail.com>",
"license": "MIT",
"files": [
"dist",
"src"
],
"dependencies": {
"debounce-fn": "^6.0.0",
"lit": "^3.0.0",
"squirrelly": "^9.1.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.0",
"@semantic-release/npm": "^12.0.0",
"@size-limit/file": "^11.2.0",
"@size-limit/time": "^11.2.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.5.0",
"concurrently": "^9.2.0",
"cross-env": "^10.0.0",
"husky": "^9.1.0",
"jest": "^30.0.0",
"jest-electron": "^0.1.12",
"jest-environment-jsdom": "^30.0.0",
"postcss": "^8.5.0",
"postcss-preset-env": "^10.3.0",
"prettier": "^3.6.0",
"pretty-quick": "^4.2.0",
"rollup": "^4.52.0",
"rollup-plugin-dts": "^6.2.0",
"rollup-plugin-inject-process-env": "^1.3.1",
"rollup-plugin-minify-html-literals": "^1.2.6",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-postcss-lit": "^2.2.0",
"@rollup/plugin-terser": "^0.4.4",
"semantic-release": "^24.2.0",
"size-limit": "^11.2.0",
"ts-jest": "^29.4.0",
"tslib": "^2.8.0",
"typescript": "^5.0.0"
},
"scripts": {
"test": "jest",
"build": "cross-env NODE_ENV=production rollup -c",
"postversion": "npm run build",
"dev": "concurrently 'npm:dev:*'",
"dev:build": "tsc --watch",
"dev:test": "jest --watchAll",
"size-build": "yarn build",
"size": "size-limit",
"analyze": "size-limit --why",
"semantic-release": "semantic-release"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"prettier": {
"printWidth": 80,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"size-limit": [
{
"path": "dist/simple-thermostat.js",
"limit": "20 KB"
}
]
}