-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 1.98 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
62
63
{
"name": "@vite-plugin-book/monorepo",
"private": "true",
"description": "A vite plugin to help you write a book.",
"scripts": {
"postinstall": "husky install",
"format": "lint-staged",
"build": "pnpm --filter=vite-plugin-book build",
"test:tsc": "pnpm --filter=vite-plugin-book tsc",
"changeset": "changeset",
"release": "changeset publish",
"commit": "git-cz",
"dev": "pnpm --filter=vite-plugin-book dev",
"doc": "pnpm --filter=gh-pages start"
},
"keywords": [
"vite-plugin"
],
"author": "Saul-Mirone",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.19.0",
"@commitlint/cli": "^18.0.0",
"@commitlint/config-conventional": "^18.0.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"concurrently": "^8.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-tsdoc": "^0.2.14",
"git-cz": "^4.7.6",
"husky": "^9.0.0",
"lint-staged": "^15.0.0",
"prettier": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.5.0",
"rimraf": "^5.0.0",
"rollup": "^4.0.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-dts": "^6.0.0",
"rollup-plugin-esbuild": "^6.0.0",
"typescript": "^5.0.0",
"vite": "^4.0.0",
"vite-plugin-dts": "^3.0.0"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@babel/core",
"esbuild"
]
},
"allowedVersions": {
"react": "17"
}
}
}