-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.34 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
{
"name": "@nuxt-alt/vuetify",
"version": "1.1.1",
"description": "An alternative module for setting up Vuetify 3 with nuxt.",
"homepage": "https://github.com/nuxt-alt/vuetify",
"author": "Teranode",
"keywords": [
"nuxt",
"nuxtjs",
"nuxt-module",
"nuxt-plugin",
"nuxt-module-alternatives",
"vuetify"
],
"license": "MIT",
"type": "module",
"main": "./dist/module.cjs",
"module": "./dist/module.mjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"prepack": "unbuild",
"dev:prepare": "unbuild --stub && nuxi prepare playground"
},
"dependencies": {
"@nuxt/kit": "^3.2.2",
"sass": "^1.58.3",
"vite-plugin-vuetify": "^1.0.2",
"vuetify": "^3.1.6"
},
"devDependencies": {
"@types/node": "^18.14.1",
"nuxt": "^3.2.2",
"unbuild": "latest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt-alt/vuetify.git",
"directory": "@nuxt-alt/vuetify"
},
"bugs": {
"url": "https://github.com/nuxt-alt/vuetify/issues"
},
"publishConfig": {
"access": "public"
},
"packageManager": "[email protected]"
}