-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1023 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 1023 Bytes
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
{
"name": "reactnextjssnippets",
"displayName": "Next.js React Snippets by iJS",
"description": "React Snippets (ES6) tailored for Next.js apps",
"publisher": "iJS",
"version": "1.6.0",
"repository": {
"type": "git",
"url": "https://github.com/ijsto/reactnextjssnippets"
},
"icon": "images/logo.png",
"engines": {
"vscode": "^1.35.0"
},
"categories": [
"Snippets"
],
"author": "(Scott) Agirs Neminskis <scott@ijs.to>",
"keywords": [
"VSCode",
"Snippets",
"React",
"React Snippets",
"Nextjs",
"Nextjs Snippets"
],
"contributes": {
"snippets": [
{
"language": "javascriptreact",
"path": "./snippets/snippets.json"
},
{
"language": "javascript",
"path": "./snippets/snippets.json"
},
{
"language": "typescript",
"path": "./snippets/snippets-ts.json"
},
{
"language": "typescriptreact",
"path": "./snippets/snippets-ts.json"
}
]
}
}