-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.21 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
{
"name": "hook",
"displayName": "Hook",
"description": "Visual Studio Code support for Hook Programming Language",
"icon": "images/logo.png",
"version": "0.1.24",
"publisher": "fabiosvm",
"engines": {
"vscode": "^1.14.0"
},
"categories": [
"Programming Languages"
],
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/hook-lang/hook-vscode-extension"
},
"contributes": {
"languages": [
{
"id": "hook",
"aliases": [
"Hook",
"hook"
],
"extensions": [
".hk",
".hook"
],
"firstLine": "^#!\\s*/?.*\\bhook[0-9.-]*\\b",
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "hook",
"scopeName": "source.hook",
"path": "./syntaxes/hook.tmLanguage.json"
}
],
"snippets": [
{
"language": "hook",
"path": "./snippets/builtin-functions.json"
},
{
"language": "hook",
"path": "./snippets/core-module-functions.json"
},
{
"language": "hook",
"path": "./snippets/statements.json"
}
]
},
"__metadata": {
"id": "015b31c1-a0e1-46bb-8ca5-6cf6a3c478a3",
"publisherId": "d8bf8c14-9726-4226-a8dd-263af26f154f",
"publisherDisplayName": "hook-lang"
}
}