forked from lupas/vuetify-i18n-language-switcher-nuxt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1023 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
{
"name": "vuetify-i18n-language-switcher-nuxt",
"version": "0.0.2",
"description": "Vuetify-based language switcher for i18n and Nuxt.",
"author": "Pascal Luther",
"license": "MIT",
"homepage": "https://github.com/lupas",
"keywords": [
"nuxt, vuetify, i18n, languageswitcher"
],
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"main": "dist/VuetifyI18nLanguageSwitcherNuxt.umd.js",
"unpkg": "dist/VuetifyI18nLanguageSwitcherNuxt.umd.min.js",
"scripts": {
"serve": "vue-cli-service serve src/index.vue",
"build": "vue-cli-service build",
"build:npm": "vue-cli-service build --target lib --name VuetifyI18nLanguageSwitcherNuxt src/index.vue",
"publish:npm": "npm run build:npm && npm publish"
},
"peerDependencies": {
"vuetify": "^2.0.1",
"nuxt": "^2.8.1",
"nuxt-i18n": "^6.0.0"
},
"devDependencies": {
"vue-template-compiler": "^2.6.10"
},
"dependencies": {
"@vue/cli": "^4.1.1",
"@vue/cli-service": "^4.1.1"
}
}