-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
115 lines (115 loc) · 2.66 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "axentix-snippet",
"displayName": "Axentix Snippet",
"description": "This autocompletion extension gives snippets for the Axentix framework.",
"version": "2.0.1",
"publisher": "axentix",
"engines": {
"vscode": "^1.55.0"
},
"scripts": {
"build": "node combine.js",
"vscode:prepublish": "npm run build"
},
"galleryBanner": {
"color": "#3F3F3F",
"theme": "dark"
},
"categories": [
"Snippets"
],
"license": "MIT",
"keywords": [
"axentix",
"axentix snippets",
"snippets",
"axentix-extension",
"autocompletion"
],
"bugs": {
"url": "https://github.com/axentix/snippet-ax/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/axentix/snippet-ax.git"
},
"homepage": "https://github.com/axentix/snippet-ax/blob/master/README.md",
"markdown": "github",
"icon": "images/logo.jpg",
"contributes": {
"snippets": [
{
"language": "html",
"path": "./snippets/snippets.code-snippets"
},
{
"language": "php",
"path": "./snippets/snippets.code-snippets"
},
{
"language": "vue",
"path": "./snippets/snippets.code-snippets"
},
{
"language": "vue-html",
"path": "./snippets/snippets.code-snippets"
},
{
"language": "blade",
"path": "./snippets/snippets.code-snippets"
},
{
"language": "ejs",
"path": "./snippets/snippets.code-snippets"
},
{
"language": "handlebars",
"path": "./snippets/snippets.code-snippets"
},
{
"language": "latte",
"path": "./snippets/snippets.code-snippets"
},
{
"language": "plaintext",
"path": "./snippets/snippets.code-snippets"
},
{
"language": "twig",
"path": "./snippets/snippets.code-snippets"
},
{
"language": "django-html",
"path": "./snippets/snippets.code-snippets"
},
{
"language": "jinja-html",
"path": "./snippets/snippets.code-snippets"
},
{
"language": "nunjucks",
"path": "./snippets/snippets.code-snippets"
},
{
"language": "erb",
"path": "./snippets/snippets.code-snippets"
},
{
"language": "razor",
"path": "./snippets/snippets.code-snippets"
},
{
"language": "HTML (Eex)",
"path": "./snippets/snippets.code-snippets"
},
{
"language": "tpl",
"path": "./snippets/snippets.code-snippets"
},
{
"language": "edge",
"path": "./snippets/snippets.code-snippets"
}
]
}
}