-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.04 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
{
"name": "po-extract",
"version": "2.1.1",
"description": "A CLI tool for creating `react-intl`-compatible dictionaries from gettext `.po`-files",
"keywords": [
"i18n",
"react",
"react-intl",
"gettext",
"po",
"extract"
],
"main": "./dist",
"homepage": "https://github.com/neruchev/po-extract#readme",
"repository": "git@github.com:neruchev/po-extract.git",
"bugs": {
"url": "https://github.com/neruchev/po-extract/issues"
},
"author": "Kirill Neruchev <kirill@neruchev.com>",
"license": "MIT",
"scripts": {
"build": "tsup",
"watch": "tsup --watch",
"typecheck": "tsc",
"prettier": "prettier --check .",
"prepare": "husky install"
},
"dependencies": {
"prettier": "*",
"yargs": "^17"
},
"devDependencies": {
"@types/gettext-parser": "^4.0.4",
"@types/yargs": "^17.0.32",
"gettext-parser": "^8.0.0",
"husky": "^9.0.11",
"pretty-quick": "^4.0.0",
"tsup": "^8.1.0",
"typescript": "^5.5.3"
},
"bin": "dist/index.js",
"packageManager": "yarn@4.3.1"
}