firefly-compiler 0.5.34 → 0.5.36
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/.hintrc +4 -4
- package/.vscode/settings.json +4 -4
- package/bin/Release.ff +157 -154
- package/bin/firefly.mjs +1 -1
- package/compiler/Builder.ff +275 -277
- package/compiler/Compiler.ff +234 -233
- package/compiler/Dependencies.ff +186 -187
- package/compiler/DependencyLock.ff +17 -17
- package/compiler/Deriver.ff +23 -31
- package/compiler/Dictionaries.ff +1 -1
- package/compiler/Inference.ff +43 -20
- package/compiler/JsEmitter.ff +1437 -1282
- package/compiler/LspHook.ff +202 -202
- package/compiler/Main.ff +25 -24
- package/compiler/ModuleCache.ff +178 -178
- package/compiler/Parser.ff +36 -109
- package/compiler/Resolver.ff +5 -8
- package/compiler/Substitution.ff +1 -1
- package/compiler/Syntax.ff +1 -16
- package/compiler/Token.ff +9 -0
- package/compiler/Tokenizer.ff +4 -0
- package/compiler/Workspace.ff +88 -88
- package/core/.firefly/include/package.json +5 -5
- package/core/.firefly/package.ff +2 -2
- package/core/Any.ff +26 -30
- package/core/Array.ff +298 -265
- package/core/Atomic.ff +63 -64
- package/core/Box.ff +7 -7
- package/core/BrowserSystem.ff +40 -40
- package/core/Buffer.ff +185 -152
- package/core/BuildSystem.ff +156 -148
- package/core/Channel.ff +95 -92
- package/core/Char.ff +3 -2
- package/core/Core.ff +16 -23
- package/core/Crypto.ff +94 -96
- package/core/Equal.ff +41 -36
- package/core/Error.ff +15 -10
- package/core/FileHandle.ff +45 -37
- package/core/Float.ff +176 -200
- package/core/HttpClient.ff +142 -148
- package/core/Instant.ff +6 -8
- package/core/Int.ff +40 -24
- package/core/IntMap.ff +61 -39
- package/core/Js.ff +305 -0
- package/core/JsSystem.ff +135 -114
- package/core/JsValue.ff +303 -159
- package/core/Json.ff +423 -443
- package/core/List.ff +482 -486
- package/core/Lock.ff +108 -144
- package/core/Log.ff +25 -14
- package/core/NodeSystem.ff +198 -191
- package/core/Ordering.ff +160 -161
- package/core/Path.ff +377 -409
- package/core/Queue.ff +90 -0
- package/core/Random.ff +140 -134
- package/core/RbMap.ff +216 -216
- package/core/Serializable.ff +16 -13
- package/core/Show.ff +44 -43
- package/core/SourceLocation.ff +68 -68
- package/core/Stream.ff +1 -1
- package/core/String.ff +224 -202
- package/core/StringMap.ff +58 -36
- package/core/Task.ff +165 -149
- package/experimental/benchmarks/ListGrab.ff +23 -23
- package/experimental/benchmarks/ListGrab.java +55 -55
- package/experimental/benchmarks/Pyrotek45.ff +30 -30
- package/experimental/benchmarks/Pyrotek45.java +64 -64
- package/experimental/bidirectional/Bidi.ff +88 -88
- package/experimental/lines/Main.ff +40 -0
- package/experimental/random/Index.ff +53 -53
- package/experimental/random/Process.ff +120 -120
- package/experimental/random/RunLength.ff +65 -65
- package/experimental/random/Scrape.ff +51 -51
- package/experimental/random/Symbols.ff +73 -73
- package/experimental/random/Tensor.ff +52 -52
- package/experimental/random/Units.ff +36 -36
- package/experimental/s3/S3TestAuthorizationHeader.ff +39 -39
- package/experimental/s3/S3TestPut.ff +16 -16
- package/experimental/tests/TestJson.ff +26 -26
- package/firefly.sh +0 -0
- package/fireflysite/.firefly/package.ff +4 -4
- package/fireflysite/CommunityOverview.ff +20 -20
- package/fireflysite/CountingButtonDemo.ff +58 -58
- package/fireflysite/DocumentParser.ff +325 -331
- package/fireflysite/ExamplesOverview.ff +40 -40
- package/fireflysite/FrontPage.ff +344 -344
- package/fireflysite/GettingStarted.ff +45 -45
- package/fireflysite/Guide.ff +456 -456
- package/fireflysite/Main.ff +163 -152
- package/fireflysite/MatchingPasswordsDemo.ff +82 -82
- package/fireflysite/PackagesOverview.ff +49 -49
- package/fireflysite/PostgresqlDemo.ff +34 -34
- package/fireflysite/ReferenceAll.ff +18 -18
- package/fireflysite/ReferenceIntroduction.ff +11 -11
- package/fireflysite/Styles.ff +567 -567
- package/fireflysite/Test.ff +121 -62
- package/fireflysite/assets/markdown/reference/BaseTypes.md +209 -209
- package/fireflysite/assets/markdown/reference/EmittedJavascript.md +65 -65
- package/fireflysite/assets/markdown/reference/Exceptions.md +101 -101
- package/fireflysite/assets/markdown/reference/FunctionsAndMethods.md +364 -364
- package/fireflysite/assets/markdown/reference/JavascriptInterop.md +235 -172
- package/fireflysite/assets/markdown/reference/ModulesAndPackages.md +162 -162
- package/fireflysite/assets/markdown/reference/OldStructuredConcurrency.md +48 -48
- package/fireflysite/assets/markdown/reference/PatternMatching.md +224 -224
- package/fireflysite/assets/markdown/reference/StatementsAndExpressions.md +86 -86
- package/fireflysite/assets/markdown/reference/StructuredConcurrency.md +99 -99
- package/fireflysite/assets/markdown/reference/TraitsAndInstances.md +100 -100
- package/fireflysite/assets/markdown/reference/UserDefinedTypes.md +184 -184
- package/fireflysite/assets/markdown/scratch/ControlFlow.md +136 -136
- package/fireflysite/assets/markdown/scratch/Toc.md +40 -40
- package/lsp/.firefly/package.ff +1 -1
- package/lsp/CompletionHandler.ff +827 -827
- package/lsp/Handler.ff +714 -714
- package/lsp/HoverHandler.ff +79 -79
- package/lsp/LanguageServer.ff +272 -272
- package/lsp/SignatureHelpHandler.ff +55 -55
- package/lsp/SymbolHandler.ff +181 -181
- package/lsp/TestReferences.ff +17 -17
- package/lsp/TestReferencesCase.ff +7 -7
- package/lsp/stderr.txt +1 -1
- package/lsp/stdout.txt +34 -34
- package/lux/.firefly/package.ff +1 -1
- package/lux/Css.ff +648 -648
- package/lux/CssTest.ff +48 -48
- package/lux/Lux.ff +608 -617
- package/lux/LuxEvent.ff +79 -116
- package/lux/Main.ff +123 -123
- package/lux/Main2.ff +143 -143
- package/lux/TestDry.ff +28 -28
- package/output/js/ff/compiler/Builder.mjs +72 -71
- package/output/js/ff/compiler/Compiler.mjs +19 -13
- package/output/js/ff/compiler/Dependencies.mjs +8 -7
- package/output/js/ff/compiler/DependencyLock.mjs +6 -4
- package/output/js/ff/compiler/Deriver.mjs +26 -24
- package/output/js/ff/compiler/Dictionaries.mjs +14 -18
- package/output/js/ff/compiler/Environment.mjs +6 -4
- package/output/js/ff/compiler/Inference.mjs +238 -164
- package/output/js/ff/compiler/JsEmitter.mjs +1160 -350
- package/output/js/ff/compiler/JsImporter.mjs +20 -18
- package/output/js/ff/compiler/LspHook.mjs +12 -10
- package/output/js/ff/compiler/Main.mjs +61 -41
- package/output/js/ff/compiler/ModuleCache.mjs +10 -8
- package/output/js/ff/compiler/Parser.mjs +153 -669
- package/output/js/ff/compiler/Patterns.mjs +12 -10
- package/output/js/ff/compiler/Resolver.mjs +52 -78
- package/output/js/ff/compiler/Substitution.mjs +12 -16
- package/output/js/ff/compiler/Syntax.mjs +50 -341
- package/output/js/ff/compiler/Token.mjs +126 -4
- package/output/js/ff/compiler/Tokenizer.mjs +62 -52
- package/output/js/ff/compiler/Unification.mjs +74 -90
- package/output/js/ff/compiler/Wildcards.mjs +4 -2
- package/output/js/ff/compiler/Workspace.mjs +26 -20
- package/output/js/ff/core/Any.mjs +20 -20
- package/output/js/ff/core/Array.mjs +268 -175
- package/output/js/ff/core/AssetSystem.mjs +8 -6
- package/output/js/ff/core/Atomic.mjs +84 -52
- package/output/js/ff/core/Bool.mjs +6 -4
- package/output/js/ff/core/BrowserSystem.mjs +38 -29
- package/output/js/ff/core/Buffer.mjs +285 -133
- package/output/js/ff/core/BuildSystem.mjs +36 -56
- package/output/js/ff/core/Channel.mjs +250 -97
- package/output/js/ff/core/Char.mjs +5 -3
- package/output/js/ff/core/Core.mjs +28 -34
- package/output/js/ff/core/Crypto.mjs +30 -52
- package/output/js/ff/core/Duration.mjs +4 -2
- package/output/js/ff/core/Equal.mjs +14 -12
- package/output/js/ff/core/Error.mjs +17 -11
- package/output/js/ff/core/FileHandle.mjs +76 -38
- package/output/js/ff/core/Float.mjs +92 -160
- package/output/js/ff/core/HttpClient.mjs +208 -76
- package/output/js/ff/core/Instant.mjs +8 -10
- package/output/js/ff/core/Int.mjs +36 -26
- package/output/js/ff/core/IntMap.mjs +79 -33
- package/output/js/ff/core/Js.mjs +751 -0
- package/output/js/ff/core/JsSystem.mjs +54 -60
- package/output/js/ff/core/JsValue.mjs +294 -143
- package/output/js/ff/core/Json.mjs +443 -253
- package/output/js/ff/core/List.mjs +262 -214
- package/output/js/ff/core/Lock.mjs +156 -125
- package/output/js/ff/core/Log.mjs +20 -10
- package/output/js/ff/core/Map.mjs +10 -8
- package/output/js/ff/core/NodeSystem.mjs +189 -123
- package/output/js/ff/core/Nothing.mjs +4 -2
- package/output/js/ff/core/Option.mjs +40 -38
- package/output/js/ff/core/Ordering.mjs +26 -20
- package/output/js/ff/core/Pair.mjs +4 -2
- package/output/js/ff/core/Path.mjs +517 -315
- package/output/js/ff/core/Queue.mjs +306 -0
- package/output/js/ff/core/Random.mjs +141 -77
- package/output/js/ff/core/RbMap.mjs +36 -34
- package/output/js/ff/core/Serializable.mjs +44 -28
- package/output/js/ff/core/Set.mjs +6 -4
- package/output/js/ff/core/Show.mjs +8 -6
- package/output/js/ff/core/SourceLocation.mjs +4 -2
- package/output/js/ff/core/Stream.mjs +30 -50
- package/output/js/ff/core/String.mjs +263 -172
- package/output/js/ff/core/StringMap.mjs +77 -31
- package/output/js/ff/core/Task.mjs +91 -76
- package/output/js/ff/core/Try.mjs +20 -18
- package/output/js/ff/core/Unit.mjs +4 -2
- package/package.json +1 -1
- package/postgresql/Pg.ff +53 -59
- package/rpc/.firefly/package.ff +1 -1
- package/rpc/Rpc.ff +70 -70
- package/s3/.firefly/package.ff +1 -1
- package/s3/S3.ff +92 -94
- package/vscode/LICENSE.txt +21 -21
- package/vscode/Prepublish.ff +15 -15
- package/vscode/README.md +16 -16
- package/vscode/client/package-lock.json +544 -544
- package/vscode/client/package.json +22 -22
- package/vscode/client/src/extension.ts +104 -104
- package/vscode/icons/firefly-icon.svg +10 -10
- package/vscode/language-configuration.json +61 -61
- package/vscode/package-lock.json +3623 -3623
- package/vscode/package.json +1 -1
- package/vscode/snippets.json +241 -241
- package/vscode/syntaxes/firefly-markdown-injection.json +45 -45
- package/webserver/.firefly/include/package.json +5 -5
- package/webserver/.firefly/package.ff +2 -2
- package/webserver/WebServer.ff +647 -685
- package/websocket/.firefly/package.ff +1 -1
- package/websocket/WebSocket.ff +100 -131
- package/core/.firefly/include/package-lock.json +0 -564
- package/core/UnsafeJs.ff +0 -42
- package/output/js/ff/core/UnsafeJs.mjs +0 -191
- package/postgresql/.firefly/include/package-lock.json +0 -250
- package/webserver/.firefly/include/package-lock.json +0 -22
|
@@ -1,191 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
import * as ff_core_Any from "../../ff/core/Any.mjs"
|
|
4
|
-
|
|
5
|
-
import * as ff_core_Array from "../../ff/core/Array.mjs"
|
|
6
|
-
|
|
7
|
-
import * as ff_core_AssetSystem from "../../ff/core/AssetSystem.mjs"
|
|
8
|
-
|
|
9
|
-
import * as ff_core_Atomic from "../../ff/core/Atomic.mjs"
|
|
10
|
-
|
|
11
|
-
import * as ff_core_Bool from "../../ff/core/Bool.mjs"
|
|
12
|
-
|
|
13
|
-
import * as ff_core_BrowserSystem from "../../ff/core/BrowserSystem.mjs"
|
|
14
|
-
|
|
15
|
-
import * as ff_core_Buffer from "../../ff/core/Buffer.mjs"
|
|
16
|
-
|
|
17
|
-
import * as ff_core_BuildSystem from "../../ff/core/BuildSystem.mjs"
|
|
18
|
-
|
|
19
|
-
import * as ff_core_Channel from "../../ff/core/Channel.mjs"
|
|
20
|
-
|
|
21
|
-
import * as ff_core_Char from "../../ff/core/Char.mjs"
|
|
22
|
-
|
|
23
|
-
import * as ff_core_Core from "../../ff/core/Core.mjs"
|
|
24
|
-
|
|
25
|
-
import * as ff_core_Crypto from "../../ff/core/Crypto.mjs"
|
|
26
|
-
|
|
27
|
-
import * as ff_core_Duration from "../../ff/core/Duration.mjs"
|
|
28
|
-
|
|
29
|
-
import * as ff_core_Equal from "../../ff/core/Equal.mjs"
|
|
30
|
-
|
|
31
|
-
import * as ff_core_Error from "../../ff/core/Error.mjs"
|
|
32
|
-
|
|
33
|
-
import * as ff_core_FileHandle from "../../ff/core/FileHandle.mjs"
|
|
34
|
-
|
|
35
|
-
import * as ff_core_Float from "../../ff/core/Float.mjs"
|
|
36
|
-
|
|
37
|
-
import * as ff_core_HttpClient from "../../ff/core/HttpClient.mjs"
|
|
38
|
-
|
|
39
|
-
import * as ff_core_Instant from "../../ff/core/Instant.mjs"
|
|
40
|
-
|
|
41
|
-
import * as ff_core_Int from "../../ff/core/Int.mjs"
|
|
42
|
-
|
|
43
|
-
import * as ff_core_IntMap from "../../ff/core/IntMap.mjs"
|
|
44
|
-
|
|
45
|
-
import * as ff_core_JsSystem from "../../ff/core/JsSystem.mjs"
|
|
46
|
-
|
|
47
|
-
import * as ff_core_JsValue from "../../ff/core/JsValue.mjs"
|
|
48
|
-
|
|
49
|
-
import * as ff_core_Json from "../../ff/core/Json.mjs"
|
|
50
|
-
|
|
51
|
-
import * as ff_core_List from "../../ff/core/List.mjs"
|
|
52
|
-
|
|
53
|
-
import * as ff_core_Lock from "../../ff/core/Lock.mjs"
|
|
54
|
-
|
|
55
|
-
import * as ff_core_Log from "../../ff/core/Log.mjs"
|
|
56
|
-
|
|
57
|
-
import * as ff_core_Map from "../../ff/core/Map.mjs"
|
|
58
|
-
|
|
59
|
-
import * as ff_core_NodeSystem from "../../ff/core/NodeSystem.mjs"
|
|
60
|
-
|
|
61
|
-
import * as ff_core_Nothing from "../../ff/core/Nothing.mjs"
|
|
62
|
-
|
|
63
|
-
import * as ff_core_Option from "../../ff/core/Option.mjs"
|
|
64
|
-
|
|
65
|
-
import * as ff_core_Ordering from "../../ff/core/Ordering.mjs"
|
|
66
|
-
|
|
67
|
-
import * as ff_core_Pair from "../../ff/core/Pair.mjs"
|
|
68
|
-
|
|
69
|
-
import * as ff_core_Path from "../../ff/core/Path.mjs"
|
|
70
|
-
|
|
71
|
-
import * as ff_core_Random from "../../ff/core/Random.mjs"
|
|
72
|
-
|
|
73
|
-
import * as ff_core_Serializable from "../../ff/core/Serializable.mjs"
|
|
74
|
-
|
|
75
|
-
import * as ff_core_Set from "../../ff/core/Set.mjs"
|
|
76
|
-
|
|
77
|
-
import * as ff_core_Show from "../../ff/core/Show.mjs"
|
|
78
|
-
|
|
79
|
-
import * as ff_core_SourceLocation from "../../ff/core/SourceLocation.mjs"
|
|
80
|
-
|
|
81
|
-
import * as ff_core_Stream from "../../ff/core/Stream.mjs"
|
|
82
|
-
|
|
83
|
-
import * as ff_core_String from "../../ff/core/String.mjs"
|
|
84
|
-
|
|
85
|
-
import * as ff_core_StringMap from "../../ff/core/StringMap.mjs"
|
|
86
|
-
|
|
87
|
-
import * as ff_core_Task from "../../ff/core/Task.mjs"
|
|
88
|
-
|
|
89
|
-
import * as ff_core_Try from "../../ff/core/Try.mjs"
|
|
90
|
-
|
|
91
|
-
import * as ff_core_Unit from "../../ff/core/Unit.mjs"
|
|
92
|
-
|
|
93
|
-
import * as ff_core_UnsafeJs from "../../ff/core/UnsafeJs.mjs"
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
export function jsSystem_() {
|
|
100
|
-
return typeof globalThis !== 'undefined' ? globalThis : window
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
export function import_(module_) {
|
|
104
|
-
throw Error('Dynamic JS imports are not currently supported.')
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
export function await_(body_) {
|
|
108
|
-
return body_()
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
export function throwIfCancelled_() {
|
|
112
|
-
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
export function cancelled_() {
|
|
116
|
-
return false
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
export function inAsync_() {
|
|
120
|
-
return false
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
export function inBrowser_() {
|
|
124
|
-
return false
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
export function inNode_() {
|
|
128
|
-
return false
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
export function inBuild_() {
|
|
132
|
-
return false
|
|
133
|
-
}
|
|
134
|
-
|
|
135
|
-
export function value_(value_) {
|
|
136
|
-
return value_
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
export function fromValue_(value_) {
|
|
140
|
-
return value_
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
export async function jsSystem_$($task) {
|
|
144
|
-
return typeof globalThis !== 'undefined' ? globalThis : window
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
export async function import_$(module_, $task) {
|
|
148
|
-
throw new Error('Function import is missing on this target in async context.');
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
export async function await_$(body_, $task) {
|
|
152
|
-
throw new Error('Function await is missing on this target in async context.');
|
|
153
|
-
}
|
|
154
|
-
|
|
155
|
-
export async function throwIfCancelled_$($task) {
|
|
156
|
-
throw new Error('Function throwIfCancelled is missing on this target in async context.');
|
|
157
|
-
}
|
|
158
|
-
|
|
159
|
-
export async function cancelled_$($task) {
|
|
160
|
-
throw new Error('Function cancelled is missing on this target in async context.');
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
export async function inAsync_$($task) {
|
|
164
|
-
throw new Error('Function inAsync is missing on this target in async context.');
|
|
165
|
-
}
|
|
166
|
-
|
|
167
|
-
export async function inBrowser_$($task) {
|
|
168
|
-
throw new Error('Function inBrowser is missing on this target in async context.');
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
export async function inNode_$($task) {
|
|
172
|
-
throw new Error('Function inNode is missing on this target in async context.');
|
|
173
|
-
}
|
|
174
|
-
|
|
175
|
-
export async function inBuild_$($task) {
|
|
176
|
-
throw new Error('Function inBuild is missing on this target in async context.');
|
|
177
|
-
}
|
|
178
|
-
|
|
179
|
-
export async function value_$(value_, $task) {
|
|
180
|
-
throw new Error('Function value is missing on this target in async context.');
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
export async function fromValue_$(value_, $task) {
|
|
184
|
-
throw new Error('Function fromValue is missing on this target in async context.');
|
|
185
|
-
}
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
@@ -1,250 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "include",
|
|
3
|
-
"lockfileVersion": 2,
|
|
4
|
-
"requires": true,
|
|
5
|
-
"packages": {
|
|
6
|
-
"": {
|
|
7
|
-
"dependencies": {
|
|
8
|
-
"pg": "^8.8.0"
|
|
9
|
-
}
|
|
10
|
-
},
|
|
11
|
-
"node_modules/buffer-writer": {
|
|
12
|
-
"version": "2.0.0",
|
|
13
|
-
"resolved": "https://registry.npmjs.org/buffer-writer/-/buffer-writer-2.0.0.tgz",
|
|
14
|
-
"integrity": "sha512-a7ZpuTZU1TRtnwyCNW3I5dc0wWNC3VR9S++Ewyk2HHZdrO3CQJqSpd+95Us590V6AL7JqUAH2IwZ/398PmNFgw==",
|
|
15
|
-
"engines": {
|
|
16
|
-
"node": ">=4"
|
|
17
|
-
}
|
|
18
|
-
},
|
|
19
|
-
"node_modules/packet-reader": {
|
|
20
|
-
"version": "1.0.0",
|
|
21
|
-
"resolved": "https://registry.npmjs.org/packet-reader/-/packet-reader-1.0.0.tgz",
|
|
22
|
-
"integrity": "sha512-HAKu/fG3HpHFO0AA8WE8q2g+gBJaZ9MG7fcKk+IJPLTGAD6Psw4443l+9DGRbOIh3/aXr7Phy0TjilYivJo5XQ=="
|
|
23
|
-
},
|
|
24
|
-
"node_modules/pg": {
|
|
25
|
-
"version": "8.8.0",
|
|
26
|
-
"resolved": "https://registry.npmjs.org/pg/-/pg-8.8.0.tgz",
|
|
27
|
-
"integrity": "sha512-UXYN0ziKj+AeNNP7VDMwrehpACThH7LUl/p8TDFpEUuSejCUIwGSfxpHsPvtM6/WXFy6SU4E5RG4IJV/TZAGjw==",
|
|
28
|
-
"dependencies": {
|
|
29
|
-
"buffer-writer": "2.0.0",
|
|
30
|
-
"packet-reader": "1.0.0",
|
|
31
|
-
"pg-connection-string": "^2.5.0",
|
|
32
|
-
"pg-pool": "^3.5.2",
|
|
33
|
-
"pg-protocol": "^1.5.0",
|
|
34
|
-
"pg-types": "^2.1.0",
|
|
35
|
-
"pgpass": "1.x"
|
|
36
|
-
},
|
|
37
|
-
"engines": {
|
|
38
|
-
"node": ">= 8.0.0"
|
|
39
|
-
},
|
|
40
|
-
"peerDependencies": {
|
|
41
|
-
"pg-native": ">=3.0.1"
|
|
42
|
-
},
|
|
43
|
-
"peerDependenciesMeta": {
|
|
44
|
-
"pg-native": {
|
|
45
|
-
"optional": true
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
},
|
|
49
|
-
"node_modules/pg-connection-string": {
|
|
50
|
-
"version": "2.5.0",
|
|
51
|
-
"resolved": "https://registry.npmjs.org/pg-connection-string/-/pg-connection-string-2.5.0.tgz",
|
|
52
|
-
"integrity": "sha512-r5o/V/ORTA6TmUnyWZR9nCj1klXCO2CEKNRlVuJptZe85QuhFayC7WeMic7ndayT5IRIR0S0xFxFi2ousartlQ=="
|
|
53
|
-
},
|
|
54
|
-
"node_modules/pg-int8": {
|
|
55
|
-
"version": "1.0.1",
|
|
56
|
-
"resolved": "https://registry.npmjs.org/pg-int8/-/pg-int8-1.0.1.tgz",
|
|
57
|
-
"integrity": "sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw==",
|
|
58
|
-
"engines": {
|
|
59
|
-
"node": ">=4.0.0"
|
|
60
|
-
}
|
|
61
|
-
},
|
|
62
|
-
"node_modules/pg-pool": {
|
|
63
|
-
"version": "3.5.2",
|
|
64
|
-
"resolved": "https://registry.npmjs.org/pg-pool/-/pg-pool-3.5.2.tgz",
|
|
65
|
-
"integrity": "sha512-His3Fh17Z4eg7oANLob6ZvH8xIVen3phEZh2QuyrIl4dQSDVEabNducv6ysROKpDNPSD+12tONZVWfSgMvDD9w==",
|
|
66
|
-
"peerDependencies": {
|
|
67
|
-
"pg": ">=8.0"
|
|
68
|
-
}
|
|
69
|
-
},
|
|
70
|
-
"node_modules/pg-protocol": {
|
|
71
|
-
"version": "1.5.0",
|
|
72
|
-
"resolved": "https://registry.npmjs.org/pg-protocol/-/pg-protocol-1.5.0.tgz",
|
|
73
|
-
"integrity": "sha512-muRttij7H8TqRNu/DxrAJQITO4Ac7RmX3Klyr/9mJEOBeIpgnF8f9jAfRz5d3XwQZl5qBjF9gLsUtMPJE0vezQ=="
|
|
74
|
-
},
|
|
75
|
-
"node_modules/pg-types": {
|
|
76
|
-
"version": "2.2.0",
|
|
77
|
-
"resolved": "https://registry.npmjs.org/pg-types/-/pg-types-2.2.0.tgz",
|
|
78
|
-
"integrity": "sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==",
|
|
79
|
-
"dependencies": {
|
|
80
|
-
"pg-int8": "1.0.1",
|
|
81
|
-
"postgres-array": "~2.0.0",
|
|
82
|
-
"postgres-bytea": "~1.0.0",
|
|
83
|
-
"postgres-date": "~1.0.4",
|
|
84
|
-
"postgres-interval": "^1.1.0"
|
|
85
|
-
},
|
|
86
|
-
"engines": {
|
|
87
|
-
"node": ">=4"
|
|
88
|
-
}
|
|
89
|
-
},
|
|
90
|
-
"node_modules/pgpass": {
|
|
91
|
-
"version": "1.0.5",
|
|
92
|
-
"resolved": "https://registry.npmjs.org/pgpass/-/pgpass-1.0.5.tgz",
|
|
93
|
-
"integrity": "sha512-FdW9r/jQZhSeohs1Z3sI1yxFQNFvMcnmfuj4WBMUTxOrAyLMaTcE1aAMBiTlbMNaXvBCQuVi0R7hd8udDSP7ug==",
|
|
94
|
-
"dependencies": {
|
|
95
|
-
"split2": "^4.1.0"
|
|
96
|
-
}
|
|
97
|
-
},
|
|
98
|
-
"node_modules/postgres-array": {
|
|
99
|
-
"version": "2.0.0",
|
|
100
|
-
"resolved": "https://registry.npmjs.org/postgres-array/-/postgres-array-2.0.0.tgz",
|
|
101
|
-
"integrity": "sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==",
|
|
102
|
-
"engines": {
|
|
103
|
-
"node": ">=4"
|
|
104
|
-
}
|
|
105
|
-
},
|
|
106
|
-
"node_modules/postgres-bytea": {
|
|
107
|
-
"version": "1.0.0",
|
|
108
|
-
"resolved": "https://registry.npmjs.org/postgres-bytea/-/postgres-bytea-1.0.0.tgz",
|
|
109
|
-
"integrity": "sha512-xy3pmLuQqRBZBXDULy7KbaitYqLcmxigw14Q5sj8QBVLqEwXfeybIKVWiqAXTlcvdvb0+xkOtDbfQMOf4lST1w==",
|
|
110
|
-
"engines": {
|
|
111
|
-
"node": ">=0.10.0"
|
|
112
|
-
}
|
|
113
|
-
},
|
|
114
|
-
"node_modules/postgres-date": {
|
|
115
|
-
"version": "1.0.7",
|
|
116
|
-
"resolved": "https://registry.npmjs.org/postgres-date/-/postgres-date-1.0.7.tgz",
|
|
117
|
-
"integrity": "sha512-suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q==",
|
|
118
|
-
"engines": {
|
|
119
|
-
"node": ">=0.10.0"
|
|
120
|
-
}
|
|
121
|
-
},
|
|
122
|
-
"node_modules/postgres-interval": {
|
|
123
|
-
"version": "1.2.0",
|
|
124
|
-
"resolved": "https://registry.npmjs.org/postgres-interval/-/postgres-interval-1.2.0.tgz",
|
|
125
|
-
"integrity": "sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==",
|
|
126
|
-
"dependencies": {
|
|
127
|
-
"xtend": "^4.0.0"
|
|
128
|
-
},
|
|
129
|
-
"engines": {
|
|
130
|
-
"node": ">=0.10.0"
|
|
131
|
-
}
|
|
132
|
-
},
|
|
133
|
-
"node_modules/split2": {
|
|
134
|
-
"version": "4.1.0",
|
|
135
|
-
"resolved": "https://registry.npmjs.org/split2/-/split2-4.1.0.tgz",
|
|
136
|
-
"integrity": "sha512-VBiJxFkxiXRlUIeyMQi8s4hgvKCSjtknJv/LVYbrgALPwf5zSKmEwV9Lst25AkvMDnvxODugjdl6KZgwKM1WYQ==",
|
|
137
|
-
"engines": {
|
|
138
|
-
"node": ">= 10.x"
|
|
139
|
-
}
|
|
140
|
-
},
|
|
141
|
-
"node_modules/xtend": {
|
|
142
|
-
"version": "4.0.2",
|
|
143
|
-
"resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz",
|
|
144
|
-
"integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==",
|
|
145
|
-
"engines": {
|
|
146
|
-
"node": ">=0.4"
|
|
147
|
-
}
|
|
148
|
-
}
|
|
149
|
-
},
|
|
150
|
-
"dependencies": {
|
|
151
|
-
"buffer-writer": {
|
|
152
|
-
"version": "2.0.0",
|
|
153
|
-
"resolved": "https://registry.npmjs.org/buffer-writer/-/buffer-writer-2.0.0.tgz",
|
|
154
|
-
"integrity": "sha512-a7ZpuTZU1TRtnwyCNW3I5dc0wWNC3VR9S++Ewyk2HHZdrO3CQJqSpd+95Us590V6AL7JqUAH2IwZ/398PmNFgw=="
|
|
155
|
-
},
|
|
156
|
-
"packet-reader": {
|
|
157
|
-
"version": "1.0.0",
|
|
158
|
-
"resolved": "https://registry.npmjs.org/packet-reader/-/packet-reader-1.0.0.tgz",
|
|
159
|
-
"integrity": "sha512-HAKu/fG3HpHFO0AA8WE8q2g+gBJaZ9MG7fcKk+IJPLTGAD6Psw4443l+9DGRbOIh3/aXr7Phy0TjilYivJo5XQ=="
|
|
160
|
-
},
|
|
161
|
-
"pg": {
|
|
162
|
-
"version": "8.8.0",
|
|
163
|
-
"resolved": "https://registry.npmjs.org/pg/-/pg-8.8.0.tgz",
|
|
164
|
-
"integrity": "sha512-UXYN0ziKj+AeNNP7VDMwrehpACThH7LUl/p8TDFpEUuSejCUIwGSfxpHsPvtM6/WXFy6SU4E5RG4IJV/TZAGjw==",
|
|
165
|
-
"requires": {
|
|
166
|
-
"buffer-writer": "2.0.0",
|
|
167
|
-
"packet-reader": "1.0.0",
|
|
168
|
-
"pg-connection-string": "^2.5.0",
|
|
169
|
-
"pg-pool": "^3.5.2",
|
|
170
|
-
"pg-protocol": "^1.5.0",
|
|
171
|
-
"pg-types": "^2.1.0",
|
|
172
|
-
"pgpass": "1.x"
|
|
173
|
-
}
|
|
174
|
-
},
|
|
175
|
-
"pg-connection-string": {
|
|
176
|
-
"version": "2.5.0",
|
|
177
|
-
"resolved": "https://registry.npmjs.org/pg-connection-string/-/pg-connection-string-2.5.0.tgz",
|
|
178
|
-
"integrity": "sha512-r5o/V/ORTA6TmUnyWZR9nCj1klXCO2CEKNRlVuJptZe85QuhFayC7WeMic7ndayT5IRIR0S0xFxFi2ousartlQ=="
|
|
179
|
-
},
|
|
180
|
-
"pg-int8": {
|
|
181
|
-
"version": "1.0.1",
|
|
182
|
-
"resolved": "https://registry.npmjs.org/pg-int8/-/pg-int8-1.0.1.tgz",
|
|
183
|
-
"integrity": "sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw=="
|
|
184
|
-
},
|
|
185
|
-
"pg-pool": {
|
|
186
|
-
"version": "3.5.2",
|
|
187
|
-
"resolved": "https://registry.npmjs.org/pg-pool/-/pg-pool-3.5.2.tgz",
|
|
188
|
-
"integrity": "sha512-His3Fh17Z4eg7oANLob6ZvH8xIVen3phEZh2QuyrIl4dQSDVEabNducv6ysROKpDNPSD+12tONZVWfSgMvDD9w==",
|
|
189
|
-
"requires": {}
|
|
190
|
-
},
|
|
191
|
-
"pg-protocol": {
|
|
192
|
-
"version": "1.5.0",
|
|
193
|
-
"resolved": "https://registry.npmjs.org/pg-protocol/-/pg-protocol-1.5.0.tgz",
|
|
194
|
-
"integrity": "sha512-muRttij7H8TqRNu/DxrAJQITO4Ac7RmX3Klyr/9mJEOBeIpgnF8f9jAfRz5d3XwQZl5qBjF9gLsUtMPJE0vezQ=="
|
|
195
|
-
},
|
|
196
|
-
"pg-types": {
|
|
197
|
-
"version": "2.2.0",
|
|
198
|
-
"resolved": "https://registry.npmjs.org/pg-types/-/pg-types-2.2.0.tgz",
|
|
199
|
-
"integrity": "sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==",
|
|
200
|
-
"requires": {
|
|
201
|
-
"pg-int8": "1.0.1",
|
|
202
|
-
"postgres-array": "~2.0.0",
|
|
203
|
-
"postgres-bytea": "~1.0.0",
|
|
204
|
-
"postgres-date": "~1.0.4",
|
|
205
|
-
"postgres-interval": "^1.1.0"
|
|
206
|
-
}
|
|
207
|
-
},
|
|
208
|
-
"pgpass": {
|
|
209
|
-
"version": "1.0.5",
|
|
210
|
-
"resolved": "https://registry.npmjs.org/pgpass/-/pgpass-1.0.5.tgz",
|
|
211
|
-
"integrity": "sha512-FdW9r/jQZhSeohs1Z3sI1yxFQNFvMcnmfuj4WBMUTxOrAyLMaTcE1aAMBiTlbMNaXvBCQuVi0R7hd8udDSP7ug==",
|
|
212
|
-
"requires": {
|
|
213
|
-
"split2": "^4.1.0"
|
|
214
|
-
}
|
|
215
|
-
},
|
|
216
|
-
"postgres-array": {
|
|
217
|
-
"version": "2.0.0",
|
|
218
|
-
"resolved": "https://registry.npmjs.org/postgres-array/-/postgres-array-2.0.0.tgz",
|
|
219
|
-
"integrity": "sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA=="
|
|
220
|
-
},
|
|
221
|
-
"postgres-bytea": {
|
|
222
|
-
"version": "1.0.0",
|
|
223
|
-
"resolved": "https://registry.npmjs.org/postgres-bytea/-/postgres-bytea-1.0.0.tgz",
|
|
224
|
-
"integrity": "sha512-xy3pmLuQqRBZBXDULy7KbaitYqLcmxigw14Q5sj8QBVLqEwXfeybIKVWiqAXTlcvdvb0+xkOtDbfQMOf4lST1w=="
|
|
225
|
-
},
|
|
226
|
-
"postgres-date": {
|
|
227
|
-
"version": "1.0.7",
|
|
228
|
-
"resolved": "https://registry.npmjs.org/postgres-date/-/postgres-date-1.0.7.tgz",
|
|
229
|
-
"integrity": "sha512-suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q=="
|
|
230
|
-
},
|
|
231
|
-
"postgres-interval": {
|
|
232
|
-
"version": "1.2.0",
|
|
233
|
-
"resolved": "https://registry.npmjs.org/postgres-interval/-/postgres-interval-1.2.0.tgz",
|
|
234
|
-
"integrity": "sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==",
|
|
235
|
-
"requires": {
|
|
236
|
-
"xtend": "^4.0.0"
|
|
237
|
-
}
|
|
238
|
-
},
|
|
239
|
-
"split2": {
|
|
240
|
-
"version": "4.1.0",
|
|
241
|
-
"resolved": "https://registry.npmjs.org/split2/-/split2-4.1.0.tgz",
|
|
242
|
-
"integrity": "sha512-VBiJxFkxiXRlUIeyMQi8s4hgvKCSjtknJv/LVYbrgALPwf5zSKmEwV9Lst25AkvMDnvxODugjdl6KZgwKM1WYQ=="
|
|
243
|
-
},
|
|
244
|
-
"xtend": {
|
|
245
|
-
"version": "4.0.2",
|
|
246
|
-
"resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz",
|
|
247
|
-
"integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ=="
|
|
248
|
-
}
|
|
249
|
-
}
|
|
250
|
-
}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "include",
|
|
3
|
-
"lockfileVersion": 2,
|
|
4
|
-
"requires": true,
|
|
5
|
-
"packages": {
|
|
6
|
-
"": {
|
|
7
|
-
"dependencies": {
|
|
8
|
-
"uWebSockets.js": "github:uNetworking/uWebSockets.js#v20.41.0"
|
|
9
|
-
}
|
|
10
|
-
},
|
|
11
|
-
"node_modules/uWebSockets.js": {
|
|
12
|
-
"version": "20.41.0",
|
|
13
|
-
"resolved": "git+ssh://git@github.com/uNetworking/uWebSockets.js.git#105d9ec47126cb82e4a6f3a08aa2ac78b4bb14f1"
|
|
14
|
-
}
|
|
15
|
-
},
|
|
16
|
-
"dependencies": {
|
|
17
|
-
"uWebSockets.js": {
|
|
18
|
-
"version": "git+ssh://git@github.com/uNetworking/uWebSockets.js.git#105d9ec47126cb82e4a6f3a08aa2ac78b4bb14f1",
|
|
19
|
-
"from": "uWebSockets.js@github:uNetworking/uWebSockets.js#v20.41.0"
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
}
|