forked from FCAgreatgoals/hermes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 943 Bytes
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 943 Bytes
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
{
"name": "@fca.gg/hermes",
"version": "1.1.4",
"description": "A simple and lightweight i18n library for Node.js",
"author": "FCA <development@fca.gg>",
"license": "AGPL-3.0",
"keywords": [
"i18n",
"internationalization",
"localization",
"formatting",
"discord",
"interactions"
],
"main": "lib/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": "./lib/index.js"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/FCAgreatgoals/hermes.git"
},
"dependencies": {
"@types/node": "^22.10.1",
"json5": "^2.2.3"
},
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
},
"scripts": {
"build": "tsc",
"test": "jest"
}
}