-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.12 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.12 KB
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
{
"name": "vite-plugin-adminui",
"version": "1.6.5",
"description": "Helper plugin for AdminUI-based sites that want to extend its functionality",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "module.d.ts",
"exports": {
".": {
"types": "./module.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"peerDependencies": {
"@inertiajs/vue3": "^2.0.0",
"vite": "^3 || ^4 || ^5 || ^6 || ^7",
"vue": "^2.7.0 || >=3.0.0"
},
"files": [
"dist",
"module.d.ts"
],
"scripts": {
"build": "vite build",
"prepublishOnly": "npm run build"
},
"keywords": [
"adminui",
"vite",
"plugin"
],
"author": "evomark",
"contributors": [
{
"name": "Craig Riley",
"email": "c.riley@evomark.co.uk"
}
],
"license": "BSD-3-Clause",
"homepage": "https://adminui.co.uk",
"devDependencies": {
"@inertiajs/vue3": "^2.0.17",
"@vitejs/plugin-basic-ssl": "^2.0.0",
"rollup-plugin-node-externals": "^8.0.0",
"vite": "^7.0.0",
"vue": "^3.5.18",
"ziggy-js": "^2.5.3"
}
}