forked from laravel/vite-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.36 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
{
"name": "laravel-vite-plugin",
"version": "0.4.0",
"description": "Laravel plugin for Vite.",
"keywords": [
"laravel",
"vite",
"vite-plugin"
],
"homepage": "https://github.com/laravel/vite-plugin",
"repository": {
"type": "git",
"url": "https://github.com/laravel/vite-plugin"
},
"license": "MIT",
"author": "Laravel",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist",
"/inertia-helpers"
],
"scripts": {
"build": "npm run build-plugin && npm run build-inertia-helpers",
"build-plugin": "rm -rf dist && tsc && cp src/dev-server-index.html dist/",
"build-inertia-helpers": "rm -rf inertia-helpers && tsc --project tsconfig.inertia-helpers.json",
"lint": "eslint --ext .ts ./src ./tests",
"test": "vitest run"
},
"devDependencies": {
"@types/node": "^17.0.31",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^8.14.0",
"picocolors": "^1.0.0",
"typescript": "^4.6.4",
"vite": "^2.9.6",
"vitest": "^0.12.4"
},
"peerDependencies": {
"vite": "^2.9.9"
},
"engines": {
"node": ">=14"
},
"dependencies": {
"vite-plugin-full-reload": "^1.0.1"
}
}