This repository has been archived by the owner on Jul 4, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
116 lines (116 loc) · 3.78 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
{
"name": "@intlify/vite-plugin-vue-i18n",
"description": "Vite plugin for i18n resource pre-compilation and custom blocks",
"version": "2.3.0",
"author": {
"name": "kazuya kawaguchi",
"email": "kawakazu80@gmail.com"
},
"bugs": {
"url": "https://github.com/intlify/vite-plugin-vue-i18n/issues"
},
"changelog": {
"labels": {
"Type: Feature": ":star: Features",
"Type: Bug": ":bug: Bug Fixes",
"Type: Security": ":lock: Security Fixes",
"Type: Performance": ":chart_with_upwards_trend: Performance Fixes",
"Type: Improvement": ":zap: Improvement Features",
"Type: Breaking": ":boom: Breaking Change",
"Type: Deprecated": ":warning: Deprecated Features",
"Type: I18n": ":globe_with_meridians: Internationalization",
"Type: A11y": ":wheelchair: Accessibility",
"Type: Documentation": ":pencil: Documentation"
}
},
"dependencies": {
"@intlify/cli": "^0.5.0",
"@intlify/shared": "^9.1.6",
"@rollup/pluginutils": "^4.1.0",
"debug": "^4.3.1",
"fast-glob": "^3.2.5"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/jest": "^26.0.23",
"@types/jsdom": "^16.2.10",
"@types/node": "^15.12.1",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"@vitejs/plugin-vue": "^1.2.3",
"@vue/compiler-sfc": "^3.0.11",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-vue": "^7.10.0",
"eslint-plugin-vue-libs": "^4.0.0",
"jest": "^27.0.4",
"jest-puppeteer": "^5.0.4",
"jest-watch-typeahead": "^0.6.4",
"jsdom": "^16.6.0",
"lerna-changelog": "^1.0.1",
"npm-run-all": "^4.1.5",
"opener": "^1.5.2",
"puppeteer": "^10.0.0",
"shipjs": "^0.23.2",
"ts-jest": "^27.0.3",
"typescript": "^4.3.2",
"typescript-eslint-language-service": "^4.1.4",
"vite": "^2.3.6",
"vue": "^3.0.11",
"vue-i18n": "^9.1.6"
},
"engines": {
"node": ">= 12"
},
"files": [
"lib",
"client.d.ts"
],
"homepage": "https://github.com/intlify/vite-plugin-vue-i18n#readme",
"keywords": [
"i18n",
"plugin",
"vite",
"vitejs",
"vue",
"vue-i18n"
],
"license": "MIT",
"main": "lib/index.js",
"peerDependencies": {
"vite": "^2.3.6",
"vue-i18n": "^9.1.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/intlify/vite-plugin-vue-i18n.git"
},
"scripts": {
"build": "tsc -p .",
"build:example": "vite build --config ./examples/vite.config.ts --outDir ./examples/dist",
"clean": "npm-run-all clean:*",
"clean:cache:jest": "jest --clearCache",
"clean:coverage": "rm -rf ./coverage",
"clean:lib": "rm -rf ./lib/index.js",
"coverage": "opener coverage/lcov-report/index.html",
"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",
"fix": "npm-run-all --parallel lint:fix format:fix",
"format": "prettier --config .prettierrc --ignore-path .prettierignore '**/*.{js,json,html}'",
"format:fix": "yarn format --write",
"lint": "eslint ./src ./test --ext .ts",
"lint:fix": "yarn lint --fix",
"release:prepare": "shipjs prepare",
"release:trigger": "shipjs trigger",
"test": "yarn lint && yarn test:cover && yarn test:e2e",
"test:cover": "yarn test:unit --coverage",
"test:e2e": "jest --runInBand --config ./jest.e2e.config.js",
"test:unit": "jest --env node",
"test:watch": "jest --env node --watch",
"watch": "tsc -p . --watch"
},
"types": "lib/index.d.ts"
}