forked from ryanhex53/gpt-po
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.32 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
{
"name": "gpt-po",
"version": "1.0.10",
"description": "command tool for translate po files by gpt",
"main": "lib/src/index.js",
"bin": {
"gpt-po": "lib/src/index.js"
},
"scripts": {
"start": "node lib/src/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"prebuild": "rimraf ./lib",
"build": "tsc",
"postbuild": "ncp ./src/ ./lib/src/ \"--filter=^(?!.*\\.ts$).*$\"",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ryanhex53/gpt-po.git"
},
"author": "Ryan",
"license": "MIT",
"bugs": {
"url": "https://github.com/ryanhex53/gpt-po/issues"
},
"homepage": "https://github.com/ryanhex53/gpt-po#readme",
"keywords": [
"gettext",
"po",
"pot",
"chatgpt",
"openai"
],
"devDependencies": {
"@types/gettext-parser": "^4.0.2",
"@types/jest": "^29.5.1",
"jest": "^29.5.0",
"ncp": "^2.0.0",
"prettier": "^3.0.3",
"rimraf": "^5.0.0",
"ts-jest": "^29.1.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.0.4"
},
"dependencies": {
"commander": "^10.0.1",
"gettext-parser": "^6.0.0",
"openai": "^3.2.1"
},
"engines": {
"node": ">=12.0.0"
}
}