-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
104 lines (104 loc) · 2.42 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
{
"name": "htmx-attributes",
"displayName": "HTMX Attributes",
"description": "HTMX attribute support for VSCode, enabling your HTMX workflow",
"type": "module",
"version": "0.7.0",
"publisher": "CraigRBroughton",
"engines": {
"vscode": "^1.22.0"
},
"repository": {
"type": "git",
"url": "https://github.com/CRBroughton/htmx-attributes.git"
},
"scripts": {
"build": "vsce package -o htmx-attributes-$npm_package_version.vsix",
"install": "npm run build && code --install-extension htmx-attributes-$npm_package_version.vsix",
"changeset": "npx changeset",
"changeset:status": "npx changeset status --verbose",
"changeset:version": "npx changeset version"
},
"keywords": [
"HTMX",
"HTML",
"Go",
"JSX",
"Snippets",
"Attributes",
"Tags"
],
"categories": [
"Snippets"
],
"contributes": {
"snippets": [
{
"language": "html",
"path": "./snippets/htmx-core-html.json"
},
{
"language": "html",
"path": "./snippets/htmx-add-html.json"
},
{
"language": "django-html",
"path": "./snippets/htmx-core-html.json"
},
{
"language": "django-html",
"path": "./snippets/htmx-add-html.json"
},
{
"language": "jinja-html",
"path": "./snippets/htmx-core-html.json"
},
{
"language": "jinja-html",
"path": "./snippets/htmx-add-html.json"
},
{
"language": "javascriptreact",
"path": "./snippets/htmx-core-jsx.json"
},
{
"language": "javascriptreact",
"path": "./snippets/htmx-add-jsx.json"
},
{
"language": "typescriptreact",
"path": "./snippets/htmx-core-jsx.json"
},
{
"language": "typescriptreact",
"path": "./snippets/htmx-add-jsx.json"
},
{
"language": "templ",
"path": "./snippets/htmx-core-templ.json"
},
{
"language": "templ",
"path": "./snippets/htmx-add-templ.json"
},
{
"language": "astro",
"path": "./snippets/htmx-core-html.json"
},
{
"language": "astro",
"path": "./snippets/htmx-add-html.json"
}
]
},
"devDependencies": {
"bun-types": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@changesets/cli": "^2.27.1",
"hono": "^3.11.11"
}
}