-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.28 KB
/
package.json
File metadata and controls
65 lines (65 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
{
"name": "adaptive-cover-pro-card",
"version": "2.5.1",
"description": "Custom Lovelace card for the Adaptive Cover Pro Home Assistant integration. Visualizes sun/window geometry, the full pipeline decision trace, and live cover positions with inline controls.",
"keywords": [
"home-assistant",
"lovelace",
"custom-card",
"hacs",
"adaptive-cover-pro"
],
"author": "Jason Rhubottom <jason@rhusoft.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jrhubott/adaptive-cover-pro-card.git"
},
"bugs": {
"url": "https://github.com/jrhubott/adaptive-cover-pro-card/issues"
},
"homepage": "https://github.com/jrhubott/adaptive-cover-pro-card",
"type": "module",
"main": "dist/adaptive-cover-pro-card.js",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"harness": "rollup -c harness/rollup.config.mjs -w",
"build:harness": "rollup -c harness/rollup.config.mjs",
"lint": "eslint src tests harness && prettier --check \"src/**/*.ts\" \"tests/**/*.ts\" \"harness/**/*.ts\"",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\" \"harness/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\" \"harness/**/*.ts\"",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"capture:timelapse": "node scripts/capture-timelapse.mjs",
"capture:screenshots": "node scripts/capture-screenshots.mjs",
"capture:readme-wiki": "node scripts/capture-readme-wiki.mjs"
},
"dependencies": {
"custom-card-helpers": "^2.0.0",
"lit": "^3.1.4",
"suncalc": "^1.9.0"
},
"devDependencies": {
"@mdi/js": "^7.4.47",
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^25.6.0",
"@types/suncalc": "^1.9.2",
"@typescript-eslint/eslint-plugin": "^8.59.0",
"@typescript-eslint/parser": "^8.59.0",
"eslint": "^10.2.1",
"happy-dom": "^20.9.0",
"playwright": "^1.49.0",
"prettier": "^3.3.2",
"rollup": "^4.18.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "^3.0.0",
"tslib": "^2.6.3",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
}
}