-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.71 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
{
"name": "esphome.io",
"version": "2.0.0",
"description": "ESPHome Documentation",
"type": "module",
"engines": {
"node": "^22.22.1 || >=24"
},
"scripts": {
"dev": "astro dev --host",
"build": "astro build",
"preview": "astro preview",
"serve": "astro build && astro preview --host",
"lint": "node script/lint.mjs",
"lint:js": "eslint .",
"lint:md": "markdownlint \"**/*.md\"",
"format": "prettier --write \"**/*.{ts,tsx,js,mjs,cjs,astro,css}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,mjs,cjs,astro,css}\"",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx,js,mjs,cjs,astro,css}": "prettier --write",
"*.md": "markdownlint"
},
"dependencies": {
"@astrojs/starlight": "^0.41.3",
"astro": "^7.0.7",
"github-slugger": "^2.0.0",
"katex": "^0.17.0",
"micromark": "^4.0.2",
"rehype-katex": "^7.0.1",
"remark-github-blockquote-alert": "^2.1.0",
"remark-math": "^6.0.0",
"sharp": "^0.35.2",
"starlight-blog": "^0.27.0",
"unist-util-visit": "^5.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/esphome/esphome.io.git"
},
"license": "CC-BY-4.0",
"bugs": {
"url": "https://github.com/esphome/esphome.io/issues"
},
"homepage": "https://esphome.io",
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.6.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-astro": "^2.1.1",
"globals": "^17.6.0",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"lint-staged": "^17.0.8",
"markdownlint-cli": "^0.49.0",
"prettier": "^3.9.5",
"prettier-plugin-astro": "^0.14.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.63.0"
}
}