50 lines
1.4 KiB
JSON
Executable File
50 lines
1.4 KiB
JSON
Executable File
{
|
|
"name": "laravel-vite-plugin",
|
|
"version": "0.7.4",
|
|
"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": "^18.11.9",
|
|
"@typescript-eslint/eslint-plugin": "^5.21.0",
|
|
"@typescript-eslint/parser": "^5.21.0",
|
|
"eslint": "^8.14.0",
|
|
"typescript": "^4.6.4",
|
|
"vite": "^4.0.0",
|
|
"vitest": "^0.25.2"
|
|
},
|
|
"peerDependencies": {
|
|
"vite": "^3.0.0 || ^4.0.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=14"
|
|
},
|
|
"dependencies": {
|
|
"picocolors": "^1.0.0",
|
|
"vite-plugin-full-reload": "^1.0.5"
|
|
}
|
|
}
|