-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.51 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.51 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
{
"name": "deltascript-for-stipple-effect",
"displayName": "DeltaScript for Stipple Effect",
"description": "Syntax highlighting for Stipple Effect scripts",
"version": "1.1.4",
"publisher": "jordanbunke",
"icon": "./icon.png",
"sponsor": {
"url": "https://stipple-effect.github.io/buy"
},
"engines": {
"vscode": "^1.23.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "deltascript",
"aliases": [
"DeltaScript",
"deltascript"
],
"extensions": [
".ds"
],
"configuration": "./language-configuration.json"
},
{
"id": "se_ext",
"aliases": [
"DeltaScript for Stipple Effect",
"deltascript"
],
"extensions": [
".ses"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "deltascript",
"scopeName": "source.ds",
"path": "./syntaxes/deltascript.tmLanguage.json"
},
{
"language": "se_ext",
"scopeName": "source.ses",
"path": "./syntaxes/se_ext.tmLanguage.json"
}
]
}
}