-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.05 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.05 KB
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
{
"name": "skn-snippets",
"displayName": "skn-snippets",
"description": "Simple Snippets Extension For Visual Studio Code",
"version": "1.0.0",
"publisher": "shywn-mrk",
"author": {
"name": "Shayan Karimi",
"email": "shayankarimi0078@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/shywn-mrk/skn-snippets"
},
"engines": {
"vscode": "^1.47.0"
},
"categories": [
"Snippets"
],
"contributes": {
"snippets": [
{
"language": "javascriptreact",
"path": "./snippets/react.code-snippets"
},
{
"language": "javascript",
"path": "./snippets/react.code-snippets"
},
{
"language": "python",
"path": "./snippets/django.code-snippets"
},
{
"language": "javascript",
"path": "./snippets/node.code-snippets"
}
]
}
}