-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.67 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
{
"name": "@easy-vite/plugin-html-monorepo",
"version": "5.0.1",
"private": true,
"homepage": "https://github.com/easy-vite/plugin-html/tree/master/#readme",
"bugs": {
"url": "https://github.com/easy-vite/plugin-html/issues"
},
"license": "MIT",
"author": "@easy-vite",
"repository": {
"type": "git",
"url": "https://github.com/easy-vite/plugin-html"
},
"scripts": {
"build:core": "pnpm --filter @easy-vite/plugin-html build",
"dev:basic": "pnpm build:core && pnpm --parallel --filter @easy-vite/plugin-html --filter playground-basic run dev",
"dev:mpa": "pnpm build:core && pnpm --parallel --filter @easy-vite/plugin-html --filter playground-map run dev",
"dev:entry": "pnpm build:core && pnpm --parallel --filter @easy-vite/plugin-html --filter playground-entry run dev",
"dev:base": "pnpm build:core && pnpm --parallel --filter @easy-vite/plugin-html --filter playground-base run dev",
"lint": "oxlint .",
"lint:fix": "oxlint . --fix",
"format": "oxfmt .",
"format:check": "oxfmt . --check",
"prepare": "husky",
"preinstall": "npx only-allow pnpm",
"test": "vitest run"
},
"devDependencies": {
"@commitlint/cli": "^21.2.2",
"@commitlint/config-conventional": "^21.2.2",
"@types/node": "^26.2.0",
"husky": "^9.1.7",
"lint-staged": "^17.3.0",
"oxfmt": "^0.64.0",
"oxlint": "^1.79.0",
"typescript": "^6.0.3",
"vite": "^8.2.2",
"vitest": "^4.1.11"
},
"lint-staged": {
"*.{ts,tsx,vue,js,mjs,cjs}": [
"oxfmt --write",
"oxlint --fix"
],
"*.md": [
"oxfmt --write"
]
},
"engines": {
"node": ">=20.19"
},
"packageManager": "pnpm@11.7.0"
}