-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.52 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
55
56
57
{
"name": "object-pascal-syntax-highlighting",
"displayName": "Object Pascal Syntax Highlighter",
"description": "Provides syntax highlighting Object Pascal files. Fork of Pascal Language Basics by Anson Yeung.",
"version": "0.0.3",
"publisher": "thevikke",
"license": "MIT",
"icon": "images/Pascal.png",
"repository": {
"type": "git",
"url": "https://github.com/thevikke/object-pascal-syntax-highlighting"
},
"bugs": {
"url": "https://github.com/thevikke/object-pascal-syntax-highlighting/issues",
"email": "[email protected]"
},
"engines": {
"vscode": "^1.30.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "objectpascal",
"aliases": [
"ObjectPascal",
"objectpascal"
],
"extensions": [
".pas"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "objectpascal",
"scopeName": "source.objectpascal",
"path": "./syntaxes/objectpascal.tmLanguage.json",
"embeddedLanguages": {
"meta.embedded.asm": "source.asm"
}
}
]
},
"scripts": {
"prepare": "js-yaml syntaxes/objectpascal.tmLanguage.yaml > syntaxes/objectpascal.tmLanguage.json",
"clean": "rm -f syntaxes/objectpascal.tmLanguage.json",
"patch": "npm run prepare && vsce publish patch && npm run clean"
},
"devDependencies": {
"js-yaml": "^3.13.1",
"vsce": "^2.7.0"
}
}