-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.08 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.08 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
{
"name": "@jetify/docs",
"version": "0.0.0-dev",
"private": true,
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "https://github.com/jetify-com/docs.git"
},
"sideEffects": false,
"type": "module",
"scripts": {
"dev": "mint dev",
"fmt": "prettier --write .",
"lint": "mint broken-links",
"mint": "mint",
"vale": "devbox run vale",
"prepare": "husky"
},
"packageManager": "pnpm@10.26.0",
"engines": {
"node": ">=22",
"pnpm": ">=8"
},
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"mdx2vast": "^0.3.1",
"mint": "^4.2.310",
"prettier": "^3.8.1"
},
"pnpm": {
"overrides": {
"axios": "1.12.0",
"body-parser": "1.20.3",
"cookie": "0.7.0",
"express": "4.20.0",
"lodash": "4.17.23",
"path-to-regexp": "0.1.12",
"tar": "6.2.1",
"qs": "6.14.1",
"send": "0.19.0",
"serve-static": "1.16.0",
"zod": "3.22.3"
}
},
"lint-staged": {
"*.{css,ya?ml}": "prettier --write",
"*.{md,mdx}": "prettier --write"
}
}