forked from vuetifyjs/vuetify-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 970 Bytes
/
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
{
"name": "vite-plugin-vuetify",
"version": "1.0.2",
"description": "A Vite plugin for treeshaking Vuetify components and more",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/vuetifyjs/vuetify-loader.git"
},
"scripts": {
"build": "tsc --outdir dist",
"dev": "yarn run build --watch"
},
"author": "Kael Watts-Deuchar",
"license": "MIT",
"bugs": {
"url": "https://github.com/vuetifyjs/vuetify-loader/issues"
},
"homepage": "https://github.com/vuetifyjs/vuetify-loader/tree/master/packages/vite-plugin",
"dependencies": {
"@vuetify/loader-shared": "^1.7.1",
"debug": "^4.3.3",
"upath": "^2.0.1"
},
"peerDependencies": {
"vite": "^2.7.0 || ^3.0.0 || ^4.0.0",
"vue": "^3.0.0",
"vuetify": "^3.0.0-beta.4"
},
"engines": {
"node": ">=12"
},
"files": [
"dist/"
],
"publishConfig": {
"access": "public"
}
}