-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 loc) · 1.23 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
{
"name": "act-r-model-lang",
"displayName": "ACT-R Model Lang",
"description": "Syntax Support Prototype for ACT-R Model files",
"publisher": "fmagin",
"keywords": [
"actr",
"act-r",
"lisp"
],
"version": "0.2.0",
"engines": {
"vscode": "^1.42.0"
},
"license": "SEE LICENSE FILE",
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "actr",
"aliases": [
"ACT-R Model",
"actr"
],
"extensions": [
".lisp",
".actr"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "actr",
"scopeName": "source.actr",
"path": "./syntaxes/actr.tmLanguage.json"
}
]
},
"devDependencies": {
"js-yaml": "^3.14.0"
},
"repository": {
"type": "git",
"url": "https://github.com/fmagin/vscode-act-r.git"
},
"homepage": "https://github.com/fmagin/vscode-act-rblob/master/README.md"
}