-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
79 lines (79 loc) · 2.33 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
{
"name": "@intlify/rollup-plugin-vue-i18n",
"description": "Rollup plugin for Vue I18n",
"version": "3.0.1",
"author": {
"name": "kazuya kawaguchi",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/intlify/bundle-tools/issues"
},
"dependencies": {
"@intlify/bundle-utils": "next",
"@intlify/shared": "beta",
"@rollup/pluginutils": "^4.2.0",
"debug": "^4.3.1"
},
"devDependencies": {
"@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"
},
"peerDependencies": {
"petite-vue-i18n": "^9.0.0",
"vue": "^3.0.0",
"vue-i18n": "^9.0.0"
},
"peerDependenciesMeta": {
"petite-vue-i18n": {
"optional": true
},
"vue-i18n": {
"optional": true
}
},
"engines": {
"node": ">= 12"
},
"files": [
"lib"
],
"homepage": "https://github.com/intlify/bundle-tools/blob/main/packages/rollup-plugin-vue-i18n/README.md",
"keywords": [
"i18n",
"plugin",
"rollup",
"vue",
"vue-i18n"
],
"license": "MIT",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/intlify/bundle-tools.git",
"directory": "packages/rollup-plugin-vue-i18n"
},
"scripts": {
"build": "tsc -p .",
"build:example": "yarn build && npm-run-all --parallel \"build:example:*\"",
"build:example:composition": "rollup -c ./examples/rollup.config.js --environment BUILD:composition",
"build:example:global": "rollup -c ./examples/rollup.config.js --environment BUILD:global",
"build:example:legacy": "rollup -c ./examples/rollup.config.js --environment BUILD:legacy",
"clean": "npm-run-all \"clean:*\"",
"clean:example": "npm-run-all \"clean:example:*\"",
"clean:example:composition": "rm -rf ./examples/composition/index.js",
"clean:example:global": "rm -rf ./examples/global/index.js",
"clean:example:legacy": "rm -rf ./examples/legacy/index.js",
"clean:lib": "rm -rf ./lib",
"test": "yarn test:e2e",
"test:e2e": "yarn build:example && jest --runInBand --config ./jest.e2e.config.js",
"watch": "tsc -p . --watch",
"changelog": "jiti ../../scripts/changelog.ts",
"release": "jiti ../../scripts/release.ts"
},
"types": "lib/index.d.ts"
}