-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
67 lines (67 loc) · 1.67 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "sanity-snippets",
"displayName": "Sanity.io snippets",
"publisher": "hdoro",
"description": "Speed up your Sanity.io development with snippets tailored for building schemas and desk structures ✨",
"version": "1.0.0",
"author": {
"email": "opensource@hdoro.dev",
"name": "Henrique Doro",
"url": "https://hdoro.dev"
},
"repository": "https://github.com/hdoro/sanity-snippets",
"icon": "media/icon.png",
"badges": [
{
"description": "Install on VS Code Marketplace",
"url": "https://vsmarketplacebadge.apphb.com/version-short/hdoro.sanity-snippets.svg?style=flat-square",
"href": "https://marketplace.visualstudio.com/items?itemName=hdoro.sanity-snippets"
}
],
"engines": {
"vscode": "^1.50.0"
},
"categories": [
"Snippets"
],
"keywords": [
"Sanity.io",
"Headless CMS",
"Snippets"
],
"contributes": {
"snippets": [
{
"language": "javascript",
"path": "./snippets/schema.code-snippets"
},
{
"language": "typescript",
"path": "./snippets/schema.code-snippets"
},
{
"language": "javascript",
"path": "./snippets/structure.code-snippets"
},
{
"language": "typescript",
"path": "./snippets/structure.code-snippets"
},
{
"language": "javascript",
"path": "./snippets/groq.code-snippets"
},
{
"language": "typescript",
"path": "./snippets/groq.code-snippets"
},
{
"language": "groq",
"path": "./snippets/groq.code-snippets"
}
]
},
"scripts": {
"packageAndPublish": "vsce package && vsce publish"
}
}