-
-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.46 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.46 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
52
53
54
55
56
57
58
59
60
61
62
{
"name": "webpack-plugin-vuetify",
"version": "3.1.3",
"description": "A Webpack plugin for treeshaking Vuetify components and more",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./scriptLoader": {
"import": "./dist/scriptLoader.mjs",
"require": "./dist/scriptLoader.cjs"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/vuetifyjs/vuetify-loader.git"
},
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub"
},
"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/webpack-plugin",
"dependencies": {
"@vuetify/loader-shared": "^2.1.2",
"decache": "^4.6.0",
"file-loader": "^6.2.0",
"find-cache-dir": "^5.0.0",
"loader-utils": "^2.0.0",
"mkdirp": "^1.0.4",
"null-loader": "^4.0.1",
"upath": "^2.0.1"
},
"peerDependencies": {
"@vue/compiler-sfc": "^3.2.6",
"vue": "^3.2.6",
"vuetify": ">=3",
"webpack": "^5.0.0"
},
"optionalPeerDependencies": {
"gm": "^1.23.0",
"pug": "^2.0.0",
"sharp": "^0.21.0"
},
"engines": {
"node": "^18.0.0 || >=20.0.0"
},
"files": [
"dist/"
],
"publishConfig": {
"access": "public"
}
}