forked from esphome/devices.esphome.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.23 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
{
"name": "devices.esphome.io",
"private": true,
"version": "3.0.0",
"description": "This website is a repository of device configuration templates and setup guides for devices running ESPHome firmware.",
"author": "",
"license": "GPL-3.0",
"type": "module",
"engines": {
"node": ">=22.12.0",
"npm": ">=9.6.5"
},
"scripts": {
"dev": "npm run validate-devices && astro dev --host",
"build": "npm run validate-devices && astro build",
"preview": "astro preview",
"validate-devices": "tsx scripts/validate-devices.ts && tsx scripts/validate-yaml-configs.ts",
"validate-yaml": "tsx scripts/validate-yaml-configs.ts",
"extract-yaml": "tsx scripts/extract-inline-yaml.ts",
"extract-yaml:check": "tsx scripts/extract-inline-yaml.ts --check",
"check-links": "tsx scripts/check-links.ts",
"wrap-markdown": "tsx scripts/wrap-markdown-lines.ts",
"lint-frontmatter": "tsx scripts/lint-frontmatter.ts"
},
"dependencies": {
"@astrojs/markdown-remark": "^7.2.1",
"@astrojs/sitemap": "^3.7.3",
"@astrojs/starlight": "^0.41.3",
"astro": "^7.0.7",
"gray-matter": "^4.0.3",
"sharp": "^0.35.3"
},
"devDependencies": {
"@types/node": "^26.1.1",
"tsx": "^4.23.1"
}
}