-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.02 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.02 KB
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
{
"name": "period-to-dot",
"displayName": "PeriodToDot",
"description": "在重命名文件时自动将中文句号替换为英文点",
"version": "0.0.2",
"publisher": "msgk",
"repository": {
"type": "git",
"url": "https://github.com/msgk239/PeriodToDot"
},
"license": "MIT",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished",
"onFileSystem:file"
],
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"package": "vsce package"
},
"contributes": {
"commands": [
{
"command": "period-to-dot.test",
"title": "测试 PeriodToDot 扩展"
},
{
"command": "period-to-dot.fixCurrentFile",
"title": "修正当前文件名中的中文句号"
}
]
},
"devDependencies": {
"@types/node": "^20.10.5",
"@types/vscode": "^1.85.0",
"typescript": "^5.3.3"
}
}