-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.48 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
51
52
53
54
{ "name": "rml-syntax"
, "displayName": "Rml Syntax"
, "description": "Syntax highlighting extension for Ribbon Meta Language"
, "icon": "images/emblem.png"
, "galleryBanner":
{ "color": "#fad0f4"
, "theme": "light"
}
, "version": "0.1.0"
, "publisher": "rml-lang"
, "license": "Apache-2.0"
, "repository":
{ "type": "git"
, "url": "https://github.com/ribbon-lang"
}
, "engines":
{ "vscode": "^1.22.0" }
, "categories":
[ "Programming Languages" ]
, "contributes":
{ "languages":
[ { "id": "rml"
, "aliases":
[ "Rml", "rml" ]
, "extensions":
[ ".rml" ]
, "configuration": "./dist/rml.config.json"
, "firstLine": "^#!\\s*/.*\\brmli[0-9.-]*\\b"
}
]
, "grammars":
[ { "language": "rml"
, "scopeName": "source.rml"
, "path": "./dist/rml.tmLanguage.json"
}
, { "scopeName": "markdown.rml.codeblock"
, "path": "./dist/rml_codeblock.json"
, "injectTo": [ "text.html.markdown" ]
, "embeddedLanguages": { "meta.embedded.block.rml": "rml" }
}
]
}
, "type": "module"
, "scripts":
{ "build": "vscgb --name rml ./src"
, "package": "vsce package"
, "install-extension": "vscgi"
}
, "devDependencies":
{ "@types/vscode-grammar": "github:noxabellus/vscode-grammar-types"
, "vscode-grammar-builder": "github:noxabellus/vscode-grammar-builder"
, "typescript": "^5.3.3"
}
}