-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
39 lines (39 loc) · 1.13 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
{
"name": "gpt-translate",
"version": "1.2.0-beta",
"description": "Markdown translation into any other language powered by ChatGPT",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/3ru/gpt-translate.git"
},
"author": "Ryuya",
"license": "MIT",
"scripts": {
"build": "npx @vercel/ncc build src/index.ts -o dist",
"release:patch": "scripts/update_version.sh Patch && npm run build",
"release:minor": "scripts/update_version.sh Minor && npm run build",
"release:major": "scripts/update_version.sh Major && npm run build"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@ai-sdk/anthropic": "^0.0.27",
"@ai-sdk/azure": "^0.0.10",
"@ai-sdk/cohere": "^0.0.3",
"@ai-sdk/google": "^0.0.24",
"@ai-sdk/mistral": "^0.0.20",
"@ai-sdk/openai": "^0.0.34",
"ai": "^3.2.15",
"glob": "^10.3.4",
"gpt-3-encoder": "^1.1.4"
},
"devDependencies": {
"@types/node": "20.14.9",
"prettier": "^3.3.2",
"tslint": "^6.1.3",
"typescript": "^5.0.2",
"zod": "^3.23.8"
}
}