6 Star 47 Fork 3

草蟒老吴/autopunc

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
package.json 2.01 KB
一键复制 编辑 原始数据 按行查看 历史
草蟒老吴 提交于 2023-04-19 17:42 . 解决问题 #I4SMS3
{
"name": "autopunc",
"displayName": "中文标点符号转英文",
"description": "将用户输入的中文标点符号自动更改为英文标点符号",
"version": "1.2.8",
"publisher": "grasspy",
"engines": {
"vscode": "^1.42.0"
},
"categories": [
"Other"
],
"extensionPack": ["draivin.hscopes"],
"activationEvents": [
"*",
"onStartupFinished"
],
"repository": {
"type": "git",
"url": "https://gitee.com/laowu2019_admin/autopunc"
},
"icon": "icon.png",
"main": "./out/extension.js",
"contributes": {
"keybindings":{
"command": "autopunc.toggleCorrect",
"key": "Ctrl+Alt+N"
},
"configuration": {
"type": "object",
"title": "中文标点符号自动转换配置",
"properties": {
"autopunc.dictionary": {
"type": "object",
"default":
{
"。": ".",
",": ",",
":": ":",
";": ";",
"!": "!",
"“": "\"",
"”": "\"",
"‘": "'",
"’": "'",
"(": "(",
")": ")",
"【": "[",
"】": "]",
"》": ">",
"《": "<",
"…": "^",
"¥": "$",
"、": "/",
"?": "?",
"·": "`",
"—": "_"
},
"scope": "resource",
"description": "标点符号替换表"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/mocha": "^7.0.1",
"@types/node": "^8.10.25",
"glob": "^7.1.6",
"mocha": "^7.0.1",
"typescript": "^3.6.5",
"vscode": "^1.1.36",
"vscode-test": "^1.3.0"
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/laowu2019_admin/autopunc.git
git@gitee.com:laowu2019_admin/autopunc.git
laowu2019_admin
autopunc
autopunc
master

搜索帮助