-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (52 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (52 loc) · 1.4 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
{
"name": "genexpr-vscode",
"displayName": "GenExpr for VS Code",
"description": "Syntax highlighting and snippets for Cycling 74's GenExpr DSP language",
"version": "0.0.1",
"publisher": "your-publisher-id",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/GenExprForVSCode.git"
},
"homepage": "https://github.com/yourusername/GenExprForVSCode#readme",
"bugs": {
"url": "https://github.com/yourusername/GenExprForVSCode/issues"
},
"keywords": [
"genexpr",
"max",
"msp",
"dsp",
"audio",
"syntax-highlighting"
],
"engines": {
"vscode": "^1.11.0"
},
"categories": [
"Languages"
],
"contributes": {
"languages": [{
"id": "genexpr",
"aliases": ["GenExpr", "genexpr"],
"extensions": [".gendsp",".genexpr"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "genexpr",
"scopeName": "source.genexpr",
"path": "./syntaxes/GenExpr.tmLanguage"
}],
"snippets": [
{
"language": "genexpr",
"path": "./snippets/global.json"
},
{
"language": "genexpr",
"path": "./snippets/gen~.json"
}
]
}
}