-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
35 lines (35 loc) · 853 Bytes
/
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
{
"name": "phoenix-liveview-snippets",
"displayName": "Phoenix LiveView snippets",
"description": "A well documented set of snippets commonly used when writing LiveView code",
"version": "2.7.1",
"publisher": "phoenix-liveview-snippets",
"engines": {
"vscode": "^1.28.0"
},
"repository": "https://github.com/blakedietz/vscode-snippets-liveview",
"categories": [
"Snippets"
],
"contributes": {
"snippets": [
{
"language": "elixir",
"path": "./elixir.code-snippets"
},
{
"language": "phoenix-heex",
"path": "./phoenix-heex.code-snippets"
},
{
"language": "html",
"path": "./phoenix-heex.code-snippets"
},
{
"language": "eex",
"path": "./phoenix-heex.code-snippets"
}
]
},
"icon": "images/icon.webp"
}