-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.04 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.04 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "lisp-rainbow-brackets",
"displayName": "Lisp Rainbow Brackets",
"description": "Rainbow bracket highlighting for Scheme, Racket, Common Lisp, and related Lisp dialects.",
"version": "0.0.3",
"publisher": "local",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"onLanguage:scheme",
"onLanguage:racket",
"onLanguage:commonlisp",
"onLanguage:lisp",
"onLanguage:clojure",
"onLanguage:janet"
],
"main": "out/extension.js",
"contributes": {
"languages": [
{
"id": "scheme"
},
{
"id": "racket"
},
{
"id": "commonlisp"
},
{
"id": "lisp"
}
],
"configuration": {
"title": "Lisp Rainbow Brackets",
"properties": {
"lispRainbowBrackets.enabled": {
"type": "boolean",
"default": true,
"description": "Enable rainbow bracket highlighting for Lisp-family buffers."
},
"lispRainbowBrackets.colors": {
"type": "array",
"default": [
"#ff6b6b",
"#f59f00",
"#51cf66",
"#22b8cf",
"#4c6ef5",
"#845ef7",
"#f06595",
"#94d82d"
],
"items": {
"type": "string"
},
"description": "Bracket colors used cyclically by nesting depth."
},
"lispRainbowBrackets.languages": {
"type": "array",
"default": [
"scheme",
"racket",
"commonlisp",
"lisp",
"clojure",
"janet"
],
"items": {
"type": "string"
},
"description": "Language IDs where rainbow bracket decorations should be applied."
}
}
}
},
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/vscode": "^1.85.0",
"@types/node": "^20.11.24",
"typescript": "^5.4.2"
}
}