-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.43 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "po2mo",
"version": "2.0.7",
"description": "po to mo, it's simple.",
"bin": "./dist/index.js",
"scripts": {
"build": "bunchee --no-dts",
"build:pkg": "pnpm build && pkg . --out-path exec --targets node18-linux-x64,node18-macos-x64,node18-win-x64 --overwrite",
"test": "jest",
"format": "prettier --write !pnpm-lock.yaml .",
"prepublishOnly": "pnpm build"
},
"dependencies": {
"arg": "^5.0.2",
"gettext-parser": "^7.0.1",
"simple-git": "^3.24.0"
},
"devDependencies": {
"@swc/core": "^1.4.13",
"@swc/jest": "^0.2.36",
"@types/gettext-parser": "^4.0.4",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.6",
"bunchee": "^5.1.2",
"jest": "^29.7.0",
"pkg": "^5.8.1",
"prettier": "^3.2.5",
"tsx": "^4.7.2",
"typescript": "^5.4.4"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"jest": {
"transform": {
"^.+\\.(t|j)sx?$": "@swc/jest"
},
"testEnvironment": "node",
"testTimeout": 10000,
"verbose": true
},
"license": "MIT",
"author": "Jiwon Choi",
"repository": "https://github.com/devjiwonchoi/po2mo.git",
"files": [
"./dist"
],
"keywords": [
"cli",
"po",
"mo",
"gettext",
"gnu",
"i18n",
"internationalization",
"l10n",
"localization",
"translate"
],
"engines": {
"node": ">=18.17.0"
},
"packageManager": "[email protected]"
}