-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.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
{
"name": "remix-run-snippets",
"displayName": "Remix Run Snippets",
"description": "Remix Run Snippets for a faster development.",
"version": "1.2.1",
"publisher": "amimaro",
"license": "MIT",
"icon": "icon.png",
"repository": {
"url": "https://github.com/amimaro/remix-run-snippets.git",
"type": "git"
},
"engines": {
"vscode": "^1.63.0"
},
"categories": [
"Snippets"
],
"keywords": [
"remix",
"remix.run",
"remix run",
"remix run snippets",
"snippet",
"snippets",
"code snippets"
],
"contributes": {
"snippets": [
{
"language": "javascript",
"path": "./snippets/javascript.json"
},
{
"language": "javascriptreact",
"path": "./snippets/javascript.json"
},
{
"language": "typescript",
"path": "./snippets/typescript.json"
},
{
"language": "typescriptreact",
"path": "./snippets/typescript.json"
}
]
}
}