-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
146 lines (146 loc) · 4.13 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"name": "vuetify-nuxt-module",
"type": "module",
"version": "0.18.3",
"packageManager": "pnpm@9.9.0",
"description": "Zero-Config Nuxt Module for Vuetify",
"author": "userquin <userquin@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/vuetifyjs/nuxt-module#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/vuetifyjs/nuxt-module.git"
},
"bugs": "https://github.com/vuetifyjs/nuxt-module/issues",
"keywords": [
"nuxt",
"nuxt 3",
"vuetify",
"vuetify 3",
"nuxt-module"
],
"exports": {
".": {
"types": "./dist/types.d.mts",
"default": "./dist/module.mjs"
},
"./custom-configuration": {
"types": "./custom-configuration.d.ts",
"default": "./custom-configuration.mjs"
},
"./configuration": {
"types": "./configuration.d.ts"
},
"./*": "./*"
},
"main": "./dist/module.mjs",
"types": "./dist/types.d.ts",
"files": [
"dist",
"*.cjs",
"*.d.ts",
"*.mjs"
],
"scripts": {
"prepack": "nuxt-module-build prepare && nuxt-module-build build",
"dev": "nuxi dev playground",
"dev:multiple-json": "MULTIPLE_LANG_FILES=true nuxi dev playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"dev:prepare:multiple-json": "nuxt-module-build build --stub && nuxt-module-build prepare && MULTIPLE_LANG_FILES=true nuxi prepare playground",
"dev:build": "nuxi build playground",
"dev:generate": "nuxi generate playground",
"dev:build:multiple-json": "MULTIPLE_LANG_FILES=true nuxi build playground",
"dev:generate:multiple-json": "MULTIPLE_LANG_FILES=true nuxi generate playground",
"dev:preview": "nuxi preview playground",
"dev:prepare:date-io": "nuxt-module-build build --stub && nuxt-module-build prepare && pnpm nuxt prepare date-io-playground",
"dev:date-io": "nuxi dev date-io-playground",
"docs:dev": "pnpm -C docs run dev",
"docs:build": "nuxt-module-build prepare && pnpm -C docs run build",
"docs:serve": "pnpm -C docs run serve",
"lint": "eslint .",
"lint:fix": "nr lint --fix",
"publint": "publint",
"test": "vitest run",
"test:watch": "vitest watch",
"release": "bumpp && npm publish"
},
"dependencies": {
"@nuxt/kit": "^3.12.4",
"defu": "^6.1.4",
"destr": "^2.0.3",
"local-pkg": "^0.5.0",
"pathe": "^1.1.2",
"perfect-debounce": "^1.0.0",
"ufo": "^1.5.4",
"unconfig": "^0.5.5",
"upath": "^2.0.1",
"vite-plugin-vuetify": "^2.0.4",
"vuetify": "^3.7.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.43.1",
"@antfu/ni": "^0.22.4",
"@date-io/luxon": "^2.17.0",
"@fortawesome/fontawesome-svg-core": "^6.4.2",
"@fortawesome/free-solid-svg-icons": "^6.4.2",
"@fortawesome/vue-fontawesome": "^3.0.5",
"@iconify-json/carbon": "^1.1.37",
"@iconify-json/mdi": "^1.1.68",
"@mdi/js": "^7.4.47",
"@nuxt/devtools": "latest",
"@nuxt/module-builder": "^0.8.3",
"@nuxt/schema": "^3.12.3",
"@nuxt/test-utils": "^3.13.1",
"@nuxtjs/i18n": "^8.0.0",
"@parcel/watcher": "^2.3.0",
"@types/node": "^18",
"@unocss/nuxt": "^0.62.1",
"bumpp": "^9.2.0",
"eslint": "^8.54.0",
"luxon": "^3.4.3",
"nuxt": "^3.10.2",
"publint": "^0.2.10",
"rimraf": "^6.0.1",
"sass": "^1.77.8",
"typescript": "^5.5.4",
"vite": "^5.0.12",
"vitest": "^2.0.5",
"vue-tsc": "^2.0.29"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search"
]
}
},
"resolutions": {
"@nuxt/kit": "3.12.4",
"vite": "5.4.1",
"vue": "3.4.31"
},
"build": {
"externals": [
"@vuetify/loader-shared",
"node:child_process",
"node:fs",
"consola",
"destr",
"esbuild",
"local-pkg",
"pathe",
"perfect-debounce",
"rollup",
"upath",
"ufo",
"unconfig",
"vite",
"vite-plugin-vuetify",
"vuetify"
]
},
"stackblitz": {
"installDependencies": false,
"startCommand": "node .stackblitz.js && pnpm install && nr prepack && nr dev:prepare && nr dev"
}
}