-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
89 lines (89 loc) · 2.46 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
{
"name": "vue-next-i18n",
"version": "1.0.14",
"description": "Lightweight internationalization plugin for Vue 3",
"main": "dist/vue-next-i18n.cjs.js",
"module": "dist/vue-next-i18n.esm-bundler.js",
"unpkg": "dist/vue-next-i18n.global.js",
"sideEffects": false,
"scripts": {
"dev": "yarn && cd examples/vite-project && yarn && yarn dev",
"build": "rollup -c rollup.config.js",
"build:dts": "api-extractor run --local --verbose && tail -n +2 src/types.ts >> dist/vue-next-i18n.d.ts",
"release": "yarn build && yarn build:dts",
"changelog": "standard-version",
"test": "jest --coverage",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aaronlamz/vue-next-i18n.git"
},
"keywords": [
"vue",
"vue-next",
"i18n",
"vue-i18n",
"vue-next-i18n"
],
"author": {
"name": "Aaron Lam",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/aaronlamz/vue-next-i18n/issues"
},
"homepage": "https://github.com/aaronlamz/vue-next-i18n#readme",
"files": [
"dist/*.js",
"dist/vue-next-i18n.d.ts",
"README.md"
],
"types": "dist/vue-next-i18n.d.ts",
"devDependencies": {
"@microsoft/api-extractor": "^7.19.4",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-replace": "^3.0.1",
"@types/jest": "^28.1.8",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"@vue/test-utils": "^2.0.2",
"@vue/vue3-jest": "^28.1.0",
"chalk": "^5.0.0",
"coveralls": "^3.1.1",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.4.1",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"lint-staged": "^12.3.3",
"prettier": "^2.5.1",
"rollup": "^2.67.1",
"rollup-plugin-typescript2": "^0.31.2",
"standard-version": "^9.3.2",
"ts-jest": "^28.0.5",
"typescript": "^4.5.5",
"vitepress": "^1.0.0-alpha.75",
"vue": "^3.2.31",
"vuepress": "2.0.0-beta.53"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"peerDependencies": {
"vue": "^3.2.31"
}
}