-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
121 lines (121 loc) · 3.16 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
{
"name": "vue-i18n-routing",
"description": "The i18n routing with using vue-i18n",
"version": "1.0.2",
"scripts": {
"dev": "vite",
"build": "vite build",
"typecheck": "tsc -p . --noEmit",
"switch:2": "vue-demi-switch 2 vue2 && vue-router-switch 3 vue-router3 && vue-i18n-switch 8 vue-i18n-legacy",
"switch:3": "vue-demi-switch 3 && vue-router-switch 4 && vue-i18n-switch 9",
"test": "vitest run",
"test:watch": "vitest",
"test:cover": "vitest --coverage",
"build:docs": "api-docs-gen ./temp/vue-i18n-routing.api.json -c ./docsgen.config.js -o ./ -g noprefix"
},
"dependencies": {
"@intlify/shared": "^9.3.0",
"@intlify/vue-i18n-bridge": "^0.9.0",
"@intlify/vue-router-bridge": "^0.9.0",
"ufo": "^1.2.0",
"vue-demi": "^0.14.5"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.31.1",
"api-docs-gen": "^0.4.0",
"typescript": "^5.1.6",
"vite": "^4.4.9",
"vite-plugin-dts": "^3.5.1",
"vitest": "^0.34.1",
"vue": "^3.2.27",
"vue-i18n": "npm:[email protected]",
"vue-i18n-bridge": "next",
"vue-i18n-legacy": "npm:vue-i18n@8",
"vue-router": "^4.1.5",
"vue-router3": "npm:[email protected]",
"vue-template-compiler": "^2.6.14",
"vue2": "npm:[email protected]"
},
"peerDependencies": {
"vue": "^2.6.14 || ^2.7.0 || ^3.2.0",
"vue-i18n": "^8.26.1 || ^9.2.0 || ^9.3.0",
"vue-i18n-bridge": "^9.2.0 || ^9.3.0",
"vue-router": "^3.5.3 || ^3.6.0 || ^4.0.0",
"@vue/composition-api": "^1.0.0-rc.1"
},
"peerDependenciesMeta": {
"vue": {
"optional": true
},
"vue-i18n": {
"optional": true
},
"vue-i18n-bridge": {
"optional": true
},
"vue-router": {
"optional": true
},
"@vue/composition-api": {
"optional": true
}
},
"keywords": [
"i18n",
"internationalization",
"intlify",
"routing"
],
"files": [
"dist",
"index.mjs",
"types.d.ts",
"LICENSE",
"README.md"
],
"main": "./dist/vue-i18n-routing.js",
"module": "./dist/vue-i18n-routing.mjs",
"unpkg": "dist/vue-i18n-routing.iife.js",
"jsdelivr": "dist/vue-i18n-routing.iife.js",
"types": "dist/vue-i18n-routing.d.ts",
"exports": {
".": {
"import": {
"node": "./index.mjs",
"default": "./dist/vue-i18n-routing.mjs"
},
"require": "./dist/vue-i18n-routing.js",
"types": "./dist/vue-i18n-routing.d.ts"
},
"./vue-i18n": {
"types": "./dist/vue-i18n.d.ts"
},
"./types": {
"types": "./types.d.ts"
},
"./package.json": "./package.json",
"./dist/*": "./dist/*"
},
"license": "MIT",
"author": {
"name": "kazuya kawaguchi",
"email": "[email protected]"
},
"funding": "https://github.com/sponsors/kazupon",
"homepage": "https://github.com/intlify/routing/tree/main/packages/vue-i18n-routing#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/intlify/routing.git",
"directory": "packages/vue-i18n-routing"
},
"bugs": {
"url": "https://github.com/intlify/routing/issues"
},
"engines": {
"node": ">= 14.6"
},
"publishConfig": {
"access": "public"
},
"sideEffects": false
}