-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.17 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.17 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
56
{
"name": "c42-stonescript",
"displayName": "Stonescript",
"description": "Syntax highlighting for Stonescript",
"version": "1.0.16",
"publisher": "Catalyst-42",
"repository": {
"type": "git",
"url": "https://github.com/Catalyst-42/stonescript"
},
"engines": {
"vscode": "^1.50.0"
},
"activationEvents": [
"onLanguage:stonescript"
],
"icon": "img/icon.png",
"main": "src/extension.js",
"scripts": {
"build": "js-yaml syntaxes/stonescript.tmLanguage.yaml > syntaxes/stonescript.tmLanguage.json"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "stonescript",
"aliases": [
"Stonescript",
"stonescript"
],
"extensions": [
".txt"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "stonescript",
"scopeName": "source.txt",
"path": "./syntaxes/stonescript.tmLanguage.json"
}
]
},
"devDependencies": {
"js-yaml": "^3.14.0"
},
"__metadata": {
"id": "0a8b8e8d-c23c-456f-9b08-f94824116fcc",
"publisherDisplayName": "Catalyst-42",
"publisherId": "49804593-0790-4ba7-8fb5-5c54fa99e66d",
"isPreReleaseVersion": false
}
}