-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.05 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.05 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
{
"name": "autotrans",
"version": "1.0.0",
"description": "CLI Tool for translating json files using Deepl and LLM models",
"homepage": "https://github.com/stevenbraham/autotrans#readme",
"bugs": {
"url": "https://github.com/stevenbraham/autotrans/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stevenbraham/autotrans.git"
},
"license": "MIT",
"author": "Steven Braham <steven@braham.biz>",
"type": "module",
"main": "bin/autotrans.js",
"bin": {
"autotrans": "./bin/autotrans.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/autotrans.ts",
"test": "jest --coverage"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^25.2.3",
"@types/progress": "^2.0.7",
"jest": "^30.2.0",
"ts-jest": "^29.4.6",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.76.0",
"commander": "^14.0.3",
"deepl-node": "^1.24.0",
"dotenv": "^17.3.1",
"p-queue": "^9.1.0",
"progress": "^2.0.3"
}
}