This repository has been archived by the owner on Oct 16, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.83 KB
/
package.json
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
{
"name": "vite-plugin-template-monorepo",
"private": true,
"license": "MIT",
"scripts": {
"dev": "pnpm --dir packages/vite-plugin-template dev",
"build": "pnpm -r build",
"test": "pnpm -r --workspace-concurrency=1 test",
"lint": "eslint --ignore-path .gitignore '**/*.{js,ts,html,md}'",
"lint:fix": "pnpm run lint --fix",
"format": "prettier --ignore-path .gitignore '**/*.{css,scss,html,js,ts,md}' --check",
"format:fix": "pnpm run format --write",
"fixup": "run-s lint:fix format:fix",
"release": "pnpm run build && pnpm changeset publish",
"prepare": "husky install",
"setup": "node scripts/initial-setup.cjs"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@changesets/get-github-info": "^0.5.2",
"@svitejs/changesets-changelog-github-compact": "^1.1.0",
"@types/node": "^18.16.16",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"c8": "^7.14.0",
"cross-env": "^7.0.3",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"tsup": "^6.7.0",
"typescript": "^5.1.3",
"vite": "^3.2.7",
"vitest": "^0.32.0"
},
"lint-staged": {
"*.{js,ts,html,md}": "eslint --fix",
"*.{css,scss,html,js,ts,md}": [
"prettier --write"
]
},
"packageManager": "[email protected]",
"engines": {
"pnpm": "^7.8.0",
"yarn": "forbidden, use pnpm",
"npm": "forbidden, use pnpm",
"node": "^14.18.0 || ^16 || >= 18"
},
"pnpm": {
"overrides": {
"@svitejs/vite-plugin-template": "workspace:*"
}
}
}