-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
133 lines (133 loc) · 4.59 KB
/
package.json
File metadata and controls
133 lines (133 loc) · 4.59 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
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "convertwidth",
"displayName": "Convert Width",
"description": "半角文字と全角文字を相互に変換する、Visual Studio Codeの機能拡張です。",
"version": "0.3.0",
"publisher": "8amjp",
"engines": {
"vscode": "^1.22.0"
},
"categories": [
"Other"
],
"icon": "images/icon.png",
"activationEvents": [
"onCommand:extension.widenAlphabet",
"onCommand:extension.widenNumber",
"onCommand:extension.widenPunctuation",
"onCommand:extension.narrowAlphabet",
"onCommand:extension.narrowNumber",
"onCommand:extension.narrowPunctuation"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "extension.widenAlphabet",
"title": "<A> 半角英字及び記号(&,.)を全角に変換"
},
{
"command": "extension.widenNumber",
"title": "<1> 半角数字を全角に変換"
},
{
"command": "extension.widenPunctuation",
"title": "<?> 半角記号(!?)を全角に変換"
},
{
"command": "extension.narrowAlphabet",
"title": ">A< 全角英字及び記号(&,.)を半角に変換"
},
{
"command": "extension.narrowNumber",
"title": ">1< 全角数字を半角数字に変換"
},
{
"command": "extension.narrowPunctuation",
"title": ">?< 全角記号(!?)を半角に変換"
}
],
"menus": {
"editor/context": [
{
"when": "resourceLangId == markdown",
"command": "extension.widenAlphabet",
"group": "navigation"
},
{
"when": "resourceLangId == markdown",
"command": "extension.widenNumber",
"group": "navigation"
},
{
"when": "resourceLangId == markdown",
"command": "extension.widenPunctuation",
"group": "navigation"
},
{
"when": "resourceLangId == markdown",
"command": "extension.narrowAlphabet",
"group": "navigation"
},
{
"when": "resourceLangId == markdown",
"command": "extension.narrowNumber",
"group": "navigation"
},
{
"when": "resourceLangId == markdown",
"command": "extension.narrowPunctuation",
"group": "navigation"
},
{
"when": "resourceLangId == plaintext",
"command": "extension.widenAlphabet",
"group": "navigation"
},
{
"when": "resourceLangId == plaintext",
"command": "extension.widenNumber",
"group": "navigation"
},
{
"when": "resourceLangId == plaintext",
"command": "extension.widenPunctuation",
"group": "navigation"
},
{
"when": "resourceLangId == plaintext",
"command": "extension.narrowAlphabet",
"group": "navigation"
},
{
"when": "resourceLangId == plaintext",
"command": "extension.narrowNumber",
"group": "navigation"
},
{
"when": "resourceLangId == plaintext",
"command": "extension.narrowPunctuation",
"group": "navigation"
}
]
}
},
"repository": {
"type": "git",
"url": "https://github.com/8amjp/vsce-convertwidth.git"
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^7.0.70",
"tslint": "^5.11.0",
"typescript": "^2.9.2",
"vscode": "^1.1.21"
}
}