-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.82 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.82 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "ultra-card",
"version": "3.3.0-beta28",
"description": "Ultra Card - A modular card builder for Home Assistant",
"main": "dist/ultra-card.js",
"scripts": {
"prebuild": "node prepare-build.js",
"build": "webpack --mode production",
"build:analyze": "ANALYZE=1 webpack --mode production",
"postbuild": "cp dist/ultra-card.js . && cp dist/ultra-card.js.LICENSE.txt . 2>/dev/null; cp dist/ultra-card-panel.js . 2>/dev/null; echo 'Build artifacts copied to root'",
"build:deploy": "SKIP_HA_DEPLOY=1 npm run build && node deploy.js",
"build:release": "node scripts/release.js",
"build:prerelease": "node scripts/release.js --prerelease",
"release": "node scripts/release.js --skip-build",
"deploy": "node deploy.js",
"watch": "webpack --watch --mode development",
"watch:ha": "echo '\\n🚀 Starting HA development mode...\\n Auto-deploys to /Volumes/config on each save\\n Just refresh browser (F5) to see changes!\\n' && webpack --watch --mode development",
"dev:ha": "npm run watch:ha",
"start": "webpack serve --mode development --open",
"dev": "webpack serve --mode development --open",
"typecheck": "tsc --noEmit",
"release:check": "npm run typecheck && npm run lint && npm run test:run && npm run validate:translations && npm run prebuild && npm run build",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"validate:translations": "node scripts/validate-translations.js",
"translations:stats": "node scripts/translation-stats.js",
"sync:translations": "node prepare-build.js",
"sync:panel": "node scripts/sync-panel-to-integration.js",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage"
},
"keywords": [
"home-assistant",
"lovelace",
"card",
"modular",
"layout",
"builder"
],
"author": "WJD Designs",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/WJDDesigns/Ultra-Card"
},
"dependencies": {
"@atlaskit/pragmatic-drag-and-drop": "1.7.7",
"@atlaskit/pragmatic-drag-and-drop-hitbox": "1.1.0",
"@codemirror/autocomplete": "^6.18.3",
"@codemirror/commands": "^6.7.1",
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/language": "^6.10.6",
"@codemirror/lint": "^6.8.2",
"@codemirror/state": "^6.4.1",
"@codemirror/view": "^6.34.2",
"@lezer/highlight": "^1.2.1",
"@mdi/js": "^7.4.47",
"@tiptap/core": "3.22.1",
"@tiptap/extension-color": "3.22.1",
"@tiptap/extension-highlight": "3.22.1",
"@tiptap/extension-link": "3.22.1",
"@tiptap/extension-text-align": "3.22.1",
"@tiptap/extension-text-style": "3.22.1",
"@tiptap/extension-underline": "3.22.1",
"@tiptap/pm": "3.22.1",
"@tiptap/starter-kit": "3.22.1",
"@types/leaflet": "1.9.21",
"@types/three": "0.181.0",
"custom-card-helpers": "^1.9.0",
"dompurify": "3.3.3",
"home-assistant-js-websocket": "^8.0.1",
"leaflet": "1.9.4",
"lit": "^3.1.0",
"marked": "16.3.0",
"pako": "^2.1.0",
"qr-code-styling": "1.9.2",
"qrcode": "^1.5.4",
"swiper": "12.0.3",
"three": "0.181.1"
},
"devDependencies": {
"@types/js-yaml": "4.0.9",
"@types/node": "^20.11.0",
"@types/pako": "2.0.4",
"@typescript-eslint/eslint-plugin": "7.4.0",
"@typescript-eslint/parser": "7.4.0",
"@vitest/coverage-v8": "4.0.18",
"copy-webpack-plugin": "^13.0.0",
"css-loader": "^7.1.2",
"eslint": "8.57.0",
"eslint-config-prettier": "^10.1.1",
"file-loader": "^6.2.0",
"jsdom": "28.1.0",
"prettier": "^3.5.3",
"style-loader": "^4.0.0",
"ts-loader": "^9.4.2",
"typescript": "^5.3.3",
"vitest": "4.0.18",
"webpack": "^5.75.0",
"webpack-bundle-analyzer": "5.2.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.15.1"
}
}