加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
package.json 1.51 KB
一键复制 编辑 原始数据 按行查看 历史
zenkiray 提交于 2023-04-06 10:31 . update readme
{
"name": "i18nhelper",
"displayName": "i18nhelper",
"description": "i18n助手,自动转换选中文本为i18n配置文件中的key,并自动添加不存在的key。",
"publisher": "neatlogic",
"icon": "icon/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/neatlogic/i18nhelper.git"
},
"version": "1.0.0",
"engines": {
"vscode": "^1.76.0"
},
"categories": [
"Snippets",
"Language Packs"
],
"activationEvents": [],
"main": "./src/extension.js",
"configuration": {},
"contributes": {
"commands": [
{
"command": "i18nhelper.configure",
"title": "i18n-config"
},
{
"command": "i18nhelper.replace",
"title": "i18n-replace"
}
],
"menus": {
"editor/context": [
{
"command": "i18nhelper.replace",
"when": "editorTextFocus",
"group": "i18nhelper"
},
{
"command": "i18nhelper.configure",
"group": "i18nhelper"
}
]
}
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.1",
"@types/node": "16.x",
"@types/vscode": "^1.76.0",
"@vscode/test-electron": "^2.2.3",
"eslint": "^8.34.0",
"glob": "^8.1.0",
"mocha": "^10.2.0",
"typescript": "^4.9.5"
},
"README.md": "README.md",
"dependencies": {
"axios": "^1.3.4",
"crypto": "^1.0.1"
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化