-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.09 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.09 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
{
"name": "kspsyntax",
"displayName": "ksp - Kontakt Script Processor syntax",
"description": "Kontakt Script Processor syntax for Native Instruments Kontakt",
"version": "1.0.5",
"icon": "resources/Kontakt_Icon.png",
"license": "MIT",
"keywords": ["ksp","kontakt","native instruments","inoui samples"],
"publisher": "nmalleus-inouisamples",
"homepage": "https://www.inouisamples.com",
"private":"false",
"repository": {
"type": "git",
"url": "https://github.com/nmalleus/ksp"
},
"bugs": {
"url": "https://github.com/nmalleus/ksp/issues"
},
"engines": {
"vscode": "^1.84.2"
},
"categories": ["Programming Languages"],
"contributes": {
"languages": [{
"id": "ksp",
"aliases": ["Kontakt Script Processor", "ksp"],
"extensions": [".ksp"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "ksp",
"scopeName": "source.ksp",
"path": "./syntaxes/ksp.tmLanguage.json"
}]
}
}