-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.58 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.58 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "pluto-syntax-highlighting",
"displayName": "Pluto Syntax Highlighting",
"description": "Provides syntax highlighting and snippets for Pluto, a Lua dialect.",
"keywords": [
"Pluto language"
],
"version": "0.8.0",
"publisher": "calamity-inc",
"icon": "icon.png",
"repository": "https://github.com/PlutoLang/Syntax-Highlighting",
"scripts": {
"test": "node test.js",
"zip": "git archive --format zip --output Pluto-Syntax-Highlighting.zip main"
},
"engines": {
"vscode": "^1.65.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "pluto",
"aliases": [
"Pluto"
],
"extensions": [
".pluto"
],
"configuration": "./language-config.json",
"icon": {
"light": "icon-flat.png",
"dark": "icon-flat.png"
}
}
],
"grammars": [
{
"language": "pluto",
"scopeName": "source.pluto",
"path": "./Pluto.tmbundle/Syntaxes/Pluto.tmLanguage"
}
],
"snippets": [
{
"language": "pluto",
"path": "./Pluto.tmbundle/Snippets/_vscode.code-snippets"
}
],
"commands": [
{
"command": "pluto-syntax-highlighting.run",
"title": "Pluto: Run Script"
},
{
"command": "pluto-syntax-highlighting.lint",
"title": "Pluto: Lint Script"
}
]
},
"main": "vs-code-circus.js",
"activationEvents": [
"onCommand:pluto-syntax-highlighting.run",
"onCommand:pluto-syntax-highlighting.lint"
],
"devDependencies": {
"vscode-oniguruma": "^2.0.1",
"vscode-textmate": "^9.2.0"
}
}