-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpackage.json
118 lines (118 loc) · 2.65 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
{
"name": "@intlify/unplugin-vue-i18n",
"type": "module",
"version": "12.0.0-alpha.1",
"description": "unplugin for Vue I18n",
"author": {
"name": "kazuya kawaguchi",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/intlify/bundle-tools/issues"
},
"peerDependencies": {
"petite-vue-i18n": "^12.0.0-alpha.2",
"vue": "^3.2.25",
"vue-i18n": "^12.0.0-alpha.2"
},
"peerDependenciesMeta": {
"petite-vue-i18n": {
"optional": true
},
"vue-i18n": {
"optional": true
}
},
"dependencies": {
"@intlify/bundle-utils": "workspace:*",
"@intlify/shared": "catalog:intlify",
"@rollup/pluginutils": "^5.1.0",
"debug": "^4.3.3",
"defu": "^6.1.4",
"fast-glob": "^3.2.12",
"knitwork": "^1.2.0",
"mlly": "^1.2.0",
"picocolors": "^1.0.0",
"unplugin": "^2.2.0",
"vue": "catalog:vue"
},
"devDependencies": {
"@intlify/core-base": "next",
"@rspack/core": "^1.2.7",
"@types/debug": "^4.1.5",
"@types/jsdom": "^16.2.5",
"@types/memory-fs": "^0.3.2",
"@types/node": "catalog:",
"@vitejs/plugin-vue": "catalog:vite",
"jsdom": "^25.0.1",
"memory-fs": "^0.5.0",
"ts-loader": "catalog:webpack",
"unbuild": "catalog:",
"vite": "catalog:vite",
"vue-loader": "catalog:webpack",
"webpack": "catalog:webpack",
"webpack-merge": "^5.9.0"
},
"engines": {
"node": ">= 20"
},
"files": [
"lib",
"*.d.ts"
],
"homepage": "https://github.com/intlify/bundle-tools/blob/main/packages/unplugin-vue-i18n/README.md",
"keywords": [
"i18n",
"plugin",
"unplugin",
"transform",
"webpack",
"rspack",
"vite",
"vue",
"vue-i18n"
],
"license": "MIT",
"main": "lib/index.cjs",
"module": "./lib/index.mjs",
"types": "./index.d.ts",
"exports": {
".": {
"import": "./lib/index.mjs",
"require": "./lib/index.cjs"
},
"./vite": {
"import": "./lib/vite.mjs",
"require": "./lib/vite.cjs"
},
"./webpack": {
"import": "./lib/webpack.mjs",
"require": "./lib/webpack.cjs"
},
"./rspack": {
"import": "./lib/rspack.mjs",
"require": "./lib/rspack.cjs"
},
"./types": {
"import": {
"types": "./lib/types.d.mts"
},
"require": {
"types": "./lib/types.d.cts"
}
},
"./messages": {
"types": "./messages.d.ts"
},
"./lib/*": "./lib/*",
"./package.json": "./package.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/intlify/bundle-tools.git",
"directory": "packages/unplugin-vue-i18n"
},
"scripts": {
"build": "unbuild"
}
}