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,564 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "include",
|
|
3
|
-
"lockfileVersion": 2,
|
|
4
|
-
"requires": true,
|
|
5
|
-
"packages": {
|
|
6
|
-
"": {
|
|
7
|
-
"dependencies": {
|
|
8
|
-
"esbuild": "^0.21.5"
|
|
9
|
-
}
|
|
10
|
-
},
|
|
11
|
-
"node_modules/@esbuild/aix-ppc64": {
|
|
12
|
-
"version": "0.21.5",
|
|
13
|
-
"resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz",
|
|
14
|
-
"integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==",
|
|
15
|
-
"cpu": [
|
|
16
|
-
"ppc64"
|
|
17
|
-
],
|
|
18
|
-
"optional": true,
|
|
19
|
-
"os": [
|
|
20
|
-
"aix"
|
|
21
|
-
],
|
|
22
|
-
"engines": {
|
|
23
|
-
"node": ">=12"
|
|
24
|
-
}
|
|
25
|
-
},
|
|
26
|
-
"node_modules/@esbuild/android-arm": {
|
|
27
|
-
"version": "0.21.5",
|
|
28
|
-
"resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz",
|
|
29
|
-
"integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==",
|
|
30
|
-
"cpu": [
|
|
31
|
-
"arm"
|
|
32
|
-
],
|
|
33
|
-
"optional": true,
|
|
34
|
-
"os": [
|
|
35
|
-
"android"
|
|
36
|
-
],
|
|
37
|
-
"engines": {
|
|
38
|
-
"node": ">=12"
|
|
39
|
-
}
|
|
40
|
-
},
|
|
41
|
-
"node_modules/@esbuild/android-arm64": {
|
|
42
|
-
"version": "0.21.5",
|
|
43
|
-
"resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz",
|
|
44
|
-
"integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==",
|
|
45
|
-
"cpu": [
|
|
46
|
-
"arm64"
|
|
47
|
-
],
|
|
48
|
-
"optional": true,
|
|
49
|
-
"os": [
|
|
50
|
-
"android"
|
|
51
|
-
],
|
|
52
|
-
"engines": {
|
|
53
|
-
"node": ">=12"
|
|
54
|
-
}
|
|
55
|
-
},
|
|
56
|
-
"node_modules/@esbuild/android-x64": {
|
|
57
|
-
"version": "0.21.5",
|
|
58
|
-
"resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz",
|
|
59
|
-
"integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==",
|
|
60
|
-
"cpu": [
|
|
61
|
-
"x64"
|
|
62
|
-
],
|
|
63
|
-
"optional": true,
|
|
64
|
-
"os": [
|
|
65
|
-
"android"
|
|
66
|
-
],
|
|
67
|
-
"engines": {
|
|
68
|
-
"node": ">=12"
|
|
69
|
-
}
|
|
70
|
-
},
|
|
71
|
-
"node_modules/@esbuild/darwin-arm64": {
|
|
72
|
-
"version": "0.21.5",
|
|
73
|
-
"resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz",
|
|
74
|
-
"integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==",
|
|
75
|
-
"cpu": [
|
|
76
|
-
"arm64"
|
|
77
|
-
],
|
|
78
|
-
"optional": true,
|
|
79
|
-
"os": [
|
|
80
|
-
"darwin"
|
|
81
|
-
],
|
|
82
|
-
"engines": {
|
|
83
|
-
"node": ">=12"
|
|
84
|
-
}
|
|
85
|
-
},
|
|
86
|
-
"node_modules/@esbuild/darwin-x64": {
|
|
87
|
-
"version": "0.21.5",
|
|
88
|
-
"resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz",
|
|
89
|
-
"integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==",
|
|
90
|
-
"cpu": [
|
|
91
|
-
"x64"
|
|
92
|
-
],
|
|
93
|
-
"optional": true,
|
|
94
|
-
"os": [
|
|
95
|
-
"darwin"
|
|
96
|
-
],
|
|
97
|
-
"engines": {
|
|
98
|
-
"node": ">=12"
|
|
99
|
-
}
|
|
100
|
-
},
|
|
101
|
-
"node_modules/@esbuild/freebsd-arm64": {
|
|
102
|
-
"version": "0.21.5",
|
|
103
|
-
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz",
|
|
104
|
-
"integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==",
|
|
105
|
-
"cpu": [
|
|
106
|
-
"arm64"
|
|
107
|
-
],
|
|
108
|
-
"optional": true,
|
|
109
|
-
"os": [
|
|
110
|
-
"freebsd"
|
|
111
|
-
],
|
|
112
|
-
"engines": {
|
|
113
|
-
"node": ">=12"
|
|
114
|
-
}
|
|
115
|
-
},
|
|
116
|
-
"node_modules/@esbuild/freebsd-x64": {
|
|
117
|
-
"version": "0.21.5",
|
|
118
|
-
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz",
|
|
119
|
-
"integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==",
|
|
120
|
-
"cpu": [
|
|
121
|
-
"x64"
|
|
122
|
-
],
|
|
123
|
-
"optional": true,
|
|
124
|
-
"os": [
|
|
125
|
-
"freebsd"
|
|
126
|
-
],
|
|
127
|
-
"engines": {
|
|
128
|
-
"node": ">=12"
|
|
129
|
-
}
|
|
130
|
-
},
|
|
131
|
-
"node_modules/@esbuild/linux-arm": {
|
|
132
|
-
"version": "0.21.5",
|
|
133
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz",
|
|
134
|
-
"integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==",
|
|
135
|
-
"cpu": [
|
|
136
|
-
"arm"
|
|
137
|
-
],
|
|
138
|
-
"optional": true,
|
|
139
|
-
"os": [
|
|
140
|
-
"linux"
|
|
141
|
-
],
|
|
142
|
-
"engines": {
|
|
143
|
-
"node": ">=12"
|
|
144
|
-
}
|
|
145
|
-
},
|
|
146
|
-
"node_modules/@esbuild/linux-arm64": {
|
|
147
|
-
"version": "0.21.5",
|
|
148
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz",
|
|
149
|
-
"integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==",
|
|
150
|
-
"cpu": [
|
|
151
|
-
"arm64"
|
|
152
|
-
],
|
|
153
|
-
"optional": true,
|
|
154
|
-
"os": [
|
|
155
|
-
"linux"
|
|
156
|
-
],
|
|
157
|
-
"engines": {
|
|
158
|
-
"node": ">=12"
|
|
159
|
-
}
|
|
160
|
-
},
|
|
161
|
-
"node_modules/@esbuild/linux-ia32": {
|
|
162
|
-
"version": "0.21.5",
|
|
163
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz",
|
|
164
|
-
"integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==",
|
|
165
|
-
"cpu": [
|
|
166
|
-
"ia32"
|
|
167
|
-
],
|
|
168
|
-
"optional": true,
|
|
169
|
-
"os": [
|
|
170
|
-
"linux"
|
|
171
|
-
],
|
|
172
|
-
"engines": {
|
|
173
|
-
"node": ">=12"
|
|
174
|
-
}
|
|
175
|
-
},
|
|
176
|
-
"node_modules/@esbuild/linux-loong64": {
|
|
177
|
-
"version": "0.21.5",
|
|
178
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz",
|
|
179
|
-
"integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==",
|
|
180
|
-
"cpu": [
|
|
181
|
-
"loong64"
|
|
182
|
-
],
|
|
183
|
-
"optional": true,
|
|
184
|
-
"os": [
|
|
185
|
-
"linux"
|
|
186
|
-
],
|
|
187
|
-
"engines": {
|
|
188
|
-
"node": ">=12"
|
|
189
|
-
}
|
|
190
|
-
},
|
|
191
|
-
"node_modules/@esbuild/linux-mips64el": {
|
|
192
|
-
"version": "0.21.5",
|
|
193
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz",
|
|
194
|
-
"integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==",
|
|
195
|
-
"cpu": [
|
|
196
|
-
"mips64el"
|
|
197
|
-
],
|
|
198
|
-
"optional": true,
|
|
199
|
-
"os": [
|
|
200
|
-
"linux"
|
|
201
|
-
],
|
|
202
|
-
"engines": {
|
|
203
|
-
"node": ">=12"
|
|
204
|
-
}
|
|
205
|
-
},
|
|
206
|
-
"node_modules/@esbuild/linux-ppc64": {
|
|
207
|
-
"version": "0.21.5",
|
|
208
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz",
|
|
209
|
-
"integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==",
|
|
210
|
-
"cpu": [
|
|
211
|
-
"ppc64"
|
|
212
|
-
],
|
|
213
|
-
"optional": true,
|
|
214
|
-
"os": [
|
|
215
|
-
"linux"
|
|
216
|
-
],
|
|
217
|
-
"engines": {
|
|
218
|
-
"node": ">=12"
|
|
219
|
-
}
|
|
220
|
-
},
|
|
221
|
-
"node_modules/@esbuild/linux-riscv64": {
|
|
222
|
-
"version": "0.21.5",
|
|
223
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz",
|
|
224
|
-
"integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==",
|
|
225
|
-
"cpu": [
|
|
226
|
-
"riscv64"
|
|
227
|
-
],
|
|
228
|
-
"optional": true,
|
|
229
|
-
"os": [
|
|
230
|
-
"linux"
|
|
231
|
-
],
|
|
232
|
-
"engines": {
|
|
233
|
-
"node": ">=12"
|
|
234
|
-
}
|
|
235
|
-
},
|
|
236
|
-
"node_modules/@esbuild/linux-s390x": {
|
|
237
|
-
"version": "0.21.5",
|
|
238
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz",
|
|
239
|
-
"integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==",
|
|
240
|
-
"cpu": [
|
|
241
|
-
"s390x"
|
|
242
|
-
],
|
|
243
|
-
"optional": true,
|
|
244
|
-
"os": [
|
|
245
|
-
"linux"
|
|
246
|
-
],
|
|
247
|
-
"engines": {
|
|
248
|
-
"node": ">=12"
|
|
249
|
-
}
|
|
250
|
-
},
|
|
251
|
-
"node_modules/@esbuild/linux-x64": {
|
|
252
|
-
"version": "0.21.5",
|
|
253
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz",
|
|
254
|
-
"integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==",
|
|
255
|
-
"cpu": [
|
|
256
|
-
"x64"
|
|
257
|
-
],
|
|
258
|
-
"optional": true,
|
|
259
|
-
"os": [
|
|
260
|
-
"linux"
|
|
261
|
-
],
|
|
262
|
-
"engines": {
|
|
263
|
-
"node": ">=12"
|
|
264
|
-
}
|
|
265
|
-
},
|
|
266
|
-
"node_modules/@esbuild/netbsd-x64": {
|
|
267
|
-
"version": "0.21.5",
|
|
268
|
-
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz",
|
|
269
|
-
"integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==",
|
|
270
|
-
"cpu": [
|
|
271
|
-
"x64"
|
|
272
|
-
],
|
|
273
|
-
"optional": true,
|
|
274
|
-
"os": [
|
|
275
|
-
"netbsd"
|
|
276
|
-
],
|
|
277
|
-
"engines": {
|
|
278
|
-
"node": ">=12"
|
|
279
|
-
}
|
|
280
|
-
},
|
|
281
|
-
"node_modules/@esbuild/openbsd-x64": {
|
|
282
|
-
"version": "0.21.5",
|
|
283
|
-
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz",
|
|
284
|
-
"integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==",
|
|
285
|
-
"cpu": [
|
|
286
|
-
"x64"
|
|
287
|
-
],
|
|
288
|
-
"optional": true,
|
|
289
|
-
"os": [
|
|
290
|
-
"openbsd"
|
|
291
|
-
],
|
|
292
|
-
"engines": {
|
|
293
|
-
"node": ">=12"
|
|
294
|
-
}
|
|
295
|
-
},
|
|
296
|
-
"node_modules/@esbuild/sunos-x64": {
|
|
297
|
-
"version": "0.21.5",
|
|
298
|
-
"resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz",
|
|
299
|
-
"integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==",
|
|
300
|
-
"cpu": [
|
|
301
|
-
"x64"
|
|
302
|
-
],
|
|
303
|
-
"optional": true,
|
|
304
|
-
"os": [
|
|
305
|
-
"sunos"
|
|
306
|
-
],
|
|
307
|
-
"engines": {
|
|
308
|
-
"node": ">=12"
|
|
309
|
-
}
|
|
310
|
-
},
|
|
311
|
-
"node_modules/@esbuild/win32-arm64": {
|
|
312
|
-
"version": "0.21.5",
|
|
313
|
-
"resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz",
|
|
314
|
-
"integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==",
|
|
315
|
-
"cpu": [
|
|
316
|
-
"arm64"
|
|
317
|
-
],
|
|
318
|
-
"optional": true,
|
|
319
|
-
"os": [
|
|
320
|
-
"win32"
|
|
321
|
-
],
|
|
322
|
-
"engines": {
|
|
323
|
-
"node": ">=12"
|
|
324
|
-
}
|
|
325
|
-
},
|
|
326
|
-
"node_modules/@esbuild/win32-ia32": {
|
|
327
|
-
"version": "0.21.5",
|
|
328
|
-
"resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz",
|
|
329
|
-
"integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==",
|
|
330
|
-
"cpu": [
|
|
331
|
-
"ia32"
|
|
332
|
-
],
|
|
333
|
-
"optional": true,
|
|
334
|
-
"os": [
|
|
335
|
-
"win32"
|
|
336
|
-
],
|
|
337
|
-
"engines": {
|
|
338
|
-
"node": ">=12"
|
|
339
|
-
}
|
|
340
|
-
},
|
|
341
|
-
"node_modules/@esbuild/win32-x64": {
|
|
342
|
-
"version": "0.21.5",
|
|
343
|
-
"resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz",
|
|
344
|
-
"integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==",
|
|
345
|
-
"cpu": [
|
|
346
|
-
"x64"
|
|
347
|
-
],
|
|
348
|
-
"optional": true,
|
|
349
|
-
"os": [
|
|
350
|
-
"win32"
|
|
351
|
-
],
|
|
352
|
-
"engines": {
|
|
353
|
-
"node": ">=12"
|
|
354
|
-
}
|
|
355
|
-
},
|
|
356
|
-
"node_modules/esbuild": {
|
|
357
|
-
"version": "0.21.5",
|
|
358
|
-
"resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz",
|
|
359
|
-
"integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==",
|
|
360
|
-
"hasInstallScript": true,
|
|
361
|
-
"bin": {
|
|
362
|
-
"esbuild": "bin/esbuild"
|
|
363
|
-
},
|
|
364
|
-
"engines": {
|
|
365
|
-
"node": ">=12"
|
|
366
|
-
},
|
|
367
|
-
"optionalDependencies": {
|
|
368
|
-
"@esbuild/aix-ppc64": "0.21.5",
|
|
369
|
-
"@esbuild/android-arm": "0.21.5",
|
|
370
|
-
"@esbuild/android-arm64": "0.21.5",
|
|
371
|
-
"@esbuild/android-x64": "0.21.5",
|
|
372
|
-
"@esbuild/darwin-arm64": "0.21.5",
|
|
373
|
-
"@esbuild/darwin-x64": "0.21.5",
|
|
374
|
-
"@esbuild/freebsd-arm64": "0.21.5",
|
|
375
|
-
"@esbuild/freebsd-x64": "0.21.5",
|
|
376
|
-
"@esbuild/linux-arm": "0.21.5",
|
|
377
|
-
"@esbuild/linux-arm64": "0.21.5",
|
|
378
|
-
"@esbuild/linux-ia32": "0.21.5",
|
|
379
|
-
"@esbuild/linux-loong64": "0.21.5",
|
|
380
|
-
"@esbuild/linux-mips64el": "0.21.5",
|
|
381
|
-
"@esbuild/linux-ppc64": "0.21.5",
|
|
382
|
-
"@esbuild/linux-riscv64": "0.21.5",
|
|
383
|
-
"@esbuild/linux-s390x": "0.21.5",
|
|
384
|
-
"@esbuild/linux-x64": "0.21.5",
|
|
385
|
-
"@esbuild/netbsd-x64": "0.21.5",
|
|
386
|
-
"@esbuild/openbsd-x64": "0.21.5",
|
|
387
|
-
"@esbuild/sunos-x64": "0.21.5",
|
|
388
|
-
"@esbuild/win32-arm64": "0.21.5",
|
|
389
|
-
"@esbuild/win32-ia32": "0.21.5",
|
|
390
|
-
"@esbuild/win32-x64": "0.21.5"
|
|
391
|
-
}
|
|
392
|
-
}
|
|
393
|
-
},
|
|
394
|
-
"dependencies": {
|
|
395
|
-
"@esbuild/aix-ppc64": {
|
|
396
|
-
"version": "0.21.5",
|
|
397
|
-
"resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz",
|
|
398
|
-
"integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==",
|
|
399
|
-
"optional": true
|
|
400
|
-
},
|
|
401
|
-
"@esbuild/android-arm": {
|
|
402
|
-
"version": "0.21.5",
|
|
403
|
-
"resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz",
|
|
404
|
-
"integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==",
|
|
405
|
-
"optional": true
|
|
406
|
-
},
|
|
407
|
-
"@esbuild/android-arm64": {
|
|
408
|
-
"version": "0.21.5",
|
|
409
|
-
"resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz",
|
|
410
|
-
"integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==",
|
|
411
|
-
"optional": true
|
|
412
|
-
},
|
|
413
|
-
"@esbuild/android-x64": {
|
|
414
|
-
"version": "0.21.5",
|
|
415
|
-
"resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz",
|
|
416
|
-
"integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==",
|
|
417
|
-
"optional": true
|
|
418
|
-
},
|
|
419
|
-
"@esbuild/darwin-arm64": {
|
|
420
|
-
"version": "0.21.5",
|
|
421
|
-
"resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz",
|
|
422
|
-
"integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==",
|
|
423
|
-
"optional": true
|
|
424
|
-
},
|
|
425
|
-
"@esbuild/darwin-x64": {
|
|
426
|
-
"version": "0.21.5",
|
|
427
|
-
"resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz",
|
|
428
|
-
"integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==",
|
|
429
|
-
"optional": true
|
|
430
|
-
},
|
|
431
|
-
"@esbuild/freebsd-arm64": {
|
|
432
|
-
"version": "0.21.5",
|
|
433
|
-
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz",
|
|
434
|
-
"integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==",
|
|
435
|
-
"optional": true
|
|
436
|
-
},
|
|
437
|
-
"@esbuild/freebsd-x64": {
|
|
438
|
-
"version": "0.21.5",
|
|
439
|
-
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz",
|
|
440
|
-
"integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==",
|
|
441
|
-
"optional": true
|
|
442
|
-
},
|
|
443
|
-
"@esbuild/linux-arm": {
|
|
444
|
-
"version": "0.21.5",
|
|
445
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz",
|
|
446
|
-
"integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==",
|
|
447
|
-
"optional": true
|
|
448
|
-
},
|
|
449
|
-
"@esbuild/linux-arm64": {
|
|
450
|
-
"version": "0.21.5",
|
|
451
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz",
|
|
452
|
-
"integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==",
|
|
453
|
-
"optional": true
|
|
454
|
-
},
|
|
455
|
-
"@esbuild/linux-ia32": {
|
|
456
|
-
"version": "0.21.5",
|
|
457
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz",
|
|
458
|
-
"integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==",
|
|
459
|
-
"optional": true
|
|
460
|
-
},
|
|
461
|
-
"@esbuild/linux-loong64": {
|
|
462
|
-
"version": "0.21.5",
|
|
463
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz",
|
|
464
|
-
"integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==",
|
|
465
|
-
"optional": true
|
|
466
|
-
},
|
|
467
|
-
"@esbuild/linux-mips64el": {
|
|
468
|
-
"version": "0.21.5",
|
|
469
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz",
|
|
470
|
-
"integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==",
|
|
471
|
-
"optional": true
|
|
472
|
-
},
|
|
473
|
-
"@esbuild/linux-ppc64": {
|
|
474
|
-
"version": "0.21.5",
|
|
475
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz",
|
|
476
|
-
"integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==",
|
|
477
|
-
"optional": true
|
|
478
|
-
},
|
|
479
|
-
"@esbuild/linux-riscv64": {
|
|
480
|
-
"version": "0.21.5",
|
|
481
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz",
|
|
482
|
-
"integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==",
|
|
483
|
-
"optional": true
|
|
484
|
-
},
|
|
485
|
-
"@esbuild/linux-s390x": {
|
|
486
|
-
"version": "0.21.5",
|
|
487
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz",
|
|
488
|
-
"integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==",
|
|
489
|
-
"optional": true
|
|
490
|
-
},
|
|
491
|
-
"@esbuild/linux-x64": {
|
|
492
|
-
"version": "0.21.5",
|
|
493
|
-
"resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz",
|
|
494
|
-
"integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==",
|
|
495
|
-
"optional": true
|
|
496
|
-
},
|
|
497
|
-
"@esbuild/netbsd-x64": {
|
|
498
|
-
"version": "0.21.5",
|
|
499
|
-
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz",
|
|
500
|
-
"integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==",
|
|
501
|
-
"optional": true
|
|
502
|
-
},
|
|
503
|
-
"@esbuild/openbsd-x64": {
|
|
504
|
-
"version": "0.21.5",
|
|
505
|
-
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz",
|
|
506
|
-
"integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==",
|
|
507
|
-
"optional": true
|
|
508
|
-
},
|
|
509
|
-
"@esbuild/sunos-x64": {
|
|
510
|
-
"version": "0.21.5",
|
|
511
|
-
"resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz",
|
|
512
|
-
"integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==",
|
|
513
|
-
"optional": true
|
|
514
|
-
},
|
|
515
|
-
"@esbuild/win32-arm64": {
|
|
516
|
-
"version": "0.21.5",
|
|
517
|
-
"resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz",
|
|
518
|
-
"integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==",
|
|
519
|
-
"optional": true
|
|
520
|
-
},
|
|
521
|
-
"@esbuild/win32-ia32": {
|
|
522
|
-
"version": "0.21.5",
|
|
523
|
-
"resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz",
|
|
524
|
-
"integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==",
|
|
525
|
-
"optional": true
|
|
526
|
-
},
|
|
527
|
-
"@esbuild/win32-x64": {
|
|
528
|
-
"version": "0.21.5",
|
|
529
|
-
"resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz",
|
|
530
|
-
"integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==",
|
|
531
|
-
"optional": true
|
|
532
|
-
},
|
|
533
|
-
"esbuild": {
|
|
534
|
-
"version": "0.21.5",
|
|
535
|
-
"resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz",
|
|
536
|
-
"integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==",
|
|
537
|
-
"requires": {
|
|
538
|
-
"@esbuild/aix-ppc64": "0.21.5",
|
|
539
|
-
"@esbuild/android-arm": "0.21.5",
|
|
540
|
-
"@esbuild/android-arm64": "0.21.5",
|
|
541
|
-
"@esbuild/android-x64": "0.21.5",
|
|
542
|
-
"@esbuild/darwin-arm64": "0.21.5",
|
|
543
|
-
"@esbuild/darwin-x64": "0.21.5",
|
|
544
|
-
"@esbuild/freebsd-arm64": "0.21.5",
|
|
545
|
-
"@esbuild/freebsd-x64": "0.21.5",
|
|
546
|
-
"@esbuild/linux-arm": "0.21.5",
|
|
547
|
-
"@esbuild/linux-arm64": "0.21.5",
|
|
548
|
-
"@esbuild/linux-ia32": "0.21.5",
|
|
549
|
-
"@esbuild/linux-loong64": "0.21.5",
|
|
550
|
-
"@esbuild/linux-mips64el": "0.21.5",
|
|
551
|
-
"@esbuild/linux-ppc64": "0.21.5",
|
|
552
|
-
"@esbuild/linux-riscv64": "0.21.5",
|
|
553
|
-
"@esbuild/linux-s390x": "0.21.5",
|
|
554
|
-
"@esbuild/linux-x64": "0.21.5",
|
|
555
|
-
"@esbuild/netbsd-x64": "0.21.5",
|
|
556
|
-
"@esbuild/openbsd-x64": "0.21.5",
|
|
557
|
-
"@esbuild/sunos-x64": "0.21.5",
|
|
558
|
-
"@esbuild/win32-arm64": "0.21.5",
|
|
559
|
-
"@esbuild/win32-ia32": "0.21.5",
|
|
560
|
-
"@esbuild/win32-x64": "0.21.5"
|
|
561
|
-
}
|
|
562
|
-
}
|
|
563
|
-
}
|
|
564
|
-
}
|
package/core/UnsafeJs.ff
DELETED
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
jsSystem(): JsSystem
|
|
2
|
-
target js async "return typeof globalThis !== 'undefined' ? globalThis : window"
|
|
3
|
-
target js sync "return typeof globalThis !== 'undefined' ? globalThis : window"
|
|
4
|
-
|
|
5
|
-
import(module: String): JsValue
|
|
6
|
-
// Replaced by the compiler ~ hoisted top level import - dynamic imports not currently supported
|
|
7
|
-
target js sync "throw Error('Dynamic JS imports are not currently supported.')"
|
|
8
|
-
|
|
9
|
-
await[T](body: () => T): T // This is never actually called async, but will be rewitten by the compiler
|
|
10
|
-
// Replaced by the compiler
|
|
11
|
-
target js sync "return body_()"
|
|
12
|
-
|
|
13
|
-
throwIfCancelled(): Unit
|
|
14
|
-
// Replaced by the compiler
|
|
15
|
-
target js sync ""
|
|
16
|
-
|
|
17
|
-
cancelled(): Bool
|
|
18
|
-
// Replaced by the compiler
|
|
19
|
-
target js sync "return false"
|
|
20
|
-
|
|
21
|
-
inAsync(): Bool
|
|
22
|
-
// Replaced by the compiler
|
|
23
|
-
target js sync "return false"
|
|
24
|
-
|
|
25
|
-
inBrowser(): Bool
|
|
26
|
-
// Replaced by the compiler
|
|
27
|
-
target js sync "return false"
|
|
28
|
-
|
|
29
|
-
inNode(): Bool
|
|
30
|
-
// Replaced by the compiler
|
|
31
|
-
target js sync "return false"
|
|
32
|
-
|
|
33
|
-
inBuild(): Bool
|
|
34
|
-
// Replaced by the compiler
|
|
35
|
-
target js sync "return false"
|
|
36
|
-
|
|
37
|
-
value[T](value: T): JsValue
|
|
38
|
-
target js sync "return value_"
|
|
39
|
-
|
|
40
|
-
fromValue[T](value: JsValue): T
|
|
41
|
-
target js sync "return value_"
|
|
42
|
-
|