-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 2.28 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
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
{
"name": "ahtml-django-snippets",
"displayName": "Advanced HTML & Django Snippets",
"description": "A comprehensive collection of HTML, Bootstrap 5, and Django template snippets",
"version": "1.1.0",
"publisher": "jamalihassan0307",
"main": "./extension.js",
"engines": {
"vscode": "^1.60.0"
},
"categories": [
"Snippets"
],
"keywords": [
"html",
"django",
"bootstrap",
"snippets",
"templates"
],
"icon": "images/django-logo.png",
"galleryBanner": {
"color": "#1e1e1e",
"theme": "dark"
},
"activationEvents": [
"onLanguage:html",
"onLanguage:python",
"onLanguage:django-html"
],
"contributes": {
"snippets": [
{
"language": "html",
"path": "./snippets/categories/html-basic.json"
},
{
"language": "html",
"path": "./snippets/categories/bootstrap-components.json"
},
{
"language": "html",
"path": "./snippets/categories/django-templates.json"
},
{
"language": "html",
"path": "./snippets/categories/forms.json"
},
{
"language": "html",
"path": "./snippets/categories/layout.json"
},
{
"language": "html",
"path": "./snippets/categories/seo-meta.json"
},
{
"language": "html",
"path": "./snippets/categories/accessibility.json"
},
{
"language": "python",
"path": "./snippets/categories/html-basic.json"
},
{
"language": "python",
"path": "./snippets/categories/bootstrap-components.json"
},
{
"language": "python",
"path": "./snippets/categories/django-templates.json"
},
{
"language": "python",
"path": "./snippets/categories/forms.json"
},
{
"language": "python",
"path": "./snippets/categories/layout.json"
},
{
"language": "python",
"path": "./snippets/categories/seo-meta.json"
},
{
"language": "python",
"path": "./snippets/categories/accessibility.json"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/jamalihassan0307/ahtml-django-snippets"
},
"bugs": {
"url": "https://github.com/jamalihassan0307/ahtml-django-snippets/issues"
},
"homepage": "https://github.com/jamalihassan0307/ahtml-django-snippets#readme",
"scripts": {
"package": "vsce package",
"publish": "vsce publish"
},
"devDependencies": {
"vsce": "^2.15.0"
},
"license": "MIT"
}