-
-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 2.14 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 2.14 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
{
"name": "esphome-designer-frontend",
"version": "1.0.0-rc.12.9.1",
"description": "Frontend for ESPHome Designer",
"type": "module",
"main": "index.html",
"scripts": {
"dev": "vite",
"build": "node scripts/build_frontend.cjs",
"test": "vitest run && node scripts/schema_hash.cjs --check",
"test:watch": "vitest",
"schema:check": "node scripts/schema_hash.cjs --check",
"schema:update": "node scripts/schema_hash.cjs --update",
"python:deps": "node scripts/run_python.cjs -m pip install -r requirements-dev.txt",
"python:test": "node scripts/run_python.cjs -m unittest discover -s tests_python -p \"test_*.py\"",
"lint": "eslint .",
"format": "prettier --write .",
"verify:ha": "node scripts/verify_ha_integration.cjs",
"verify:dist": "node scripts/verify_dist_fresh.cjs",
"verify:pre-push": "node scripts/pre_push_check.cjs",
"verify:pre-push:skip-hassfest": "node scripts/pre_push_check.cjs --skip-hassfest",
"release:prepare": "node scripts/release_preflight.cjs",
"release:prepare:skip-hassfest": "node scripts/release_preflight.cjs --skip-hassfest",
"typecheck": "tsc --noEmit -p tsconfig.json",
"hooks:install": "git config core.hooksPath .githooks",
"quality": "node scripts/quality_gate.cjs",
"quality:proof": "node scripts/quality_gate.cjs --json --proof-dir=tmp/proof/local",
"quality:baseline-governance": "node scripts/check_baseline_governance.cjs",
"quality:update": "node scripts/quality_gate.cjs --update-baselines",
"bench:workflow": "node scripts/benchmark_workflow.cjs",
"bench:workflow:update": "node scripts/benchmark_workflow.cjs --update-baseline",
"typecheck:base": "tsc --noEmit -p tsconfig.json",
"typecheck:strict": "tsc --noEmit -p tsconfig.strict.json"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@vitest/coverage-v8": "^1.6.1",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"jsdom": "^24.0.0",
"prettier": "^3.2.5",
"typescript": "^5.9.3",
"vite": "^5.2.0",
"vitest": "^1.4.0"
},
"dependencies": {
"js-yaml": "^4.1.1"
}
}