-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
51 lines (51 loc) · 1.08 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": "svelte-i18next",
"version": "2.2.0",
"type": "module",
"author": "Nishu Goel <[email protected]>",
"description": "Svelte wrapper for i18next",
"keywords": [
"svelte",
"i18n",
"i18next"
],
"homepage": "https://github.com/NishuGoel/svelte-i18next",
"repository": {
"type": "git",
"url": "git+https://github.com/NishuGoel/svelte-i18next.git"
},
"bugs": {
"url": "https://github.com/NishuGoel/svelte-i18next/issues"
},
"main": "index.js",
"types": "index.d.ts",
"license": "MIT",
"files": [
"package.json",
"**/*.js",
"**/*.js.map",
"**/*.d.ts",
"**/*.ts"
],
"devDependencies": {
"@jest/types": "^29.5.0",
"@types/jest": "^29.5.1",
"@types/node": "^18.16.6",
"i18next": "*",
"jest": "^29.5.0",
"svelte": "*",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"scripts": {
"build": "tsc",
"validate": "svelte-check",
"prepublishOnly": "npm run build",
"test": "jest"
},
"peerDependencies": {
"i18next": "*",
"svelte": "*"
}
}