-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.37 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
58
59
60
{
"name": "shards",
"displayName": "Shards language support",
"description": "Language support for the Shards programming language.",
"version": "0.0.12",
"publisher": "fragcolor",
"repository": {
"type": "git",
"url": "https://github.com/fragcolor-xyz/vscode-shards.git"
},
"url": "https://github.com/fragcolor-xyz/vscode-shards",
"author": "Fragcolor and contributors",
"license": "BSD-3-Clause",
"icon": "logo.png",
"categories": [
"Programming Languages"
],
"engines": {
"vscode": "^1.75.0"
},
"activationEvents": [],
"contributes": {
"configuration": {
"title": "Shards",
"properties": {
"shards.path": {
"type": "string",
"default": "/usr/local/bin/shards",
"description": "Full path to the 'shards' executable"
}
}
},
"configurationDefaults": {
"[shards]": {
"editor.wordSeparators": "`~!@#$%^&*()=+[{]}\\|;:'\",<>/?"
}
},
"languages": [{
"id": "shards",
"aliases": ["Shards", "shards"],
"extensions": [".shs"],
"configuration": "./highlight/language-configuration.json"
}],
"grammars": [{
"language": "shards",
"scopeName": "source.shards",
"path": "./highlight/shards.tmLanguage.json"
}],
"views": {
"explorer": [{
"id": "shards-outline",
"name": "Outline for Shards script"
}]
}
},
"main": "./out/extension.js",
"devDependencies": {
"shadow-cljs": "^2.25.4"
}
}