-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
103 lines (103 loc) · 2.62 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
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "commit-translator",
"displayName": "Commit Message Translator",
"description": "VSCode extension which translates commit message ",
"version": "1.1.2",
"repository": {
"type": "git",
"url": "https://github.com/nimod7890/commit-translator"
},
"license": "MIT",
"publisher": "nimod7890",
"categories": [
"Other",
"SCM Providers"
],
"keywords": [
"git",
"translate",
"deepl",
"ai",
"generate",
"commit",
"message",
"conventional-commit",
"vs-code",
"vscode",
"productivity"
],
"icon": "assets/images/logo.png",
"engines": {
"vscode": "^1.83.1"
},
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "commit-translator.translateCommit",
"title": "Translate commit",
"icon": {
"dark": "assets/icons/translate-you-svgrepo-com-dark.svg",
"light": "assets/icons/translate-you-svgrepo-com-light.svg"
}
},
{
"command": "commit-translator.setApiKey",
"title": "Set api key"
}
],
"menus": {
"scm/title": [
{
"command": "commit-translator.translateCommit",
"when": "scmProvider == git",
"group": "navigation"
}
]
},
"configuration": {
"title": "Commit translator",
"properties": {
"commit-translator.deepl.apiKey": {
"type": "string",
"default": "",
"description": "deepl auth key for translating commit message."
},
"commit-translator.deepl.targetLanguage": {
"type": "string",
"default": "EN",
"description": "Enter the language code for your target translation language. \nex) 'KO' for Korean.\nmore: https://www.deepl.com/docs-api/translate-text"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"lint": "eslint src --ext ts"
},
"devDependencies": {
"@types/lodash": "^4.14.202",
"@types/mocha": "^10.0.3",
"@types/node": "18.x",
"@types/vscode": "^1.83.1",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"@vscode/test-electron": "^2.3.6",
"eslint": "^8.52.0",
"glob": "^10.3.10",
"mocha": "^10.2.0",
"ts-loader": "^9.5.0",
"typescript": "^5.2.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"axios": "^1.6.2",
"lodash": "^4.17.21",
"zod": "^3.22.4"
}
}