-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.53 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.53 KB
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
{
"name": "vscode-a2ml",
"displayName": "A2ML - AI-to-Machine Language",
"description": "Syntax highlighting, language configuration, and snippets for A2ML (.a2ml) files",
"version": "0.1.0",
"publisher": "hyperpolymath",
"author": {
"name": "Jonathan D.A. Jewell",
"email": "j.d.a.jewell@open.ac.uk"
},
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/hyperpolymath/vscode-a2ml"
},
"bugs": {
"url": "https://github.com/hyperpolymath/vscode-a2ml/issues"
},
"homepage": "https://github.com/hyperpolymath/vscode-a2ml#readme",
"engines": {
"vscode": "^1.75.0"
},
"categories": [
"Programming Languages"
],
"keywords": [
"a2ml",
"ai-to-machine-language",
"syntax-highlighting",
"attestation"
],
"icon": "icons/a2ml-icon.png",
"galleryBanner": {
"color": "#1e1e2e",
"theme": "dark"
},
"contributes": {
"languages": [
{
"id": "a2ml",
"aliases": [
"A2ML",
"AI-to-Machine Language"
],
"extensions": [
".a2ml"
],
"configuration": "./language-configuration.json",
"icon": {
"light": "./icons/a2ml-icon.svg",
"dark": "./icons/a2ml-icon.svg"
}
}
],
"grammars": [
{
"language": "a2ml",
"scopeName": "source.a2ml",
"path": "./syntaxes/a2ml.tmLanguage.json"
}
],
"snippets": [
{
"language": "a2ml",
"path": "./snippets/a2ml.json"
}
]
}
}