-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
204 lines (204 loc) · 5.17 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
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
{
"name": "namucode",
"displayName": "Namucode",
"description": "나무위키 VSCode 확장 프로그램",
"publisher": "jhk1090",
"version": "1.2.3",
"engines": {
"vscode": "^1.68.0"
},
"icon": "images/Logo.png",
"bugs": {
"url": "https://github.com/jhk1090/namucode/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/jhk1090/namucode.git"
},
"homepage": "https://github.com/jhk1090/namucode/blob/main/README.md",
"categories": [
"Keymaps",
"Programming Languages",
"Themes",
"Snippets",
"Other"
],
"activationEvents": [
"onCommand:namucode.paragraphLevelDown",
"onCommand:namucode.paragraphLevelUp",
"onCommand:namucode.linkify",
"onCommand:namucode.paragraphSort",
"onView:tableOfContent"
],
"main": "./out/extension.js",
"contributes": {
"views": {
"explorer": [
{
"id": "tableOfContent",
"name": "목차",
"when": "resourceExtname == .namu"
}
]
},
"viewsWelcome": [
{
"view": "tableOfContent",
"contents": "표시할 목차가 없습니다.\n목차 자체가 없거나 목차 조직이 잘못되었을수도 있습니다.\n[자세히 알아보기](https://github.com/jhk1090/namucode/blob/main/TOC_ERROR.md)",
"when": "resourceExtname == .namu"
}
],
"commands": [
{
"command": "namucode.paragraphLevelDown",
"title": "문단 한단계 낮추기"
},
{
"command": "namucode.paragraphLevelUp",
"title": "문단 한단계 높이기"
},
{
"command": "namucode.linkify",
"title": "문자 링크화하기"
},
{
"command": "namucode.paragraphSort",
"title": "문단 자동 정렬"
}
],
"languages": [
{
"id": "namu",
"aliases": [
"Namuwiki Code"
],
"extensions": [
"namu"
],
"configuration": "./language-configuration.json",
"icon": {
"light": "images/Logo.svg",
"dark": "images/Logo.svg"
}
}
],
"grammars": [
{
"language": "namu",
"scopeName": "source.namu",
"path": "./syntaxes/key.tmLanguage.json"
}
],
"snippets": [
{
"language": "namu",
"path": "./snippets.json"
}
],
"keybindings": [
{
"command": "namucode.paragraphLevelDown",
"key": "ctrl+down",
"mac": "cmd+down",
"when": "editorTextFocus"
},
{
"command": "namucode.paragraphLevelUp",
"key": "ctrl+up",
"mac": "cmd+up",
"when": "editorTextFocus"
}
],
"configurationDefaults": {
"editor.tokenColorCustomizations": {
"[*Dark*]": {
"textMateRules": [
{
"scope": "string.quoted.double.namu",
"settings": {
"foreground": "#CE9178"
}
},
{
"scope": "markup.bold.namu",
"settings": {
"foreground": "#ffffff",
"fontStyle": "bold"
}
},
{
"scope": "markup.italic.namu",
"settings": {
"foreground": "#D4D4D4",
"fontStyle": "italic"
}
},
{
"scope": "markup.deleted.namu",
"settings": {
"foreground": "#D4D4D4",
"fontStyle": "strikethrough"
}
},
{
"scope": "variable.parameter.namu",
"settings": {
"foreground": "#89DDFF"
}
},
{
"scope": "keyword.control.namu",
"settings": {
"foreground": "#569CD6",
"fontStyle": ""
}
},
{
"scope": "support.constant.namu",
"settings": {
"foreground": "#fa7f5a"
}
},
{
"scope": "keyword.operator.namu",
"settings": {
"foreground": "#6A9955",
"fontStyle": "bold"
}
},
{
"scope": "comment.line.double-quote.namu",
"settings": {
"foreground": "#6d6d6d",
"fontStyle": "italic"
}
}
]
}
}
}
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "yarn run compile && yarn run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.1",
"@types/node": "16.x",
"@types/vscode": "^1.68.0",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"@vscode/test-electron": "^2.1.3",
"eslint": "^8.16.0",
"glob": "^8.0.3",
"mocha": "^10.0.0",
"typescript": "^4.7.2"
},
"dependencies": {}
}