-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
62 lines (62 loc) · 1.84 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
{
"name": "@defstudio/vite-livewire-plugin",
"version": "2.0.6",
"author": {
"name": "Fabio Ivona"
},
"description": "Livewire plugin for Vite",
"keywords": [
"laravel",
"vite",
"livewire",
"vite-plugin"
],
"homepage": "https://github.com/def-studio/vite-livewire-plugin",
"repository": {
"type": "git",
"url": "https://github.com/def-studio/vite-livewire-plugin"
},
"license": "MIT",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"/dist"
],
"scripts": {
"deploy": "npm run build && npm publish",
"build": "npm run build-plugin",
"build-plugin": "rm -rf dist && npm run build-plugin-types && npm run build-plugin-esm && npm run build-plugin-cjs",
"build-plugin-types": "tsc --emitDeclarationOnly",
"build-plugin-cjs": "esbuild src/index.ts --platform=node --format=cjs --outfile=dist/index.cjs",
"build-plugin-esm": "esbuild src/index.ts --platform=node --format=esm --outfile=dist/index.mjs",
"lint": "eslint --ext .ts ./src",
"test": "vitest run"
},
"devDependencies": {
"@types/minimatch": "^5.1.2",
"@types/node": "^20.11.16",
"@types/picomatch": "^2.3.3",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"esbuild": "0.23.0",
"eslint": "^8.56.0",
"typescript": "^5.3.3",
"vite": "^5.0.0||^6.0.2",
"vitest": "^2.0.1"
},
"peerDependencies": {
"vite": "^6.0.2"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"minimatch": "^9.0.3",
"vite-plugin-full-reload": "^1.1.0"
}
}