-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
40 lines (40 loc) · 902 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
36
37
38
39
40
{
"name": "vscode-phoenix-snippets",
"displayName": "Phoenix Snippets",
"description": "Code snippets for Phoenix (Elixir) projects in VS Code (.ex, .html.eex, .html.leex)",
"version": "1.3.1",
"publisher": "jamilabreu",
"repository": {
"type": "git",
"url": "https://github.com/jamilabreu/vscode-phoenix-snippets"
},
"icon": "images/phoenix.png",
"engines": {
"vscode": "^1.48.0"
},
"categories": [
"Snippets"
],
"contributes": {
"snippets": [
{
"language": "elixir",
"path": "./snippets/elixir.code-snippets"
},
{
"language": "html-eex",
"path": "./snippets/eex.code-snippets"
},
{
"language": "phoenix-heex",
"path": "./snippets/eex.code-snippets"
}
]
},
"scripts": {
"deploy": "vsce publish"
},
"devDependencies": {
"@vscode/vsce": "^2.15.0"
}
}