forked from kingatlas/i18next-keys-ondemand
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.18 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": "@weareinreach/i18next-keys-ondemand",
"version": "0.3.2",
"description": "i18next plugin to request missing translation keys when used",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"type": "module",
"private": false,
"keywords": [
"i18next",
"i18n",
"i18next-plugin",
"translation",
"languages",
"i18next-backend"
],
"repository": "https://github.com/weareinreach/i18next-keys-ondemand.git",
"author": "Joe Karow",
"license": "MIT",
"contributors": [
{
"name": "Nabil Koroghli",
"url": "https://github.com/kingatlas/i18next-keys-ondemand"
}
],
"funding": [
{
"type": "Donate to InReach",
"url": "https://inreach.kindful.com/staff-2023/team-joe-karow"
},
{
"type": "github",
"url": "https://github.com/sponsors/weareinreach"
}
],
"scripts": {
"prepublish": "pnpm build",
"build": "rm ./dist/* && tsc"
},
"files": [
"dist"
],
"devDependencies": {
"i18next": "^22.4.10",
"typescript": "^4.9.5"
},
"dependencies": {
"just-debounce": "^1.1.0"
},
"peerDependencies": {
"i18next": "22.x.x"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=16"
},
"packageManager": "[email protected]"
}