-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.48 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
{
"name": "vite-plugins",
"private": true,
"version": "0.0.1",
"type": "module",
"description": "vite.js plugins",
"keywords": [
"vite",
"plugin"
],
"packageManager": "[email protected]",
"scripts": {
"clean": "rimraf -rf packages/*/dist",
"build": "pnpm -r run build",
"build:page": "pnpm --filter vite-plugin-page-html run build",
"build:minify": "pnpm --filter vite-plugin-minify-html run build",
"build:vanilla": "pnpm --filter vite-plugin-vanilla run build",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:release": "changeset publish --registry https://registry.npmjs.org"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "node scripts/verifyCommit.js"
},
"lint-staged": {
"*.js": [
"prettier --write"
],
"*.ts": [
"prettier --parser=typescript --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Marinerer/vite-plugins.git"
},
"author": "Mervin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Marinerer/vite-plugins/issues"
},
"homepage": "https://github.com/Marinerer/vite-plugins#readme",
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.9",
"@types/node": "^22.8.5",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"vite": "^5.4.10"
}
}