@flowfuse/nr-launcher 1.13.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +182 -0
- package/LICENSE +178 -0
- package/README.md +28 -0
- package/index.js +148 -0
- package/lib/admin.js +95 -0
- package/lib/auditLogger/index.js +41 -0
- package/lib/auth/adminAuth.js +77 -0
- package/lib/auth/httpAuthMiddleware.js +71 -0
- package/lib/auth/httpAuthPlugin.js +10 -0
- package/lib/auth/strategy.js +34 -0
- package/lib/context/FFContextStorage.js +422 -0
- package/lib/context/index.js +9 -0
- package/lib/context/memoryCache.js +156 -0
- package/lib/launcher.js +695 -0
- package/lib/logBuffer.js +57 -0
- package/lib/resources/resourcePlugin.js +20 -0
- package/lib/resources/sample.js +57 -0
- package/lib/resources/sampleBuffer.js +85 -0
- package/lib/runtimeSettings.js +320 -0
- package/lib/storage/index.js +92 -0
- package/lib/storage/libraryPlugin.js +90 -0
- package/lib/theme/LICENSE +178 -0
- package/lib/theme/README.md +24 -0
- package/lib/theme/common/forge-common.css +108 -0
- package/lib/theme/common/forge-common.js +75 -0
- package/lib/theme/forge-dark/forge-dark-custom.css +2 -0
- package/lib/theme/forge-dark/forge-dark-custom.js +1 -0
- package/lib/theme/forge-dark/forge-dark-monaco.json +213 -0
- package/lib/theme/forge-dark/forge-dark-theme.css +12 -0
- package/lib/theme/forge-dark/forge-dark.js +61 -0
- package/lib/theme/forge-light/forge-light-custom.css +2 -0
- package/lib/theme/forge-light/forge-light-custom.js +1 -0
- package/lib/theme/forge-light/forge-light-monaco.json +227 -0
- package/lib/theme/forge-light/forge-light-theme.css +12 -0
- package/lib/theme/forge-light/forge-light.js +62 -0
- package/package.json +72 -0
- package/resources/favicon-16x16.png +0 -0
- package/resources/favicon-32x32.png +0 -0
- package/resources/favicon.ico +0 -0
- package/resources/ff-nr.png +0 -0
|
@@ -0,0 +1,213 @@
|
|
|
1
|
+
{
|
|
2
|
+
"base": "vs-dark",
|
|
3
|
+
"inherit": true,
|
|
4
|
+
"rules": [
|
|
5
|
+
{
|
|
6
|
+
"background": "1f2937",
|
|
7
|
+
"token": ""
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"foreground": "6272a4",
|
|
11
|
+
"token": "comment"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"foreground": "f1fa8c",
|
|
15
|
+
"token": "string"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"foreground": "bd93f9",
|
|
19
|
+
"token": "constant.numeric"
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"foreground": "bd93f9",
|
|
23
|
+
"token": "constant.language"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"foreground": "bd93f9",
|
|
27
|
+
"token": "constant.character"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"foreground": "bd93f9",
|
|
31
|
+
"token": "constant.other"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"foreground": "ffb86c",
|
|
35
|
+
"token": "variable.other.readwrite.instance"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"foreground": "ff79c6",
|
|
39
|
+
"token": "constant.character.escaped"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"foreground": "ff79c6",
|
|
43
|
+
"token": "constant.character.escape"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"foreground": "ff79c6",
|
|
47
|
+
"token": "string source"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"foreground": "ff79c6",
|
|
51
|
+
"token": "string source.ruby"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"foreground": "ff79c6",
|
|
55
|
+
"token": "keyword"
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"foreground": "ff79c6",
|
|
59
|
+
"token": "storage"
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"foreground": "8be9fd",
|
|
63
|
+
"fontStyle": "italic",
|
|
64
|
+
"token": "storage.type"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"foreground": "50fa7b",
|
|
68
|
+
"fontStyle": "underline",
|
|
69
|
+
"token": "entity.name.class"
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"foreground": "50fa7b",
|
|
73
|
+
"fontStyle": "italic underline",
|
|
74
|
+
"token": "entity.other.inherited-class"
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"foreground": "50fa7b",
|
|
78
|
+
"token": "entity.name.function"
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"foreground": "ffb86c",
|
|
82
|
+
"fontStyle": "italic",
|
|
83
|
+
"token": "variable.parameter"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"foreground": "ff79c6",
|
|
87
|
+
"token": "entity.name.tag"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"foreground": "50fa7b",
|
|
91
|
+
"token": "entity.other.attribute-name"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"foreground": "8be9fd",
|
|
95
|
+
"token": "support.function"
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"foreground": "6be5fd",
|
|
99
|
+
"token": "support.constant"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"foreground": "66d9ef",
|
|
103
|
+
"fontStyle": " italic",
|
|
104
|
+
"token": "support.type"
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"foreground": "66d9ef",
|
|
108
|
+
"fontStyle": " italic",
|
|
109
|
+
"token": "support.class"
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"foreground": "f8f8f0",
|
|
113
|
+
"background": "ff79c6",
|
|
114
|
+
"token": "invalid"
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"foreground": "f8f8f0",
|
|
118
|
+
"background": "bd93f9",
|
|
119
|
+
"token": "invalid.deprecated"
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"foreground": "cfcfc2",
|
|
123
|
+
"token": "meta.structure.dictionary.json string.quoted.double.json"
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"foreground": "6272a4",
|
|
127
|
+
"token": "meta.diff"
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"foreground": "6272a4",
|
|
131
|
+
"token": "meta.diff.header"
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"foreground": "ff79c6",
|
|
135
|
+
"token": "markup.deleted"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"foreground": "50fa7b",
|
|
139
|
+
"token": "markup.inserted"
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"foreground": "e6db74",
|
|
143
|
+
"token": "markup.changed"
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"foreground": "bd93f9",
|
|
147
|
+
"token": "constant.numeric.line-number.find-in-files - match"
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"foreground": "e6db74",
|
|
151
|
+
"token": "entity.name.filename"
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
"foreground": "f83333",
|
|
155
|
+
"token": "message.error"
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"foreground": "eeeeee",
|
|
159
|
+
"token": "punctuation.definition.string.begin.json - meta.structure.dictionary.value.json"
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"foreground": "eeeeee",
|
|
163
|
+
"token": "punctuation.definition.string.end.json - meta.structure.dictionary.value.json"
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"foreground": "8be9fd",
|
|
167
|
+
"token": "meta.structure.dictionary.json string.quoted.double.json"
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
"foreground": "f1fa8c",
|
|
171
|
+
"token": "meta.structure.dictionary.value.json string.quoted.double.json"
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"foreground": "50fa7b",
|
|
175
|
+
"token": "meta meta meta meta meta meta meta.structure.dictionary.value string"
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"foreground": "ffb86c",
|
|
179
|
+
"token": "meta meta meta meta meta meta.structure.dictionary.value string"
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
"foreground": "ff79c6",
|
|
183
|
+
"token": "meta meta meta meta meta.structure.dictionary.value string"
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
"foreground": "bd93f9",
|
|
187
|
+
"token": "meta meta meta meta.structure.dictionary.value string"
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
"foreground": "50fa7b",
|
|
191
|
+
"token": "meta meta meta.structure.dictionary.value string"
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"foreground": "ffb86c",
|
|
195
|
+
"token": "meta meta.structure.dictionary.value string"
|
|
196
|
+
}
|
|
197
|
+
],
|
|
198
|
+
"colors": {
|
|
199
|
+
"editor.foreground": "#f8f8f2",
|
|
200
|
+
"editor.background": "#1f2937",
|
|
201
|
+
"editorCursor.foreground": "#f8f8f0",
|
|
202
|
+
"dropdown.background": "#44475a",
|
|
203
|
+
"editor.selectionBackground": "#44475a70",
|
|
204
|
+
"editor.inactiveSelectionBackground": "#44475a30",
|
|
205
|
+
"editorWidget.background": "#44475a",
|
|
206
|
+
"list.hoverForeground": "#44475a",
|
|
207
|
+
"list.hoverBackground": "#F7F8FC",
|
|
208
|
+
"list.focusForeground": "#44475a",
|
|
209
|
+
"list.focusBackground": "#F7F8FC",
|
|
210
|
+
"list.activeSelectionForeground": "#44475a",
|
|
211
|
+
"list.activeSelectionBackground": "#F7F8FC"
|
|
212
|
+
}
|
|
213
|
+
}
|