-
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.13 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.13 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
{
"name": "compass-card",
"version": "3.4.0",
"type": "module",
"description": "Lovelace compass-card",
"keywords": [
"home-assistant",
"homeassistant",
"hass",
"automation",
"lovelace",
"custom-cards"
],
"module": "compass-card.js",
"repository": "git@github.com:custom_cards/compass-card.git",
"author": "Tom van Swam <tom@vanswam.com>",
"license": "MIT",
"dependencies": {
"@mdi/js": "^7.4.47",
"home-assistant-js-websocket": "^9.6.0",
"lit": "^3.3.2",
"superstruct": "^2.0.2"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/eslint-parser": "^7.28.6",
"@babel/plugin-proposal-decorators": "^7.29.0",
"@babel/plugin-transform-class-properties": "^7.28.6",
"@eslint/css": "^0.14.1",
"@eslint/js": "^9.39.2",
"@eslint/json": "^1.2.0",
"@eslint/markdown": "^7.5.1",
"@rollup/plugin-babel": "^6.1.0",
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@typescript-eslint/eslint-plugin": "^8.59.1",
"@typescript-eslint/parser": "^8.59.2",
"eslint": "^9.39.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-lit": "^2.3.1",
"globals": "^17.6.0",
"jiti": "^2.7.0",
"rollup": "^4.60.3",
"rollup-plugin-ignore": "^1.0.10",
"rollup-plugin-serve": "^3.0.0",
"rollup-plugin-server": "^0.7.0",
"rollup-plugin-typescript2": "^0.37.0",
"typescript-eslint": "^8.59.2"
},
"resolutions": {
"lit": "^2.1.2",
"lit-html": "2.1.2",
"lit-element": "3.1.2",
"@lit/reactive-element": "1.2.1"
},
"scripts": {
"start": "rollup -c --watch",
"build": "npm run lint && npm run clean:npm && npm run rollup",
"lint": "eslint",
"lint:fix": "eslint --fix",
"rollup": "rollup -c",
"clean:dist": "rm -rf dist",
"clean:node": "rm -rf node_modules",
"clean:lock": "rm -rf package-lock.json",
"clean:npm": "npm cache verify",
"clean": "npm run clean:dist && npm run clean:node && npm run clean:npm && npm run clean:lock",
"update": "npx npm-check-updates -i"
}
}