-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.01 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
{
"name": "libintl",
"version": "1.5.0",
"description": "JavaScript bindings for libraries implementing GetText. (GLib, libintl, libc, …)",
"repository": "moductor/libintl.js",
"license": "MIT",
"keywords": [
"bindings",
"internationalization",
"i18n",
"translation",
"localization",
"l10n",
"globalization",
"gettext",
"gettext-library"
],
"exports": "./dist/index.js",
"scripts": {
"compile": "esbuild --platform=node --format=cjs --minify --outdir=dist src/*.ts src/**/*.ts",
"declarations": "tsc --noEmit false --declaration --emitDeclarationOnly --outDir dist",
"build": "npm run compile && npm run declarations",
"prepublishOnly": "npm run build"
},
"dependencies": {
"glob": "^10.3.12",
"koffi": "^2.8.4"
},
"devDependencies": {
"@types/node": "^20.12.7",
"esbuild": "^0.20.2",
"eslint": "^9.0.0",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.4"
},
"prettier": {
"editorconfig": true
}
}