-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 995 Bytes
/
package.json
File metadata and controls
49 lines (49 loc) · 995 Bytes
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
{
"name": "cookeylang",
"displayName": "CookeyLang",
"description": "Syntax highlighting and language support for CookeyLang",
"version": "1.2.5",
"publisher": "CookeyLangVSCode",
"engines": {
"vscode": "^1.51.0"
},
"categories": [
"Programming Languages"
],
"repository": {
"url": "https://github.com/CookeyLang/CookeyLangVScodeExtension"
},
"contributes": {
"languages": [
{
"id": "cookey",
"aliases": [
"cookeyLang",
"cookey"
],
"extensions": [
".clf"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "cookey",
"scopeName": "source.clf",
"path": "./src/syntaxes/cookey.tmLanguage.json"
}
],
"snippets": [
{
"language": "cookey",
"path": "src/intelisense/intelisense.json"
}
]
},
"__metadata": {
"id": "bbf3ad30-c44d-4971-af5f-f2f0cb4d09dd",
"publisherDisplayName": "cookeylang-vsc",
"publisherId": "c0f39744-9c36-4be9-b2c0-49e1d8935b56"
}
}