-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
109 lines (109 loc) · 2.47 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
{
"name": "@intlify/unplugin-vue-i18n",
"type": "module",
"version": "6.0.0",
"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": "*",
"vue": "^3.2.25",
"vue-i18n": "*"
},
"peerDependenciesMeta": {
"petite-vue-i18n": {
"optional": true
},
"vue-i18n": {
"optional": true
}
},
"dependencies": {
"@eslint-community/eslint-utils": "^4.4.0",
"@intlify/bundle-utils": "^10.0.0",
"@intlify/shared": "latest",
"@intlify/vue-i18n-extensions": "^7.0.0",
"@rollup/pluginutils": "^5.1.0",
"@typescript-eslint/scope-manager": "^8.13.0",
"@typescript-eslint/typescript-estree": "^8.13.0",
"debug": "^4.3.3",
"fast-glob": "^3.2.12",
"js-yaml": "^4.1.0",
"json5": "^2.2.3",
"pathe": "^1.0.0",
"picocolors": "^1.0.0",
"source-map-js": "^1.0.2",
"unplugin": "^1.1.0",
"vue": "^3.4"
},
"devDependencies": {
"unbuild": "^2.0.0",
"@types/node": "^20.14.8"
},
"engines": {
"node": ">= 18"
},
"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",
"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"
},
"./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",
"clean": "run-p \"clean:*\"",
"clean:lib": "rm -rf ./lib",
"changelog": "jiti ../../scripts/changelog.ts",
"release": "jiti ../../scripts/release.ts"
}
}