-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.54 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.54 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "halo-cms-docs",
"version": "1.0.0",
"private": true,
"description": "Share tips related to Halo CMS.",
"keywords": [
"halo"
],
"homepage": "https://github.com/MHCGA",
"license": "MIT",
"author": "MHCGA",
"repository": {
"type": "git",
"url": "https://github.com/MHCGA/halo-cms-docs"
},
"type": "module",
"scripts": {
"build": "pnpm run \"/:build$/\"",
"docs:build": "vitepress build docs",
"docs:preview": "pnpm run docs:build && vitepress preview docs",
"docs:watch": "vitepress dev docs",
"fmt": "pnpm run \"/^fmt:/\"",
"fmt:oxfmt": "oxfmt \"**/*.{json,jsonc,yaml,md,css,js,ts,vue,html}\" \".github/**/*.{yml,js,json}\"",
"lint": "pnpm run \"/^lint:/\"",
"lint:autocorrect": "autocorrect --fix",
"lint:md": "markdownlint --fix \"**/*.md\" --ignore-path .gitignore",
"lint:oxlint+eslint": "oxlint --type-aware --fix && eslint --fix",
"lint:style": "stylelint --fix \"**/*.{css,vue}\" \"docs/.vitepress/**/*.{css,vue}\" --ignore-path .gitignore",
"migrate:oxlint": "pnpm dlx @oxlint/migrate --type-aware --with-nursery && pnpm run fmt",
"preinstall": "npx only-allow pnpm",
"watch": "pnpm run \"/:watch$/\""
},
"devDependencies": {
"@eslint/compat": "^2.0.5",
"@eslint/js": "^10.0.1",
"@giscus/vue": "^3.1.1",
"@nolebase/vitepress-plugin-highlight-targeted-heading": "^2.18.2",
"@types/node": "^25.6.0",
"@typescript-eslint/parser": "^8.58.1",
"autocorrect-node": "^2.14.0",
"browserslist": "^4.28.2",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-oxlint": "^1.59.0",
"eslint-plugin-vue": "^10.8.0",
"globals": "^17.5.0",
"lightningcss": "^1.32.0",
"markdownlint-cli": "^0.48.0",
"oxfmt": "^0.45.0",
"oxlint": "^1.59.0",
"oxlint-tsgolint": "^0.21.0",
"pagefind": "^1.5.2",
"stylelint": "^17.8.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-recommended-vue": "^1.6.1",
"stylelint-config-standard": "^40.0.0",
"stylelint-order": "^8.1.1",
"typescript-eslint": "^8.58.1",
"vitepress": "2.0.0-alpha.17",
"vitepress-plugin-pagefind": "^0.4.19",
"vitepress-plugin-rss": "^0.4.3",
"vue": "^3.5.32",
"vue-eslint-parser": "^10.4.0"
},
"overrides": {
"vite": "npm:rolldown-vite@^7.3.1"
},
"browserslist": [
"defaults",
"Safari >= 16.4",
"Chrome >= 111",
"Firefox >= 128"
],
"engines": {
"node": ">=24",
"pnpm": "^10.33.0"
},
"packageManager": "pnpm@10.33.0"
}