-
-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
37 lines (37 loc) · 1002 Bytes
/
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
{
"private": true,
"scripts": {
"build": "pnpm -C vite-plugin-laravel run build",
"docs:dev": "pnpm -C docs run dev",
"docs:build": "pnpm -C docs run build",
"docs:serve": "pnpm -C docs run serve",
"release": "bumpp vite-plugin-laravel/package.json --push --tag --commit \"release: v\"",
"test": "npm run test:php && npm run test:vite",
"test:php": ".\\vendor\\bin\\pest",
"test:vite": "vitest --run"
},
"packageManager": "pnpm@7.13.4",
"devDependencies": {
"@innocenzi/eslint-config": "^0.12.0",
"@types/node": "^18.11.0",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"bumpp": "^8.2.1",
"eslint": "^8.25.0",
"typescript": "^4.8.4"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search",
"react",
"react-dom",
"@types/react"
]
},
"overrides": {
"execa": "5.1.1",
"chalk": "4.1.2"
}
}
}