-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 933 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
33
34
{
"name": "issue-translator",
"version": "1.0.0",
"description": "A Github action to auto translate issue title",
"main": "./dist/index.js",
"scripts": {
"build": "esbuild src/index.js --bundle --minify --platform=node --outfile=dist/index.js --minify-identifiers=false --minify-syntax=false --minify-whitespace=false"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Aarebecca/issue-translator.git"
},
"keywords": [
"github",
"issue",
"translator"
],
"author": "Aarebecca",
"license": "ISC",
"bugs": {
"url": "https://github.com/Aarebecca/issue-translator/issues"
},
"homepage": "https://github.com/Aarebecca/issue-translator#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@octokit/rest": "^21.0.2",
"axios": "^1.7.4"
},
"devDependencies": {
"dotenv": "^16.4.5",
"esbuild": "^0.23.1"
}
}