-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.37 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
{
"name": "@leanera/vue-i18n",
"type": "module",
"version": "0.5.0",
"packageManager": "[email protected]",
"description": "Lightweight internationalization plugin for Vue",
"author": "LeanERA GmbH <https://github.com/leanera>",
"license": "MIT",
"homepage": "https://github.com/leanera/vue-i18n#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/leanera/vue-i18n.git"
},
"bugs": "https://github.com/leanera/vue-i18n/issues",
"keywords": [
"vue",
"i18n",
"translation",
"localization"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
}
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest",
"test:types": "vue-tsc --noEmit",
"release": "bumpp --commit --push --tag"
},
"peerDependencies": {
"vue": "^3"
},
"dependencies": {
"klona": "^2.0.6"
},
"devDependencies": {
"@antfu/eslint-config": "^0.41.0",
"@types/node": "^20.5.9",
"@vitejs/plugin-vue": "^4.3.4",
"bumpp": "^9.2.0",
"eslint": "^8.48.0",
"typescript": "^5.2.2",
"unbuild": "^2.0.0",
"vite": "^4.4.9",
"vitest": "^0.34.3",
"vue": "^3.3.4",
"vue-tsc": "^1.8.10"
}
}