-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 954 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
38
39
40
41
42
{
"name": "js--snippet-good",
"displayName": "JS - Snippet Good!",
"description": "A collection of Javascript and React snippets the way I want them to be.",
"version": "1.7.1",
"publisher": "jimmydc",
"icon": "images/logo.png",
"repository": {
"type": "git",
"url": "https://github.com/Jimmydalecleveland/js--snippet-good.git"
},
"engines": {
"vscode": "^1.5.0"
},
"categories": [
"Snippets"
],
"contributes": {
"snippets": [
{
"language": "javascript",
"path": "./snippets/jsx.json"
},
{
"language": "javascriptreact",
"path": "./snippets/jsx.json"
},
{
"language": "typescript",
"path": "./snippets/ts.json"
},
{
"language": "typescriptreact",
"path": "./snippets/tsx.json"
},
{
"language": "css",
"path": "./snippets/styled-components-snippets.json"
}
]
}
}