-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
94 lines (94 loc) · 2.49 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
{
"name": "@intlify/vite-plugin-vue-i18n",
"description": "Vite plugin for Vue I18n",
"version": "7.0.0",
"author": {
"name": "kazuya kawaguchi",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/intlify/bundle-tools/issues"
},
"peerDependencies": {
"petite-vue-i18n": "*",
"vite": "^2.9.0 || ^3.0.0",
"vue-i18n": "*"
},
"peerDependenciesMeta": {
"petite-vue-i18n": {
"optional": true
},
"vite": {
"optional": true
},
"vue-i18n": {
"optional": true
}
},
"dependencies": {
"@intlify/bundle-utils": "^3.1.2",
"@intlify/shared": "^9.4.0",
"@rollup/pluginutils": "^4.2.0",
"debug": "^4.3.1",
"fast-glob": "^3.2.5",
"source-map": "0.6.1"
},
"devDependencies": {
"unbuild": "^1.1.2",
"@types/jest": "^27.0.2",
"ts-jest": "^27.0.5",
"jest": "^27.2.3",
"jest-puppeteer": "^6.0.0",
"jest-watch-typeahead": "^0.6.4",
"puppeteer": "^10.4.0"
},
"engines": {
"node": ">= 14.6"
},
"files": [
"lib",
"client.d.ts"
],
"homepage": "https://github.com/intlify/bundle-tools/blob/main/packages/vite-plugin-vue-i18n/README.md",
"keywords": [
"i18n",
"plugin",
"vite",
"vitejs",
"vue",
"vue-i18n"
],
"license": "MIT",
"main": "lib/index.cjs",
"module": "./lib/index.mjs",
"types": "lib/index.d.ts",
"exports": {
".": {
"import": "./lib/index.mjs",
"require": "./lib/index.cjs"
},
"./lib/*": "./lib/*",
"./package.json": "./package.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/intlify/bundle-tools.git",
"directory": "packages/vite-plugin-vue-i18n"
},
"scripts": {
"build": "unbuild",
"build:example": "vite build --config ./examples/vite.config.ts --outDir ./examples/dist",
"clean": "npm-run-all \"clean:*\"",
"clean:lib": "rm -rf ./lib",
"clean:example": "rm -rf ./examples/dist",
"dev": "vite examples --config ./examples/vite.config.ts",
"dev:composition": "vite examples/composition --config ./examples/composition/vite.config.ts",
"dev:global": "vite examples/global --config ./examples/global/vite.config.ts",
"dev:legacy": "vite examples/legacy --config ./examples/legacy/vite.config.ts",
"test": "yarn test:e2e",
"test:e2e": "jest --runInBand --config ./jest.e2e.config.js",
"watch": "tsc -p . --watch",
"changelog": "jiti ../../scripts/changelog.ts",
"release": "jiti ../../scripts/release.ts"
}
}