UNPKG

gpt-po

Version:

command tool for translate po files by gpt

57 lines (56 loc) 1.43 kB
{ "name": "gpt-po", "version": "1.2.3", "description": "command tool for translate po files by gpt", "main": "lib/src/index.js", "type": "module", "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.4", "@types/jest": "^29.5.12", "jest": "^29.7.0", "ncp": "^2.0.0", "prettier": "^3.3.3", "rimraf": "^6.0.1", "ts-jest": "^29.2.5", "tslint": "^6.1.3", "tslint-config-prettier": "^1.18.0", "typescript": "^5.5.4" }, "dependencies": { "commander": "^12.1.0", "gettext-parser": "^8.0.0", "openai": "^4.56.0" }, "engines": { "node": ">=18.0.0" } }