-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.09 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
{
"name": "type-locales",
"version": "3.2.0",
"description": "A simple tool for typing your locales and a util for easy manage of i18n with typescript",
"main": "build/mod.js",
"bin": {
"type-locales": "build/cli.js"
},
"types": "build/mod.d.ts",
"type": "module",
"exports": {
".": {
"import": "./build/mod.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/OnekiDevs/type-locales.git"
},
"scripts": {
"build": "tsc && esbuild src/cli.ts --minify --platform=node --outfile=build/cli.js"
},
"keywords": [
"i18n",
"locales",
"typescript"
],
"author": "eliyya",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.17.0",
"esbuild": "^0.24.2",
"@types/i18n": "^0.13.12",
"@types/node": "22.10.2",
"eslint": "^9.17.0",
"i18n": "^0.15.1",
"typescript": "5.7.2",
"typescript-eslint": "^8.18.1"
},
"peerDependencies": {
"i18n": "^0.15.1"
},
"engineStrict": true,
"engines": {
"node": ">=20.11"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}