-
-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathpackage.json
49 lines (49 loc) · 1.09 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": "vite-plugin-laravel",
"version": "0.3.1",
"author": "Enzo Innocenzi",
"license": "MIT",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./inertia": {
"types": "./dist/inertia.d.ts",
"import": "./dist/inertia.mjs",
"require": "./dist/inertia.cjs"
}
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"*.d.ts"
],
"repository": {
"type": "git",
"url": "https://github.com/innocenzi/laravel-vite"
},
"homepage": "https://github.com/innocenzi/laravel-vite#readme",
"bugs": "https://github.com/innocenzi/laravel-vite/issues",
"scripts": {
"prepare": "npm run build",
"build": "unbuild",
"test": "vitest"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"typescript": "^4.8.4",
"unbuild": "^0.7.6",
"vite": "^3.1.8",
"vitest": "^0.18.1"
},
"dependencies": {
"chalk": "4.1.2",
"debug": "^4.3.4",
"defu": "^6.1.0",
"execa": "5.1.1"
}
}