-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.83 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.83 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
{
"name": "@vuepress/ecosystem",
"private": true,
"type": "module",
"scripts": {
"build": "pnpm run -r --stream build && pnpm run build:style",
"build:style": "pnpm -r --parallel --stream run style",
"bundle": "cross-env NODE_ENV=production pnpm run -r --stream build && pnpm run build:style",
"clean": "pnpm -r --parallel --stream run clean",
"format": "oxfmt",
"lint": "oxlint --fix --report-unused-disable-directives --deny-warnings && stylelint **/*.{css,html,scss,vue} --fix && oxfmt",
"lint:check": "oxlint --report-unused-disable-directives --deny-warnings && stylelint **/*.{css,html,scss,vue} && oxfmt --check",
"pkg:check-update": "pnpm dlx npm-check-updates",
"pkg:update": "pnpm up -r",
"prepare": "husky",
"release": "pnpm run release:check && pnpm run release:version && pnpm run release:publish",
"release:check": "pnpm run lint && pnpm run clean && pnpm run bundle && pnpm run test",
"release:publish": "lerna publish --dist-tag next from-package --yes && unrun scripts/syncNpmmirror.ts",
"release:version": "lerna version",
"test": "pnpm run test:unit && pnpm run test:e2e",
"test:cov": "cross-env TZ=Etc/UTC vitest run --coverage",
"test:e2e": "pnpm run --filter ecosystem-e2e e2e:dev && pnpm run --filter ecosystem-e2e e2e:build",
"test:unit": "cross-env TZ=Etc/UTC vitest run",
"type:check": "tsc --noEmit"
},
"devDependencies": {
"@lerna-lite/cli": "^5.6.1",
"@lerna-lite/publish": "^5.6.1",
"@tsdown/css": "^0.23.0",
"@types/node": "^22.20.1",
"@types/webpack-env": "^1.18.8",
"@vitest/coverage-istanbul": "^5.0.0",
"cross-env": "^10.1.0",
"cssnano": "^9.0.3",
"html-minifier-terser": "^7.2.0",
"husky": "^9.1.7",
"lightningcss": "^1.33.0",
"nano-staged": "^1.0.2",
"oxc-config-hope": "^0.3.13",
"oxfmt": "^0.67.0",
"oxlint": "^1.82.0",
"oxlint-tsgolint": "^7.0.2001",
"picocolors": "^1.1.1",
"postcss-html": "^2.0.0",
"publint": "^0.3.24",
"rimraf": "^6.1.3",
"sass-embedded": "catalog:",
"serve": "^14.2.6",
"stylelint": "^17.15.0",
"stylelint-config-hope": "^12.1.0",
"stylelint-config-html": "^2.0.0",
"tsconfig-vuepress": "^7.0.0",
"tsdown": "^0.23.0",
"typescript": "^6.0.3",
"uglify-js": "^3.19.3",
"unrun": "^0.3.1",
"vite": "^8.2.2",
"vitest": "^5.0.0",
"vuepress": "catalog:"
},
"nano-staged": {
"**/*": "oxfmt --no-error-on-unmatched-pattern",
"*.{cjs,js,ts,vue}": "oxlint --fix --deny-warnings --report-unused-disable-directives",
"*.{css,scss,html,vue}": "stylelint --fix"
},
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": "12.3.4",
"onFail": "download"
},
"runtime": {
"name": "node",
"version": "^22.22.0 || ^24.18.0 || ^26.3.0",
"onFail": "error"
}
}
}