-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
51 lines (51 loc) · 1.14 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
{
"name": "i18next-vue",
"description": "i18next integration for Vue",
"version": "5.0.0",
"author": "Konrad Kügler <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/i18next/i18next-vue.git"
},
"homepage": "https://github.com/i18next/i18next-vue",
"bugs": {
"url": "https://github.com/i18next/i18next-vue/issues"
},
"keywords": [
"i18n",
"i18next",
"vue",
"typescript"
],
"scripts": {
"dev": "npm run build -- --watch index.ts",
"build": "tsup index.ts --format esm --dts",
"prepare": "npm run build",
"test": "vitest",
"test-ci": "vitest run",
"coverage": "vitest run --coverage && rm -rf ./coverage",
"format": "prettier . --write"
},
"type": "module",
"module": "./dist/index.js",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"peerDependencies": {
"i18next": ">=23",
"vue": "^3.4.38"
},
"devDependencies": {
"@vitest/coverage-v8": "^2.0.5",
"@vue/test-utils": "^2.4.6",
"jsdom": "^24.1.1",
"prettier": "3.3.3",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
},
"files": [
"dist/**/*",
"types/**/*"
]
}