-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
32 lines (32 loc) · 937 Bytes
/
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
{
"name": "gpt-translate",
"version": "1.1.11",
"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": "^5.1.1",
"glob": "^10.3.4",
"gpt-3-encoder": "^1.1.4",
"openai": "^4.33.0"
},
"devDependencies": {
"@types/node": "v20.11.0",
"prettier": "^2.8.7",
"tslint": "^6.1.3",
"typescript": "^5.0.2"
}
}