-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 1.8 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
{
"name": "vue3-i18n",
"version": "1.1.5",
"description": "A i18n plugin for Vue3",
"main": "dist/vue3-i18n.common.js",
"module": "dist/vue3-i18n.esm.js",
"unpkg": "dist/vue3-i18n.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"tsc": "tsc --outDir lib",
"tsc:dev": "tsc --outDir lib -w",
"dev": "rollup -w -c",
"lint": "eslint src/* --fix",
"docs:dev": "yarn workspace docs dev",
"docs:build": "yarn workspace docs build"
},
"private": true,
"publishConfig": {
"access": "public"
},
"workspaces": [
"packages/*"
],
"files": [
"dist",
"src"
],
"keywords": [
"vue",
"vue3",
"i18n"
],
"license": "MIT",
"author": {
"name": "webkong",
"email": "772930508@qq.com"
},
"repository": {
"type": "git",
"url": "https://github.com/webkong/vue3-i18n.git"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/plugin-syntax-jsx": "^7.14.5",
"@babel/preset-env": "^7.12.7",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.0",
"@rollup/plugin-typescript": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"@vuepress/plugin-pwa": "^1.8.2",
"eslint": "^7.14.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.1.0",
"lerna": "^4.0.0",
"rollup": "^2.34.0",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"typescript": "^4.3.5",
"vue": "^3.1.5"
},
"peerDependencies": {
"vue": "^3.0.0"
}
}