forked from sabertazimi/LaTeX-snippets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 817 Bytes
/
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
{
"name": "latex-snippets",
"displayName": "LaTeX Snippets",
"publisher": "sabertazimi",
"license": "MIT",
"homepage": "https://github.com/sabertazimi/LaTeX-snippets",
"repository": {
"type": "git",
"url": "https://github.com/sabertazimi/LaTeX-snippets.git"
},
"bugs": {
"url": "https://github.com/sabertazimi/LaTeX-snippets/issues"
},
"icon": "images/icon.png",
"description": "Powerful LaTeX Snippets for CS Paper Writing",
"version": "0.1.1",
"engines": {
"vscode": "^1.30.0"
},
"categories": [
"Snippets"
],
"contributes": {
"snippets": [
{
"language": "latex",
"path": "./snippets/snippets.json"
}
]
},
"scripts": {
"publish": "vsce package && vsce publish"
},
"devDependencies": {
"vsce": "^1.54.0"
}
}