-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.08 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
68
69
70
71
72
73
74
75
76
{
"name": "xperience-community-vscode-snippets",
"version": "1.0.3",
"displayName": "Xperience Community: VS Code Snippets",
"description": "A collection of VS Code snippets for Xperience by Kentico, distributed as a VS Code extension",
"scripts": {
"package": "vsce package",
"publish": "vsce publish",
"test": "echo \"Error: no test specified\" && exit 1"
},
"publisher": "SeanGWright",
"repository": {
"type": "git",
"url": "git+https://github.com/seangwright/xperience-community-vscode-snippets.git"
},
"contributes": {
"snippets": [
{
"language": "csharp",
"path": "./src/snippets/admin-snippets.csharp.json"
},
{
"language": "csharp",
"path": "./src/snippets/page-builder-snippets.csharp.json"
},
{
"language": "csharp",
"path": "./src/snippets/ui-form-component-snippets.csharp.json"
},
{
"language": "typescriptreact",
"path": "./src/snippets/ui-form-component-snippets.typescriptreact.json"
},
{
"language": "csharp",
"path": "./src/snippets/validation-rule-snippets.csharp.json"
},
{
"language": "typescriptreact",
"path": "./src/snippets/validation-rule-snippets.typescriptreact.json"
},
{
"language": "csharp",
"path": "./src/snippets/visibility-condition-snippets.csharp.json"
}
]
},
"keywords": [
"xperience by kentico",
"kentico",
"snippets"
],
"pricing": "Free",
"icon": "images/Icon.png",
"galleryBanner": {
"color": "#ffffff",
"theme": "light"
},
"categories": [
"Snippets"
],
"author": "Sean G. Wright <[email protected]> (https://www.seangwright.me/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/seangwright/xperience-community-vscode-snippets/issues"
},
"homepage": "https://github.com/seangwright/xperience-community-vscode-snippets#readme",
"devDependencies": {
"@vscode/vsce": "2.19.0",
"prettier": "2.8.8"
},
"engines": {
"vscode": "^1.70.0",
"node": ">= 18.*"
}
}