-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.04 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
{
"name": "nova-js-vsce",
"publisher": "novajs",
"displayName": "Nova.js",
"description": "Add carefully developed and dependency-free React hooks to your project",
"version": "1.2.0",
"license": "MIT",
"engines": {
"vscode": "^1.75.0"
},
"categories": [
"Snippets"
],
"keywords": [
"react",
"hooks",
"javascript",
"typescript"
],
"icon": "images/icon.png",
"galleryBanner": {
"color": "#1b1b1f",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/novajslabs/vsce"
},
"author": "Daniel Castillo <[email protected]>",
"contributes": {
"snippets": [
{
"language": "javascript",
"path": "./snippets/js.code-snippets"
},
{
"language": "javascriptreact",
"path": "./snippets/js.code-snippets"
},
{
"language": "typescript",
"path": "./snippets/ts.code-snippets"
},
{
"language": "typescriptreact",
"path": "./snippets/ts.code-snippets"
}
]
}
}