forked from intlify/vue-i18n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.4 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
{
"name": "vue-i18n",
"version": "9.0.0",
"description": "Internationalization plugin for Vue.js",
"keywords": [
"i18n",
"internationalization",
"intlify",
"plugin",
"vue",
"vue.js"
],
"license": "MIT",
"author": {
"name": "kazuya kawaguchi",
"email": "[email protected]"
},
"homepage": "https://github.com/intlify/vue-i18n-next/tree/master/packages/vue-i18n#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/intlify/vue-i18n-next.git",
"directory": "packages/vue-i18n"
},
"bugs": {
"url": "https://github.com/intlify/vue-i18n-next/issues"
},
"files": [
"index.js",
"dist",
"vetur"
],
"main": "index.js",
"module": "dist/vue-i18n.esm-bundler.js",
"unpkg": "dist/vue-i18n.global.js",
"jsdelivr": "dist/vue-i18n.global.js",
"types": "dist/vue-i18n.d.ts",
"dependencies": {
"@intlify/core-base": "9.0.0",
"@intlify/shared": "9.0.0",
"@vue/devtools-api": "^6.0.0-beta.7"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"engines": {
"node": ">= 10"
},
"buildOptions": {
"name": "VueI18n",
"formats": [
"esm-bundler",
"esm-bundler-runtime",
"esm-browser",
"esm-browser-runtime",
"cjs",
"global",
"global-runtime"
]
},
"sideEffects": false,
"vetur": {
"tags": "vetur/tags.json",
"attributes": "vetur/attributes.json"
}
}