-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.12 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
{
"name": "ha-teamtracker-scoreboard-card",
"version": "0.0.0-dev",
"type": "module",
"scripts": {
"build": "rollup -c",
"build:prod": "NODE_ENV=production rollup -c",
"dev": "rollup -c --watch",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"check": "biome check --write src/ test/",
"typecheck": "tsc --noEmit",
"check:ci": "tsc --noEmit && biome check src/ test/ && prettier --check \"**/*.md\"",
"format:md": "prettier --write \"**/*.md\"",
"prepare": "git config core.hooksPath .githooks 2>/dev/null || true"
},
"devDependencies": {
"@biomejs/biome": "^2.4.16",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^12.3.0",
"@vitest/coverage-v8": "^4.1.8",
"ha-card-shared": "github:marcintk/ha-card-shared#v1.0.0",
"jsdom": "^28.1.0",
"prettier": "^3.8.3",
"rollup": "^4.0.0",
"tslib": "^2.8.1",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
},
"dependencies": {
"lit": "^3.3.3"
},
"prettier": "ha-card-shared/prettier.config.json"
}