-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.63 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.63 KB
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
67
68
69
70
71
72
73
{
"name": "potomatic",
"version": "1.1.0",
"description": "AI-powered translation utility for translating .po(t) files into multiple languages",
"author": "GravityKit",
"keywords": [
"ai",
"gpt",
"translation",
"po",
"pot",
"OpenAI",
"gpt",
"i18n",
"gettext",
"localization",
"WordPress"
],
"homepage": "https://www.gravitykit.com/potomatic/",
"bugs": {
"url": "https://github.com/GravityKit/Potomatic/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/GravityKit/Potomatic.git"
},
"type": "module",
"main": "potomatic",
"bin": {
"potomatic": "potomatic"
},
"scripts": {
"translate": "./potomatic",
"ab-prompt-test": "node tools/ab-prompt-test",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"**/*.{js,json}\"",
"format:check": "prettier --check \"**/*.{js,json}\""
},
"engines": {
"node": ">=18"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.0.0",
"dotenv": "^16.5.0",
"extract-zip": "^2.0.1",
"gettext-parser": "^8.0.0",
"listr2": "^8.0.0",
"node-fetch": "^3.3.2",
"openai": "^4.0.0",
"tiktoken": "^1.0.21",
"zod": "^3.25.23"
},
"devDependencies": {
"@vitest/coverage-v8": "^3.1.4",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.5",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.6.0",
"execa": "^8.0.1",
"nock": "^13.5.4",
"prettier": "^3.5.3",
"tmp": "^0.2.3",
"vitest": "^3.1.4"
}
}