-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.3 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
{
"name": "hyper-light-card",
"version": "1.1.0",
"description": "A custom Lovelace card for Home Assistant that controls SignalRGB and Hypercolor lighting",
"author": "Stefanie Jane <stef@hyperbliss.tech>",
"license": "Apache 2.0",
"keywords": [
"home-assistant",
"lovelace",
"custom-card",
"signalrgb",
"hypercolor"
],
"repository": {
"type": "git",
"url": "https://github.com/hyperb1iss/hyper-light-card.git"
},
"bugs": {
"url": "https://github.com/hyperb1iss/hyper-light-card/issues"
},
"homepage": "https://github.com/hyperb1iss/hyper-light-card#readme",
"private": true,
"type": "module",
"scripts": {
"start": "vite --host",
"build": "NODE_ENV=production vite build && bun x terser target/hyper-light-card.js -o target/hyper-light-card.js --compress drop_console=false,pure_funcs=['console.debug','console.warn'] --mangle --format \"comments=false,preamble='/* Hyper Light Card v${npm_package_version} - Apache 2.0 Licensed */'\"",
"build:dev": "NODE_ENV=development vite build",
"build:hacs": "NODE_ENV=production vite build",
"dev": "bun run build:dev && bun run copy:hass",
"copy:hass": "node scripts/copy-to-hass.js",
"lint": "biome check",
"lint:fix": "biome check --write",
"format": "prettier --write 'src/**/*.{ts,js}' 'tests/**/*.{ts,js}' && biome format --write",
"format:check": "prettier --check 'src/**/*.{ts,js}' 'tests/**/*.{ts,js}'",
"typecheck": "tsc --noEmit",
"test": "vitest run --config tests/config/vitest.config.ts",
"test:watch": "vitest --config tests/config/vitest.config.ts",
"test:coverage": "vitest run --coverage --config tests/config/vitest.config.ts",
"preview": "vite preview"
},
"dependencies": {
"colorthief": "^2.6.0",
"custom-card-helpers": "^2.0.0",
"lit": "^3.3.2"
},
"devDependencies": {
"@biomejs/biome": "^2.4.14",
"@testing-library/jest-dom": "^6.9.1",
"@types/chroma-js": "^3.1.1",
"@types/node": "^25.6.0",
"@vitest/coverage-v8": "^4.1.5",
"chroma-js": "^3.2.0",
"jsdom": "^26.0.0",
"prettier": "^3.8.3",
"terser": "^5.46.2",
"tslib": "^2.8.1",
"typescript": "^6.0.3",
"vite": "^8.0.10",
"vitest": "^4.1.5"
},
"engines": {
"node": ">=24.0.0",
"bun": ">=1.3.0"
},
"packageManager": "bun@1.3.11"
}