-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.1 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
{
"name": "fontforge-vscode",
"displayName": "FontForge",
"description": "FontForge support for VS Code",
"version": "0.0.2",
"publisher": "xiangdong-zeng",
"author": {
"name": "Xiangdong Zeng"
},
"readme": "README.md",
"icon": "icon.png",
"license": "MIT",
"homepage": "https://github.com/Stone-Zeng/fontforge-vscode",
"repository": {
"type": "git",
"url": "https://github.com/Stone-Zeng/fontforge-vscode.git"
},
"bugs": {
"url": "https://github.com/Stone-Zeng/fontforge-vscode/issues"
},
"engines": {
"vscode": "^1.18.0"
},
"categories": [
"Programming Languages"
],
"keywords": ["fontforge", "font"],
"contributes": {
"languages": [{
"id": "sfd",
"aliases": ["Spline Font Database", "sfd"],
"extensions": [".sfd", ".glyph"],
"configuration": "./sfd-configuration.json"
}],
"grammars": [{
"language": "sfd",
"scopeName": "text.sfd",
"path": "./syntaxes/sfd.json"
}]
}
}