-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
46 lines (46 loc) · 1.01 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
{
"name": "snippets-next-13",
"displayName": "Snippets simple Next.js 13",
"description": "Here is a snippet of Next.js 13 code for a folder app",
"icon": "./images/next-icon.png",
"repository": {
"type": "git",
"url": "https://github.com/arufars/snippet-next.git"
},
"publisher": "yuzu",
"version": "0.2.1",
"engines": {
"vscode": "^1.59.0"
},
"categories": [
"Snippets"
],
"contributes": {
"snippets": [
{
"language": "typescriptreact",
"path": "./snippets/snippets.code-snippets"
},
{
"language": "typescript",
"path": "./snippets/snippets.code-snippets"
},
{
"language": "javascriptreact",
"path": "./snippets/snippets.code-snippets"
},
{
"language": "javascript",
"path": "./snippets/snippets.code-snippets"
}
]
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"devDependencies": {
"@changesets/cli": "^2.26.1"
}
}