-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.06 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
{
"name": "elysia-i18next",
"version": "4.0.3",
"description": "Internationalization (i18n) for Elysia.js via i18next",
"repository": {
"type": "git",
"url": "https://github.com/eelkevdbos/elysia-i18next"
},
"bugs": "https://github.com/eelkevdbos/elysia-i18next/issues",
"author": {
"name": "eelkevdbos",
"url": "https://github.com/eelkevdbos",
"email": "eelke@vandenbos.dev"
},
"scripts": {
"build": "bun run build.mjs"
},
"main": "./dist/index.js",
"exports": {
"bun": "./dist/index.js",
"require": "./dist/index.js",
"import": "./dist/index.js",
"node": "./dist/index.js",
"default": "./dist/index.js"
},
"types": "./dist/index.d.ts",
"files": ["dist"],
"keywords": [
"elysia",
"i18n",
"i18next"
],
"license": "MIT",
"devDependencies": {
"i18next": "^23.5.1",
"bun-plugin-dts": "^0.3.0",
"bun-types": "^1.1.30",
"elysia": "^1.1.22",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"peerDependencies": {
"elysia": ">= 1.0.1",
"i18next": ">= 23.5.1"
}
}