tangled
alpha
login
or
join now
danabra.mov
/
statusphere-react
forked from
samuel.fm/statusphere-react
0
fork
atom
the statusphere demo reworked into a vite/react app in a monorepo
0
fork
atom
overview
issues
pulls
pipelines
switch db driver
dholms
2 years ago
d6ebb4ef
96050afb
+135
-690
10 changed files
expand all
collapse all
unified
split
package.json
src
config.ts
db
index.ts
migrations.ts
schema.ts
db.ts
firehose.ts
router.ts
server.ts
yarn.lock
+3
-3
package.json
···
19
19
"dependencies": {
20
20
"@atproto/repo": "^0.4.1",
21
21
"@atproto/xrpc-server": "^0.5.3",
22
22
+
"better-sqlite3": "^11.1.2",
22
23
"cors": "^2.8.5",
23
24
"dotenv": "^16.4.5",
24
25
"envalid": "^8.0.0",
···
27
28
"helmet": "^7.1.0",
28
29
"http-status-codes": "^2.3.0",
29
30
"kysely": "^0.27.4",
30
30
-
"pino-http": "^10.0.0",
31
31
-
"sequelize": "^6.37.3",
32
32
-
"sqlite3": "^5.1.7"
31
31
+
"pino-http": "^10.0.0"
33
32
},
34
33
"devDependencies": {
35
34
"@biomejs/biome": "1.8.3",
35
35
+
"@types/better-sqlite3": "^7.6.11",
36
36
"@types/cors": "^2.8.17",
37
37
"@types/express": "^4.17.21",
38
38
"lint-staged": "^15.2.2",
+9
src/config.ts
···
1
1
+
import type pino from "pino";
2
2
+
import type { Database } from "#/db";
3
3
+
import type { Firehose } from "#/firehose";
4
4
+
5
5
+
export type AppContext = {
6
6
+
db: Database;
7
7
+
firehose: Firehose;
8
8
+
logger: pino.Logger;
9
9
+
};
-14
src/db.ts
···
1
1
-
import { DataTypes, Sequelize } from "sequelize";
2
2
-
3
3
-
export const Database = new Sequelize("sqlite::memory:");
4
4
-
5
5
-
export const Post = Database.define("Post", {
6
6
-
uri: {
7
7
-
type: DataTypes.STRING,
8
8
-
primaryKey: true,
9
9
-
},
10
10
-
text: {
11
11
-
type: DataTypes.STRING,
12
12
-
allowNull: false,
13
13
-
},
14
14
-
});
+20
src/db/index.ts
···
1
1
+
import SqliteDb from "better-sqlite3";
2
2
+
import { Kysely, Migrator, SqliteDialect } from "kysely";
3
3
+
import { migrationProvider } from "./migrations";
4
4
+
import type { DatabaseSchema } from "./schema";
5
5
+
6
6
+
export const createDb = (location: string): Database => {
7
7
+
return new Kysely<DatabaseSchema>({
8
8
+
dialect: new SqliteDialect({
9
9
+
database: new SqliteDb(location),
10
10
+
}),
11
11
+
});
12
12
+
};
13
13
+
14
14
+
export const migrateToLatest = async (db: Database) => {
15
15
+
const migrator = new Migrator({ db, provider: migrationProvider });
16
16
+
const { error } = await migrator.migrateToLatest();
17
17
+
if (error) throw error;
18
18
+
};
19
19
+
20
20
+
export type Database = Kysely<DatabaseSchema>;
+23
src/db/migrations.ts
···
1
1
+
import type { Kysely, Migration, MigrationProvider } from "kysely";
2
2
+
3
3
+
const migrations: Record<string, Migration> = {};
4
4
+
5
5
+
export const migrationProvider: MigrationProvider = {
6
6
+
async getMigrations() {
7
7
+
return migrations;
8
8
+
},
9
9
+
};
10
10
+
11
11
+
migrations["001"] = {
12
12
+
async up(db: Kysely<unknown>) {
13
13
+
await db.schema
14
14
+
.createTable("post")
15
15
+
.addColumn("uri", "varchar", (col) => col.primaryKey())
16
16
+
.addColumn("text", "varchar", (col) => col.notNull())
17
17
+
.addColumn("indexedAt", "varchar", (col) => col.notNull())
18
18
+
.execute();
19
19
+
},
20
20
+
async down(db: Kysely<unknown>) {
21
21
+
await db.schema.dropTable("post").execute();
22
22
+
},
23
23
+
};
+9
src/db/schema.ts
···
1
1
+
export type DatabaseSchema = {
2
2
+
post: Post;
3
3
+
};
4
4
+
5
5
+
export type Post = {
6
6
+
uri: string;
7
7
+
text: string;
8
8
+
indexedAt: string;
9
9
+
};
+14
-4
src/firehose.ts
···
1
1
import { cborToLexRecord, readCar } from "@atproto/repo";
2
2
import { Subscription } from "@atproto/xrpc-server";
3
3
-
import { Post } from "#/db";
3
3
+
import type { Database } from "#/db";
4
4
5
5
export class Firehose {
6
6
public sub: Subscription<unknown>;
7
7
8
8
-
constructor(public service: string) {
8
8
+
constructor(public service: string, public db: Database) {
9
9
this.sub = new Subscription({
10
10
service: service,
11
11
method: "com.atproto.sync.subscribeRepos",
···
31
31
const recordBytes = car.blocks.get(op.cid);
32
32
if (!recordBytes) continue;
33
33
const record = cborToLexRecord(recordBytes);
34
34
-
await Post.create({ uri, text: record.text });
34
34
+
await this.db
35
35
+
.insertInto("post")
36
36
+
.values({
37
37
+
uri,
38
38
+
text: record.text as string,
39
39
+
indexedAt: new Date().toISOString(),
40
40
+
})
41
41
+
.execute();
35
42
}
36
43
}
37
44
···
46
53
}
47
54
} catch (err) {
48
55
console.error("repo subscription errored", err);
49
49
-
setTimeout(() => this.run(subscriptionReconnectDelay), subscriptionReconnectDelay);
56
56
+
setTimeout(
57
57
+
() => this.run(subscriptionReconnectDelay),
58
58
+
subscriptionReconnectDelay
59
59
+
);
50
60
}
51
61
}
52
62
}
+14
-10
src/router.ts
···
1
1
import express from "express";
2
2
-
import { Post } from "#/db";
2
2
+
import type { AppContext } from "#/config";
3
3
4
4
-
const router = express.Router();
4
4
+
export const createRouter = (ctx: AppContext) => {
5
5
+
const router = express.Router();
5
6
6
6
-
router.get("/", async (req, res) => {
7
7
-
const posts = await Post.findAll({
8
8
-
order: [["createdAt", "DESC"]],
9
9
-
limit: 10,
7
7
+
router.get("/", async (req, res) => {
8
8
+
const posts = await ctx.db
9
9
+
.selectFrom("post")
10
10
+
.selectAll()
11
11
+
.orderBy("indexedAt", "desc")
12
12
+
.limit(10)
13
13
+
.execute();
14
14
+
const postTexts = posts.map((row) => row.text);
15
15
+
res.json(postTexts);
10
16
});
11
11
-
const texts = posts.map((p) => p.dataValues.text);
12
12
-
res.json(texts);
13
13
-
});
14
17
15
15
-
export default router;
18
18
+
return router;
19
19
+
};
+18
-12
src/server.ts
···
9
9
import rateLimiter from "#/common/middleware/rateLimiter";
10
10
import requestLogger from "#/common/middleware/requestLogger";
11
11
import { env } from "#/common/utils/envConfig";
12
12
-
import { Database } from "#/db";
12
12
+
import { createDb, migrateToLatest } from "#/db";
13
13
import { Firehose } from "#/firehose";
14
14
-
import router from "#/router";
14
14
+
import { createRouter } from "#/router";
15
15
+
import type { AppContext } from "./config";
15
16
16
17
export class Server {
17
18
constructor(
18
19
public app: express.Application,
19
20
public server: http.Server,
20
20
-
public firehose: Firehose,
21
21
-
public logger: pino.Logger,
21
21
+
public ctx: AppContext
22
22
) {}
23
23
24
24
static async create() {
25
25
const { NODE_ENV, HOST, PORT } = env;
26
26
27
27
-
await Database.sync({ force: true });
28
28
-
29
27
const logger = pino({ name: "server start" });
28
28
+
const db = createDb(":memory:");
29
29
+
await migrateToLatest(db);
30
30
+
const firehose = new Firehose("https://bsky.network", db);
31
31
+
firehose.run(10);
32
32
+
const ctx = {
33
33
+
db,
34
34
+
firehose,
35
35
+
logger,
36
36
+
};
37
37
+
30
38
const app: Express = express();
31
39
32
40
// Set the application to trust the reverse proxy
···
46
54
app.use(requestLogger);
47
55
48
56
// Routes
57
57
+
const router = createRouter(ctx);
49
58
app.use(router);
50
59
51
60
// Error handlers
···
55
64
await events.once(server, "listening");
56
65
logger.info(`Server (${NODE_ENV}) running on port http://${HOST}:${PORT}`);
57
66
58
58
-
const firehose = new Firehose("https://bsky.network");
59
59
-
firehose.run(10);
60
60
-
61
61
-
return new Server(app, server, firehose, logger);
67
67
+
return new Server(app, server, ctx);
62
68
}
63
69
64
70
async close() {
65
65
-
this.logger.info("sigint received, shutting down");
71
71
+
this.ctx.logger.info("sigint received, shutting down");
66
72
return new Promise<void>((resolve) => {
67
73
this.server.close(() => {
68
68
-
this.logger.info("server closed");
74
74
+
this.ctx.logger.info("server closed");
69
75
resolve();
70
76
});
71
77
});
+25
-647
yarn.lock
···
417
417
resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.23.0.tgz#db44a6a08520b5f25bbe409f34a59f2d4bcc7ced"
418
418
integrity sha512-Arm+WgUFLUATuoxCJcahGuk6Yj9Pzxd6l11Zb/2aAuv5kWWvvfhLFo2fni4uSK5vzlUdCGZ/BdV5tH8klj8p8g==
419
419
420
420
-
"@gar/promisify@^1.0.1":
421
421
-
version "1.1.3"
422
422
-
resolved "https://registry.yarnpkg.com/@gar/promisify/-/promisify-1.1.3.tgz#555193ab2e3bb3b6adc3d551c9c030d9e860daf6"
423
423
-
integrity sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==
424
424
-
425
420
"@ipld/car@^3.2.3":
426
421
version "3.2.4"
427
422
resolved "https://registry.yarnpkg.com/@ipld/car/-/car-3.2.4.tgz#115951ba2255ec51d865773a074e422c169fb01c"
···
515
510
dependencies:
516
511
"@nodelib/fs.scandir" "2.1.5"
517
512
fastq "^1.6.0"
518
518
-
519
519
-
"@npmcli/fs@^1.0.0":
520
520
-
version "1.1.1"
521
521
-
resolved "https://registry.yarnpkg.com/@npmcli/fs/-/fs-1.1.1.tgz#72f719fe935e687c56a4faecf3c03d06ba593257"
522
522
-
integrity sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==
523
523
-
dependencies:
524
524
-
"@gar/promisify" "^1.0.1"
525
525
-
semver "^7.3.5"
526
526
-
527
527
-
"@npmcli/move-file@^1.0.1":
528
528
-
version "1.1.2"
529
529
-
resolved "https://registry.yarnpkg.com/@npmcli/move-file/-/move-file-1.1.2.tgz#1a82c3e372f7cae9253eb66d72543d6b8685c674"
530
530
-
integrity sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==
531
531
-
dependencies:
532
532
-
mkdirp "^1.0.4"
533
533
-
rimraf "^3.0.2"
534
513
535
514
"@pkgjs/parseargs@^0.11.0":
536
515
version "0.11.0"
···
617
596
resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.19.1.tgz#5f2c40d3f1b53ede80fb4e6964f840c0f8936832"
618
597
integrity sha512-2bIrL28PcK3YCqD9anGxDxamxdiJAxA+l7fWIwM5o8UqNy1t3d1NdAweO2XhA0KTDJ5aH1FsuiT5+7VhtHliXg==
619
598
620
620
-
"@tootallnate/once@1":
621
621
-
version "1.1.2"
622
622
-
resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-1.1.2.tgz#ccb91445360179a04e7fe6aff78c00ffc1eeaf82"
623
623
-
integrity sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==
599
599
+
"@types/better-sqlite3@^7.6.11":
600
600
+
version "7.6.11"
601
601
+
resolved "https://registry.yarnpkg.com/@types/better-sqlite3/-/better-sqlite3-7.6.11.tgz#95acf22fcf5577624eea202058e26ba239760b9f"
602
602
+
integrity sha512-i8KcD3PgGtGBLl3+mMYA8PdKkButvPyARxA7IQAd6qeslht13qxb1zzO8dRCtE7U3IoJS782zDBAeoKiM695kg==
603
603
+
dependencies:
604
604
+
"@types/node" "*"
624
605
625
606
"@types/body-parser@*":
626
607
version "1.19.5"
···
644
625
dependencies:
645
626
"@types/node" "*"
646
627
647
647
-
"@types/debug@^4.1.8":
648
648
-
version "4.1.12"
649
649
-
resolved "https://registry.yarnpkg.com/@types/debug/-/debug-4.1.12.tgz#a155f21690871953410df4b6b6f53187f0500917"
650
650
-
integrity sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==
651
651
-
dependencies:
652
652
-
"@types/ms" "*"
653
653
-
654
628
"@types/estree@1.0.5", "@types/estree@^1.0.0":
655
629
version "1.0.5"
656
630
resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.5.tgz#a6ce3e556e00fd9895dd872dd172ad0d4bd687f4"
···
686
660
resolved "https://registry.yarnpkg.com/@types/mime/-/mime-1.3.5.tgz#1ef302e01cf7d2b5a0fa526790c9123bf1d06690"
687
661
integrity sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==
688
662
689
689
-
"@types/ms@*":
690
690
-
version "0.7.34"
691
691
-
resolved "https://registry.yarnpkg.com/@types/ms/-/ms-0.7.34.tgz#10964ba0dee6ac4cd462e2795b6bebd407303433"
692
692
-
integrity sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==
693
693
-
694
663
"@types/node@*":
695
664
version "22.0.2"
696
665
resolved "https://registry.yarnpkg.com/@types/node/-/node-22.0.2.tgz#9fb1a2b31970871e8bf696f0e8a40d2e6d2bd04e"
···
724
693
"@types/http-errors" "*"
725
694
"@types/node" "*"
726
695
"@types/send" "*"
727
727
-
728
728
-
"@types/validator@^13.7.17":
729
729
-
version "13.12.0"
730
730
-
resolved "https://registry.yarnpkg.com/@types/validator/-/validator-13.12.0.tgz#1fe4c3ae9de5cf5193ce64717c99ef2fa7d8756f"
731
731
-
integrity sha512-nH45Lk7oPIJ1RVOF6JgFI6Dy0QpHEzq4QecZhvguxYPDwT8c93prCMqAtiIttm39voZ+DDR+qkNnMpJmMBRqag==
732
696
733
697
"@vitest/expect@2.0.5":
734
698
version "2.0.5"
···
780
744
estree-walker "^3.0.3"
781
745
loupe "^3.1.1"
782
746
tinyrainbow "^1.2.0"
783
783
-
784
784
-
abbrev@1:
785
785
-
version "1.1.1"
786
786
-
resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8"
787
787
-
integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==
788
747
789
748
abort-controller@^3.0.0:
790
749
version "3.0.0"
···
801
760
mime-types "~2.1.34"
802
761
negotiator "0.6.3"
803
762
804
804
-
agent-base@6, agent-base@^6.0.2:
805
805
-
version "6.0.2"
806
806
-
resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77"
807
807
-
integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==
808
808
-
dependencies:
809
809
-
debug "4"
810
810
-
811
811
-
agentkeepalive@^4.1.3:
812
812
-
version "4.5.0"
813
813
-
resolved "https://registry.yarnpkg.com/agentkeepalive/-/agentkeepalive-4.5.0.tgz#2673ad1389b3c418c5a20c5d7364f93ca04be923"
814
814
-
integrity sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==
815
815
-
dependencies:
816
816
-
humanize-ms "^1.2.1"
817
817
-
818
818
-
aggregate-error@^3.0.0:
819
819
-
version "3.1.0"
820
820
-
resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a"
821
821
-
integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==
822
822
-
dependencies:
823
823
-
clean-stack "^2.0.0"
824
824
-
indent-string "^4.0.0"
825
825
-
826
763
ansi-escapes@^7.0.0:
827
764
version "7.0.0"
828
765
resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-7.0.0.tgz#00fc19f491bbb18e1d481b97868204f92109bfe7"
···
865
802
normalize-path "^3.0.0"
866
803
picomatch "^2.0.4"
867
804
868
868
-
"aproba@^1.0.3 || ^2.0.0":
869
869
-
version "2.0.0"
870
870
-
resolved "https://registry.yarnpkg.com/aproba/-/aproba-2.0.0.tgz#52520b8ae5b569215b354efc0caa3fe1e45a8adc"
871
871
-
integrity sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==
872
872
-
873
873
-
are-we-there-yet@^3.0.0:
874
874
-
version "3.0.1"
875
875
-
resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz#679df222b278c64f2cdba1175cdc00b0d96164bd"
876
876
-
integrity sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==
877
877
-
dependencies:
878
878
-
delegates "^1.0.0"
879
879
-
readable-stream "^3.6.0"
880
880
-
881
805
array-flatten@1.1.1:
882
806
version "1.1.1"
883
807
resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2"
···
918
842
resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a"
919
843
integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==
920
844
845
845
+
better-sqlite3@^11.1.2:
846
846
+
version "11.1.2"
847
847
+
resolved "https://registry.yarnpkg.com/better-sqlite3/-/better-sqlite3-11.1.2.tgz#6c9d064c9f1ff2a7f507477648ca0ba67bf564a3"
848
848
+
integrity sha512-gujtFwavWU4MSPT+h9B+4pkvZdyOUkH54zgLdIrMmmmd4ZqiBIrRNBzNzYVFO417xo882uP5HBu4GjOfaSrIQw==
849
849
+
dependencies:
850
850
+
bindings "^1.5.0"
851
851
+
prebuild-install "^7.1.1"
852
852
+
921
853
binary-extensions@^2.0.0:
922
854
version "2.3.0"
923
855
resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.3.0.tgz#f6e14a97858d327252200242d4ccfe522c445522"
···
956
888
raw-body "2.5.2"
957
889
type-is "~1.6.18"
958
890
unpipe "1.0.0"
959
959
-
960
960
-
brace-expansion@^1.1.7:
961
961
-
version "1.1.11"
962
962
-
resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
963
963
-
integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
964
964
-
dependencies:
965
965
-
balanced-match "^1.0.0"
966
966
-
concat-map "0.0.1"
967
891
968
892
brace-expansion@^2.0.1:
969
893
version "2.0.1"
···
1012
936
resolved "https://registry.yarnpkg.com/cac/-/cac-6.7.14.tgz#804e1e6f506ee363cb0e3ccbb09cad5dd9870959"
1013
937
integrity sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==
1014
938
1015
1015
-
cacache@^15.2.0:
1016
1016
-
version "15.3.0"
1017
1017
-
resolved "https://registry.yarnpkg.com/cacache/-/cacache-15.3.0.tgz#dc85380fb2f556fe3dda4c719bfa0ec875a7f1eb"
1018
1018
-
integrity sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==
1019
1019
-
dependencies:
1020
1020
-
"@npmcli/fs" "^1.0.0"
1021
1021
-
"@npmcli/move-file" "^1.0.1"
1022
1022
-
chownr "^2.0.0"
1023
1023
-
fs-minipass "^2.0.0"
1024
1024
-
glob "^7.1.4"
1025
1025
-
infer-owner "^1.0.4"
1026
1026
-
lru-cache "^6.0.0"
1027
1027
-
minipass "^3.1.1"
1028
1028
-
minipass-collect "^1.0.2"
1029
1029
-
minipass-flush "^1.0.5"
1030
1030
-
minipass-pipeline "^1.2.2"
1031
1031
-
mkdirp "^1.0.3"
1032
1032
-
p-map "^4.0.0"
1033
1033
-
promise-inflight "^1.0.1"
1034
1034
-
rimraf "^3.0.2"
1035
1035
-
ssri "^8.0.1"
1036
1036
-
tar "^6.0.2"
1037
1037
-
unique-filename "^1.1.1"
1038
1038
-
1039
939
call-bind@^1.0.7:
1040
940
version "1.0.7"
1041
941
resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.7.tgz#06016599c40c56498c18769d2730be242b6fa3b9"
···
1114
1014
resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b"
1115
1015
integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==
1116
1016
1117
1117
-
chownr@^2.0.0:
1118
1118
-
version "2.0.0"
1119
1119
-
resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece"
1120
1120
-
integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==
1121
1121
-
1122
1122
-
clean-stack@^2.0.0:
1123
1123
-
version "2.2.0"
1124
1124
-
resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b"
1125
1125
-
integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==
1126
1126
-
1127
1017
cli-cursor@^5.0.0:
1128
1018
version "5.0.0"
1129
1019
resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-5.0.0.tgz#24a4831ecf5a6b01ddeb32fb71a4b2088b0dce38"
···
1151
1041
resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
1152
1042
integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
1153
1043
1154
1154
-
color-support@^1.1.3:
1155
1155
-
version "1.1.3"
1156
1156
-
resolved "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2"
1157
1157
-
integrity sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==
1158
1158
-
1159
1044
colorette@^2.0.20, colorette@^2.0.7:
1160
1045
version "2.0.20"
1161
1046
resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.20.tgz#9eb793e6833067f7235902fcd3b09917a000a95a"
···
1183
1068
resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.1.tgz#ef1d5796f7d93f135ee6fb684340b26403c97d17"
1184
1069
integrity sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ==
1185
1070
1186
1186
-
concat-map@0.0.1:
1187
1187
-
version "0.0.1"
1188
1188
-
resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
1189
1189
-
integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==
1190
1190
-
1191
1071
consola@^3.2.3:
1192
1072
version "3.2.3"
1193
1073
resolved "https://registry.yarnpkg.com/consola/-/consola-3.2.3.tgz#0741857aa88cfa0d6fd53f1cff0375136e98502f"
1194
1074
integrity sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==
1195
1195
-
1196
1196
-
console-control-strings@^1.1.0:
1197
1197
-
version "1.1.0"
1198
1198
-
resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
1199
1199
-
integrity sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==
1200
1075
1201
1076
content-disposition@0.5.4:
1202
1077
version "0.5.4"
···
1254
1129
dependencies:
1255
1130
ms "2.0.0"
1256
1131
1257
1257
-
debug@4, debug@^4.1.1, debug@^4.3.3, debug@^4.3.4, debug@^4.3.5, debug@~4.3.4:
1132
1132
+
debug@^4.1.1, debug@^4.3.4, debug@^4.3.5, debug@~4.3.4:
1258
1133
version "4.3.6"
1259
1134
resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.6.tgz#2ab2c38fbaffebf8aa95fdfe6d88438c7a13c52b"
1260
1135
integrity sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==
···
1292
1167
resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
1293
1168
integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==
1294
1169
1295
1295
-
delegates@^1.0.0:
1296
1296
-
version "1.0.0"
1297
1297
-
resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
1298
1298
-
integrity sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==
1299
1299
-
1300
1170
depd@2.0.0:
1301
1171
version "2.0.0"
1302
1172
resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df"
···
1332
1202
resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.4.5.tgz#cdd3b3b604cb327e286b4762e13502f717cb099f"
1333
1203
integrity sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==
1334
1204
1335
1335
-
dottie@^2.0.6:
1336
1336
-
version "2.0.6"
1337
1337
-
resolved "https://registry.yarnpkg.com/dottie/-/dottie-2.0.6.tgz#34564ebfc6ec5e5772272d466424ad5b696484d4"
1338
1338
-
integrity sha512-iGCHkfUc5kFekGiqhe8B/mdaurD+lakO9txNnTvKtA6PISrw86LgqHvRzWYPyoE2Ph5aMIrCw9/uko6XHTKCwA==
1339
1339
-
1340
1205
eastasianwidth@^0.2.0:
1341
1206
version "0.2.0"
1342
1207
resolved "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz#696ce2ec0aa0e6ea93a397ffcf24aa7840c827cb"
···
1367
1232
resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"
1368
1233
integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==
1369
1234
1370
1370
-
encoding@^0.1.12:
1371
1371
-
version "0.1.13"
1372
1372
-
resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.13.tgz#56574afdd791f54a8e9b2785c0582a2d26210fa9"
1373
1373
-
integrity sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==
1374
1374
-
dependencies:
1375
1375
-
iconv-lite "^0.6.2"
1376
1376
-
1377
1235
end-of-stream@^1.1.0, end-of-stream@^1.4.1:
1378
1236
version "1.4.4"
1379
1237
resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0"
···
1381
1239
dependencies:
1382
1240
once "^1.4.0"
1383
1241
1384
1384
-
env-paths@^2.2.0:
1385
1385
-
version "2.2.1"
1386
1386
-
resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.1.tgz#420399d416ce1fbe9bc0a07c62fa68d67fd0f8f2"
1387
1387
-
integrity sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==
1388
1388
-
1389
1242
envalid@^8.0.0:
1390
1243
version "8.0.0"
1391
1244
resolved "https://registry.yarnpkg.com/envalid/-/envalid-8.0.0.tgz#2314451e18e88051c98540ab60640e330279e486"
···
1397
1250
version "1.1.0"
1398
1251
resolved "https://registry.yarnpkg.com/environment/-/environment-1.1.0.tgz#8e86c66b180f363c7ab311787e0259665f45a9f1"
1399
1252
integrity sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==
1400
1400
-
1401
1401
-
err-code@^2.0.2:
1402
1402
-
version "2.0.3"
1403
1403
-
resolved "https://registry.yarnpkg.com/err-code/-/err-code-2.0.3.tgz#23c2f3b756ffdfc608d30e27c9a941024807e7f9"
1404
1404
-
integrity sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==
1405
1253
1406
1254
es-define-property@^1.0.0:
1407
1255
version "1.0.0"
···
1682
1530
resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad"
1683
1531
integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==
1684
1532
1685
1685
-
fs-minipass@^2.0.0:
1686
1686
-
version "2.1.0"
1687
1687
-
resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb"
1688
1688
-
integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==
1689
1689
-
dependencies:
1690
1690
-
minipass "^3.0.0"
1691
1691
-
1692
1692
-
fs.realpath@^1.0.0:
1693
1693
-
version "1.0.0"
1694
1694
-
resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
1695
1695
-
integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==
1696
1696
-
1697
1533
fsevents@~2.3.2, fsevents@~2.3.3:
1698
1534
version "2.3.3"
1699
1535
resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6"
···
1703
1539
version "1.1.2"
1704
1540
resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c"
1705
1541
integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==
1706
1706
-
1707
1707
-
gauge@^4.0.3:
1708
1708
-
version "4.0.4"
1709
1709
-
resolved "https://registry.yarnpkg.com/gauge/-/gauge-4.0.4.tgz#52ff0652f2bbf607a989793d53b751bef2328dce"
1710
1710
-
integrity sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==
1711
1711
-
dependencies:
1712
1712
-
aproba "^1.0.3 || ^2.0.0"
1713
1713
-
color-support "^1.1.3"
1714
1714
-
console-control-strings "^1.1.0"
1715
1715
-
has-unicode "^2.0.1"
1716
1716
-
signal-exit "^3.0.7"
1717
1717
-
string-width "^4.2.3"
1718
1718
-
strip-ansi "^6.0.1"
1719
1719
-
wide-align "^1.1.5"
1720
1542
1721
1543
get-caller-file@^2.0.5:
1722
1544
version "2.0.5"
···
1785
1607
package-json-from-dist "^1.0.0"
1786
1608
path-scurry "^1.11.1"
1787
1609
1788
1788
-
glob@^7.1.3, glob@^7.1.4:
1789
1789
-
version "7.2.3"
1790
1790
-
resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b"
1791
1791
-
integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==
1792
1792
-
dependencies:
1793
1793
-
fs.realpath "^1.0.0"
1794
1794
-
inflight "^1.0.4"
1795
1795
-
inherits "2"
1796
1796
-
minimatch "^3.1.1"
1797
1797
-
once "^1.3.0"
1798
1798
-
path-is-absolute "^1.0.0"
1799
1799
-
1800
1610
globby@^11.1.0:
1801
1611
version "11.1.0"
1802
1612
resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b"
···
1821
1631
dependencies:
1822
1632
get-intrinsic "^1.1.3"
1823
1633
1824
1824
-
graceful-fs@^4.2.6:
1825
1825
-
version "4.2.11"
1826
1826
-
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3"
1827
1827
-
integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==
1828
1828
-
1829
1634
graphemer@^1.4.0:
1830
1635
version "1.4.0"
1831
1636
resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6"
···
1848
1653
resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8"
1849
1654
integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==
1850
1655
1851
1851
-
has-unicode@^2.0.1:
1852
1852
-
version "2.0.1"
1853
1853
-
resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
1854
1854
-
integrity sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==
1855
1855
-
1856
1656
hasown@^2.0.0:
1857
1657
version "2.0.2"
1858
1658
resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz#003eaf91be7adc372e84ec59dc37252cedb80003"
···
1874
1674
version "1.0.0"
1875
1675
resolved "https://registry.yarnpkg.com/hexoid/-/hexoid-1.0.0.tgz#ad10c6573fb907de23d9ec63a711267d9dc9bc18"
1876
1676
integrity sha512-QFLV0taWQOZtvIRIAdBChesmogZrtuXvVWsFHZTk2SU+anspqZ2vMnoLg7IE1+Uk16N19APic1BuF8bC8c2m5g==
1877
1877
-
1878
1878
-
http-cache-semantics@^4.1.0:
1879
1879
-
version "4.1.1"
1880
1880
-
resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz#abe02fcb2985460bf0323be664436ec3476a6d5a"
1881
1881
-
integrity sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==
1882
1677
1883
1678
http-errors@2.0.0, http-errors@^2.0.0:
1884
1679
version "2.0.0"
···
1891
1686
statuses "2.0.1"
1892
1687
toidentifier "1.0.1"
1893
1688
1894
1894
-
http-proxy-agent@^4.0.1:
1895
1895
-
version "4.0.1"
1896
1896
-
resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz#8a8c8ef7f5932ccf953c296ca8291b95aa74aa3a"
1897
1897
-
integrity sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==
1898
1898
-
dependencies:
1899
1899
-
"@tootallnate/once" "1"
1900
1900
-
agent-base "6"
1901
1901
-
debug "4"
1902
1902
-
1903
1689
http-status-codes@^2.3.0:
1904
1690
version "2.3.0"
1905
1691
resolved "https://registry.yarnpkg.com/http-status-codes/-/http-status-codes-2.3.0.tgz#987fefb28c69f92a43aecc77feec2866349a8bfc"
1906
1692
integrity sha512-RJ8XvFvpPM/Dmc5SV+dC4y5PCeOhT3x1Hq0NU3rjGeg5a/CqlhZ7uudknPwZFz4aeAXDcbAyaeP7GAo9lvngtA==
1907
1907
-
1908
1908
-
https-proxy-agent@^5.0.0:
1909
1909
-
version "5.0.1"
1910
1910
-
resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz#c59ef224a04fe8b754f3db0063a25ea30d0005d6"
1911
1911
-
integrity sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==
1912
1912
-
dependencies:
1913
1913
-
agent-base "6"
1914
1914
-
debug "4"
1915
1693
1916
1694
human-signals@^2.1.0:
1917
1695
version "2.1.0"
···
1923
1701
resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-5.0.0.tgz#42665a284f9ae0dade3ba41ebc37eb4b852f3a28"
1924
1702
integrity sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==
1925
1703
1926
1926
-
humanize-ms@^1.2.1:
1927
1927
-
version "1.2.1"
1928
1928
-
resolved "https://registry.yarnpkg.com/humanize-ms/-/humanize-ms-1.2.1.tgz#c46e3159a293f6b896da29316d8b6fe8bb79bbed"
1929
1929
-
integrity sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==
1930
1930
-
dependencies:
1931
1931
-
ms "^2.0.0"
1932
1932
-
1933
1704
iconv-lite@0.4.24:
1934
1705
version "0.4.24"
1935
1706
resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
···
1937
1708
dependencies:
1938
1709
safer-buffer ">= 2.1.2 < 3"
1939
1710
1940
1940
-
iconv-lite@^0.6.2:
1941
1941
-
version "0.6.3"
1942
1942
-
resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501"
1943
1943
-
integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==
1944
1944
-
dependencies:
1945
1945
-
safer-buffer ">= 2.1.2 < 3.0.0"
1946
1946
-
1947
1711
ieee754@^1.1.13, ieee754@^1.2.1:
1948
1712
version "1.2.1"
1949
1713
resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352"
···
1954
1718
resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.1.tgz#5073e554cd42c5b33b394375f538b8593e34d4ef"
1955
1719
integrity sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==
1956
1720
1957
1957
-
imurmurhash@^0.1.4:
1958
1958
-
version "0.1.4"
1959
1959
-
resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
1960
1960
-
integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==
1961
1961
-
1962
1962
-
indent-string@^4.0.0:
1963
1963
-
version "4.0.0"
1964
1964
-
resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251"
1965
1965
-
integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==
1966
1966
-
1967
1967
-
infer-owner@^1.0.4:
1968
1968
-
version "1.0.4"
1969
1969
-
resolved "https://registry.yarnpkg.com/infer-owner/-/infer-owner-1.0.4.tgz#c4cefcaa8e51051c2a40ba2ce8a3d27295af9467"
1970
1970
-
integrity sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==
1971
1971
-
1972
1972
-
inflection@^1.13.4:
1973
1973
-
version "1.13.4"
1974
1974
-
resolved "https://registry.yarnpkg.com/inflection/-/inflection-1.13.4.tgz#65aa696c4e2da6225b148d7a154c449366633a32"
1975
1975
-
integrity sha512-6I/HUDeYFfuNCVS3td055BaXBwKYuzw7K3ExVMStBowKo9oOAMJIXIHvdyR3iboTCp1b+1i5DSkIZTcwIktuDw==
1976
1976
-
1977
1977
-
inflight@^1.0.4:
1978
1978
-
version "1.0.6"
1979
1979
-
resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
1980
1980
-
integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==
1981
1981
-
dependencies:
1982
1982
-
once "^1.3.0"
1983
1983
-
wrappy "1"
1984
1984
-
1985
1985
-
inherits@2, inherits@2.0.4, inherits@^2.0.3, inherits@^2.0.4:
1721
1721
+
inherits@2.0.4, inherits@^2.0.3, inherits@^2.0.4:
1986
1722
version "2.0.4"
1987
1723
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
1988
1724
integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
···
1991
1727
version "1.3.8"
1992
1728
resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c"
1993
1729
integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==
1994
1994
-
1995
1995
-
ip-address@^9.0.5:
1996
1996
-
version "9.0.5"
1997
1997
-
resolved "https://registry.yarnpkg.com/ip-address/-/ip-address-9.0.5.tgz#117a960819b08780c3bd1f14ef3c1cc1d3f3ea5a"
1998
1998
-
integrity sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==
1999
1999
-
dependencies:
2000
2000
-
jsbn "1.1.0"
2001
2001
-
sprintf-js "^1.1.3"
2002
1730
2003
1731
ipaddr.js@1.9.1:
2004
1732
version "1.9.1"
···
2041
1769
dependencies:
2042
1770
is-extglob "^2.1.1"
2043
1771
2044
2044
-
is-lambda@^1.0.1:
2045
2045
-
version "1.0.1"
2046
2046
-
resolved "https://registry.yarnpkg.com/is-lambda/-/is-lambda-1.0.1.tgz#3d9877899e6a53efc0160504cde15f82e6f061d5"
2047
2047
-
integrity sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==
2048
2048
-
2049
1772
is-number@^7.0.0:
2050
1773
version "7.0.0"
2051
1774
resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
···
2084
1807
version "3.1.1"
2085
1808
resolved "https://registry.yarnpkg.com/joycon/-/joycon-3.1.1.tgz#bce8596d6ae808f8b68168f5fc69280996894f03"
2086
1809
integrity sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==
2087
2087
-
2088
2088
-
jsbn@1.1.0:
2089
2089
-
version "1.1.0"
2090
2090
-
resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-1.1.0.tgz#b01307cb29b618a1ed26ec79e911f803c4da0040"
2091
2091
-
integrity sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==
2092
1810
2093
1811
kysely@^0.27.4:
2094
1812
version "0.27.4"
···
2143
1861
resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438"
2144
1862
integrity sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==
2145
1863
2146
2146
-
lodash@^4.17.21:
2147
2147
-
version "4.17.21"
2148
2148
-
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
2149
2149
-
integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
2150
2150
-
2151
1864
log-update@^6.1.0:
2152
1865
version "6.1.0"
2153
1866
resolved "https://registry.yarnpkg.com/log-update/-/log-update-6.1.0.tgz#1a04ff38166f94647ae1af562f4bd6a15b1b7cd4"
···
2170
1883
version "10.4.3"
2171
1884
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.4.3.tgz#410fc8a17b70e598013df257c2446b7f3383f119"
2172
1885
integrity sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==
2173
2173
-
2174
2174
-
lru-cache@^6.0.0:
2175
2175
-
version "6.0.0"
2176
2176
-
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94"
2177
2177
-
integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==
2178
2178
-
dependencies:
2179
2179
-
yallist "^4.0.0"
2180
1886
2181
1887
magic-string@^0.30.10:
2182
1888
version "0.30.11"
···
2185
1891
dependencies:
2186
1892
"@jridgewell/sourcemap-codec" "^1.5.0"
2187
1893
2188
2188
-
make-fetch-happen@^9.1.0:
2189
2189
-
version "9.1.0"
2190
2190
-
resolved "https://registry.yarnpkg.com/make-fetch-happen/-/make-fetch-happen-9.1.0.tgz#53085a09e7971433e6765f7971bf63f4e05cb968"
2191
2191
-
integrity sha512-+zopwDy7DNknmwPQplem5lAZX/eCOzSvSNNcSKm5eVwTkOBzoktEfXsa9L23J/GIRhxRsaxzkPEhrJEpE2F4Gg==
2192
2192
-
dependencies:
2193
2193
-
agentkeepalive "^4.1.3"
2194
2194
-
cacache "^15.2.0"
2195
2195
-
http-cache-semantics "^4.1.0"
2196
2196
-
http-proxy-agent "^4.0.1"
2197
2197
-
https-proxy-agent "^5.0.0"
2198
2198
-
is-lambda "^1.0.1"
2199
2199
-
lru-cache "^6.0.0"
2200
2200
-
minipass "^3.1.3"
2201
2201
-
minipass-collect "^1.0.2"
2202
2202
-
minipass-fetch "^1.3.2"
2203
2203
-
minipass-flush "^1.0.5"
2204
2204
-
minipass-pipeline "^1.2.4"
2205
2205
-
negotiator "^0.6.2"
2206
2206
-
promise-retry "^2.0.1"
2207
2207
-
socks-proxy-agent "^6.0.0"
2208
2208
-
ssri "^8.0.0"
2209
2209
-
2210
1894
media-typer@0.3.0:
2211
1895
version "0.3.0"
2212
1896
resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748"
···
2282
1966
resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz#2d1d59af9c1b129815accc2c46a022a5ce1fa3c9"
2283
1967
integrity sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==
2284
1968
2285
2285
-
minimatch@^3.1.1:
2286
2286
-
version "3.1.2"
2287
2287
-
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b"
2288
2288
-
integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==
2289
2289
-
dependencies:
2290
2290
-
brace-expansion "^1.1.7"
2291
2291
-
2292
1969
minimatch@^9.0.4:
2293
1970
version "9.0.5"
2294
1971
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.5.tgz#d74f9dd6b57d83d8e98cfb82133b03978bc929e5"
···
2301
1978
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c"
2302
1979
integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==
2303
1980
2304
2304
-
minipass-collect@^1.0.2:
2305
2305
-
version "1.0.2"
2306
2306
-
resolved "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-1.0.2.tgz#22b813bf745dc6edba2576b940022ad6edc8c617"
2307
2307
-
integrity sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==
2308
2308
-
dependencies:
2309
2309
-
minipass "^3.0.0"
2310
2310
-
2311
2311
-
minipass-fetch@^1.3.2:
2312
2312
-
version "1.4.1"
2313
2313
-
resolved "https://registry.yarnpkg.com/minipass-fetch/-/minipass-fetch-1.4.1.tgz#d75e0091daac1b0ffd7e9d41629faff7d0c1f1b6"
2314
2314
-
integrity sha512-CGH1eblLq26Y15+Azk7ey4xh0J/XfJfrCox5LDJiKqI2Q2iwOLOKrlmIaODiSQS8d18jalF6y2K2ePUm0CmShw==
2315
2315
-
dependencies:
2316
2316
-
minipass "^3.1.0"
2317
2317
-
minipass-sized "^1.0.3"
2318
2318
-
minizlib "^2.0.0"
2319
2319
-
optionalDependencies:
2320
2320
-
encoding "^0.1.12"
2321
2321
-
2322
2322
-
minipass-flush@^1.0.5:
2323
2323
-
version "1.0.5"
2324
2324
-
resolved "https://registry.yarnpkg.com/minipass-flush/-/minipass-flush-1.0.5.tgz#82e7135d7e89a50ffe64610a787953c4c4cbb373"
2325
2325
-
integrity sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==
2326
2326
-
dependencies:
2327
2327
-
minipass "^3.0.0"
2328
2328
-
2329
2329
-
minipass-pipeline@^1.2.2, minipass-pipeline@^1.2.4:
2330
2330
-
version "1.2.4"
2331
2331
-
resolved "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz#68472f79711c084657c067c5c6ad93cddea8214c"
2332
2332
-
integrity sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==
2333
2333
-
dependencies:
2334
2334
-
minipass "^3.0.0"
2335
2335
-
2336
2336
-
minipass-sized@^1.0.3:
2337
2337
-
version "1.0.3"
2338
2338
-
resolved "https://registry.yarnpkg.com/minipass-sized/-/minipass-sized-1.0.3.tgz#70ee5a7c5052070afacfbc22977ea79def353b70"
2339
2339
-
integrity sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==
2340
2340
-
dependencies:
2341
2341
-
minipass "^3.0.0"
2342
2342
-
2343
2343
-
minipass@^3.0.0, minipass@^3.1.0, minipass@^3.1.1, minipass@^3.1.3:
2344
2344
-
version "3.3.6"
2345
2345
-
resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.3.6.tgz#7bba384db3a1520d18c9c0e5251c3444e95dd94a"
2346
2346
-
integrity sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==
2347
2347
-
dependencies:
2348
2348
-
yallist "^4.0.0"
2349
2349
-
2350
2350
-
minipass@^5.0.0:
2351
2351
-
version "5.0.0"
2352
2352
-
resolved "https://registry.yarnpkg.com/minipass/-/minipass-5.0.0.tgz#3e9788ffb90b694a5d0ec94479a45b5d8738133d"
2353
2353
-
integrity sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==
2354
2354
-
2355
1981
"minipass@^5.0.0 || ^6.0.2 || ^7.0.0", minipass@^7.1.2:
2356
1982
version "7.1.2"
2357
1983
resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.1.2.tgz#93a9626ce5e5e66bd4db86849e7515e92340a707"
2358
1984
integrity sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==
2359
1985
2360
2360
-
minizlib@^2.0.0, minizlib@^2.1.1:
2361
2361
-
version "2.1.2"
2362
2362
-
resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931"
2363
2363
-
integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==
2364
2364
-
dependencies:
2365
2365
-
minipass "^3.0.0"
2366
2366
-
yallist "^4.0.0"
2367
2367
-
2368
1986
mkdirp-classic@^0.5.2, mkdirp-classic@^0.5.3:
2369
1987
version "0.5.3"
2370
1988
resolved "https://registry.yarnpkg.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz#fa10c9115cc6d8865be221ba47ee9bed78601113"
2371
1989
integrity sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==
2372
1990
2373
2373
-
mkdirp@^1.0.3, mkdirp@^1.0.4:
2374
2374
-
version "1.0.4"
2375
2375
-
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e"
2376
2376
-
integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==
2377
2377
-
2378
2378
-
moment-timezone@^0.5.43:
2379
2379
-
version "0.5.45"
2380
2380
-
resolved "https://registry.yarnpkg.com/moment-timezone/-/moment-timezone-0.5.45.tgz#cb685acd56bac10e69d93c536366eb65aa6bcf5c"
2381
2381
-
integrity sha512-HIWmqA86KcmCAhnMAN0wuDOARV/525R2+lOLotuGFzn4HO+FH+/645z2wx0Dt3iDv6/p61SIvKnDstISainhLQ==
2382
2382
-
dependencies:
2383
2383
-
moment "^2.29.4"
2384
2384
-
2385
2385
-
moment@^2.29.4:
2386
2386
-
version "2.30.1"
2387
2387
-
resolved "https://registry.yarnpkg.com/moment/-/moment-2.30.1.tgz#f8c91c07b7a786e30c59926df530b4eac96974ae"
2388
2388
-
integrity sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==
2389
2389
-
2390
1991
ms@2.0.0:
2391
1992
version "2.0.0"
2392
1993
resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
···
2397
1998
resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
2398
1999
integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
2399
2000
2400
2400
-
ms@2.1.3, ms@^2.0.0:
2001
2001
+
ms@2.1.3:
2401
2002
version "2.1.3"
2402
2003
resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2"
2403
2004
integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
···
2426
2027
resolved "https://registry.yarnpkg.com/napi-build-utils/-/napi-build-utils-1.0.2.tgz#b1fddc0b2c46e380a0b7a76f984dd47c41a13806"
2427
2028
integrity sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==
2428
2029
2429
2429
-
negotiator@0.6.3, negotiator@^0.6.2:
2030
2030
+
negotiator@0.6.3:
2430
2031
version "0.6.3"
2431
2032
resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd"
2432
2033
integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==
···
2438
2039
dependencies:
2439
2040
semver "^7.3.5"
2440
2041
2441
2441
-
node-addon-api@^7.0.0:
2442
2442
-
version "7.1.1"
2443
2443
-
resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-7.1.1.tgz#1aba6693b0f255258a049d621329329322aad558"
2444
2444
-
integrity sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==
2445
2445
-
2446
2042
node-gyp-build-optional-packages@5.1.1:
2447
2043
version "5.1.1"
2448
2044
resolved "https://registry.yarnpkg.com/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.1.1.tgz#52b143b9dd77b7669073cbfe39e3f4118bfc603c"
···
2450
2046
dependencies:
2451
2047
detect-libc "^2.0.1"
2452
2048
2453
2453
-
node-gyp@8.x:
2454
2454
-
version "8.4.1"
2455
2455
-
resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-8.4.1.tgz#3d49308fc31f768180957d6b5746845fbd429937"
2456
2456
-
integrity sha512-olTJRgUtAb/hOXG0E93wZDs5YiJlgbXxTwQAFHyNlRsXQnYzUaF2aGgujZbw+hR8aF4ZG/rST57bWMWD16jr9w==
2457
2457
-
dependencies:
2458
2458
-
env-paths "^2.2.0"
2459
2459
-
glob "^7.1.4"
2460
2460
-
graceful-fs "^4.2.6"
2461
2461
-
make-fetch-happen "^9.1.0"
2462
2462
-
nopt "^5.0.0"
2463
2463
-
npmlog "^6.0.0"
2464
2464
-
rimraf "^3.0.2"
2465
2465
-
semver "^7.3.5"
2466
2466
-
tar "^6.1.2"
2467
2467
-
which "^2.0.2"
2468
2468
-
2469
2469
-
nopt@^5.0.0:
2470
2470
-
version "5.0.0"
2471
2471
-
resolved "https://registry.yarnpkg.com/nopt/-/nopt-5.0.0.tgz#530942bb58a512fccafe53fe210f13a25355dc88"
2472
2472
-
integrity sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==
2473
2473
-
dependencies:
2474
2474
-
abbrev "1"
2475
2475
-
2476
2049
normalize-path@^3.0.0, normalize-path@~3.0.0:
2477
2050
version "3.0.0"
2478
2051
resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
···
2491
2064
integrity sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==
2492
2065
dependencies:
2493
2066
path-key "^4.0.0"
2494
2494
-
2495
2495
-
npmlog@^6.0.0:
2496
2496
-
version "6.0.2"
2497
2497
-
resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-6.0.2.tgz#c8166017a42f2dea92d6453168dd865186a70830"
2498
2498
-
integrity sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==
2499
2499
-
dependencies:
2500
2500
-
are-we-there-yet "^3.0.0"
2501
2501
-
console-control-strings "^1.1.0"
2502
2502
-
gauge "^4.0.3"
2503
2503
-
set-blocking "^2.0.0"
2504
2067
2505
2068
object-assign@^4, object-assign@^4.0.1:
2506
2069
version "4.1.1"
···
2524
2087
dependencies:
2525
2088
ee-first "1.1.1"
2526
2089
2527
2527
-
once@^1.3.0, once@^1.3.1, once@^1.4.0:
2090
2090
+
once@^1.3.1, once@^1.4.0:
2528
2091
version "1.4.0"
2529
2092
resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
2530
2093
integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==
···
2552
2115
dependencies:
2553
2116
mimic-function "^5.0.0"
2554
2117
2555
2555
-
p-map@^4.0.0:
2556
2556
-
version "4.0.0"
2557
2557
-
resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b"
2558
2558
-
integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==
2559
2559
-
dependencies:
2560
2560
-
aggregate-error "^3.0.0"
2561
2561
-
2562
2118
package-json-from-dist@^1.0.0:
2563
2119
version "1.0.0"
2564
2120
resolved "https://registry.yarnpkg.com/package-json-from-dist/-/package-json-from-dist-1.0.0.tgz#e501cd3094b278495eb4258d4c9f6d5ac3019f00"
···
2569
2125
resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4"
2570
2126
integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==
2571
2127
2572
2572
-
path-is-absolute@^1.0.0:
2573
2573
-
version "1.0.1"
2574
2574
-
resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
2575
2575
-
integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==
2576
2576
-
2577
2128
path-key@^3.0.0, path-key@^3.1.0:
2578
2129
version "3.1.1"
2579
2130
resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375"
···
2611
2162
version "2.0.0"
2612
2163
resolved "https://registry.yarnpkg.com/pathval/-/pathval-2.0.0.tgz#7e2550b422601d4f6b8e26f1301bc8f15a741a25"
2613
2164
integrity sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA==
2614
2614
-
2615
2615
-
pg-connection-string@^2.6.1:
2616
2616
-
version "2.6.4"
2617
2617
-
resolved "https://registry.yarnpkg.com/pg-connection-string/-/pg-connection-string-2.6.4.tgz#f543862adfa49fa4e14bc8a8892d2a84d754246d"
2618
2618
-
integrity sha512-v+Z7W/0EO707aNMaAEfiGnGL9sxxumwLl2fJvCQtMn9Fxsg+lPpPkdcyBSv/KFgpGdYkMfn+EI1Or2EHjpgLCA==
2619
2165
2620
2166
picocolors@^1.0.1:
2621
2167
version "1.0.1"
···
2768
2314
resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182"
2769
2315
integrity sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==
2770
2316
2771
2771
-
promise-inflight@^1.0.1:
2772
2772
-
version "1.0.1"
2773
2773
-
resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3"
2774
2774
-
integrity sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==
2775
2775
-
2776
2776
-
promise-retry@^2.0.1:
2777
2777
-
version "2.0.1"
2778
2778
-
resolved "https://registry.yarnpkg.com/promise-retry/-/promise-retry-2.0.1.tgz#ff747a13620ab57ba688f5fc67855410c370da22"
2779
2779
-
integrity sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==
2780
2780
-
dependencies:
2781
2781
-
err-code "^2.0.2"
2782
2782
-
retry "^0.12.0"
2783
2783
-
2784
2317
proxy-addr@~2.0.7:
2785
2318
version "2.0.7"
2786
2319
resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.7.tgz#f19fe69ceab311eeb94b42e70e8c2070f9ba1025"
···
2856
2389
minimist "^1.2.0"
2857
2390
strip-json-comments "~2.0.1"
2858
2391
2859
2859
-
readable-stream@^3.1.1, readable-stream@^3.4.0, readable-stream@^3.6.0:
2392
2392
+
readable-stream@^3.1.1, readable-stream@^3.4.0:
2860
2393
version "3.6.2"
2861
2394
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967"
2862
2395
integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==
···
2906
2439
onetime "^7.0.0"
2907
2440
signal-exit "^4.1.0"
2908
2441
2909
2909
-
retry-as-promised@^7.0.4:
2910
2910
-
version "7.0.4"
2911
2911
-
resolved "https://registry.yarnpkg.com/retry-as-promised/-/retry-as-promised-7.0.4.tgz#9df73adaeea08cb2948b9d34990549dc13d800a2"
2912
2912
-
integrity sha512-XgmCoxKWkDofwH8WddD0w85ZfqYz+ZHlr5yo+3YUCfycWawU56T5ckWXsScsj5B8tqUcIG67DxXByo3VUgiAdA==
2913
2913
-
2914
2914
-
retry@^0.12.0:
2915
2915
-
version "0.12.0"
2916
2916
-
resolved "https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b"
2917
2917
-
integrity sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==
2918
2918
-
2919
2442
reusify@^1.0.4:
2920
2443
version "1.0.4"
2921
2444
resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76"
···
2925
2448
version "1.4.1"
2926
2449
resolved "https://registry.yarnpkg.com/rfdc/-/rfdc-1.4.1.tgz#778f76c4fb731d93414e8f925fbecf64cce7f6ca"
2927
2450
integrity sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==
2928
2928
-
2929
2929
-
rimraf@^3.0.2:
2930
2930
-
version "3.0.2"
2931
2931
-
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a"
2932
2932
-
integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==
2933
2933
-
dependencies:
2934
2934
-
glob "^7.1.3"
2935
2451
2936
2452
rimraf@^5.0.0:
2937
2453
version "5.0.10"
···
2982
2498
resolved "https://registry.yarnpkg.com/safe-stable-stringify/-/safe-stable-stringify-2.4.3.tgz#138c84b6f6edb3db5f8ef3ef7115b8f55ccbf886"
2983
2499
integrity sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==
2984
2500
2985
2985
-
"safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0":
2501
2501
+
"safer-buffer@>= 2.1.2 < 3":
2986
2502
version "2.1.2"
2987
2503
resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
2988
2504
integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
···
2992
2508
resolved "https://registry.yarnpkg.com/secure-json-parse/-/secure-json-parse-2.7.0.tgz#5a5f9cd6ae47df23dba3151edd06855d47e09862"
2993
2509
integrity sha512-6aU+Rwsezw7VR8/nyvKTx8QpWH9FrcYiXXlqC4z5d5XQBDRqtbfsRjnwGyqbi3gddNtWHuEk9OANUotL26qKUw==
2994
2510
2995
2995
-
semver@^7.3.5, semver@^7.5.4:
2511
2511
+
semver@^7.3.5:
2996
2512
version "7.6.3"
2997
2513
resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.3.tgz#980f7b5550bc175fb4dc09403085627f9eb33143"
2998
2514
integrity sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==
···
3016
2532
range-parser "~1.2.1"
3017
2533
statuses "2.0.1"
3018
2534
3019
3019
-
sequelize-pool@^7.1.0:
3020
3020
-
version "7.1.0"
3021
3021
-
resolved "https://registry.yarnpkg.com/sequelize-pool/-/sequelize-pool-7.1.0.tgz#210b391af4002762f823188fd6ecfc7413020768"
3022
3022
-
integrity sha512-G9c0qlIWQSK29pR/5U2JF5dDQeqqHRragoyahj/Nx4KOOQ3CPPfzxnfqFPCSB7x5UgjOgnZ61nSxz+fjDpRlJg==
3023
3023
-
3024
3024
-
sequelize@^6.37.3:
3025
3025
-
version "6.37.3"
3026
3026
-
resolved "https://registry.yarnpkg.com/sequelize/-/sequelize-6.37.3.tgz#ed6212029a52c59a18638d2a703da84bc2f81311"
3027
3027
-
integrity sha512-V2FTqYpdZjPy3VQrZvjTPnOoLm0KudCRXfGWp48QwhyPPp2yW8z0p0sCYZd/em847Tl2dVxJJ1DR+hF+O77T7A==
3028
3028
-
dependencies:
3029
3029
-
"@types/debug" "^4.1.8"
3030
3030
-
"@types/validator" "^13.7.17"
3031
3031
-
debug "^4.3.4"
3032
3032
-
dottie "^2.0.6"
3033
3033
-
inflection "^1.13.4"
3034
3034
-
lodash "^4.17.21"
3035
3035
-
moment "^2.29.4"
3036
3036
-
moment-timezone "^0.5.43"
3037
3037
-
pg-connection-string "^2.6.1"
3038
3038
-
retry-as-promised "^7.0.4"
3039
3039
-
semver "^7.5.4"
3040
3040
-
sequelize-pool "^7.1.0"
3041
3041
-
toposort-class "^1.0.1"
3042
3042
-
uuid "^8.3.2"
3043
3043
-
validator "^13.9.0"
3044
3044
-
wkx "^0.5.0"
3045
3045
-
3046
2535
serve-static@1.15.0:
3047
2536
version "1.15.0"
3048
2537
resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.15.0.tgz#faaef08cffe0a1a62f60cad0c4e513cff0ac9540"
···
3053
2542
parseurl "~1.3.3"
3054
2543
send "0.18.0"
3055
2544
3056
3056
-
set-blocking@^2.0.0:
3057
3057
-
version "2.0.0"
3058
3058
-
resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
3059
3059
-
integrity sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==
3060
3060
-
3061
2545
set-function-length@^1.2.1:
3062
2546
version "1.2.2"
3063
2547
resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.2.tgz#aac72314198eaed975cf77b2c3b6b880695e5449"
···
3102
2586
resolved "https://registry.yarnpkg.com/siginfo/-/siginfo-2.0.0.tgz#32e76c70b79724e3bb567cb9d543eb858ccfaf30"
3103
2587
integrity sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==
3104
2588
3105
3105
-
signal-exit@^3.0.3, signal-exit@^3.0.7:
2589
2589
+
signal-exit@^3.0.3:
3106
2590
version "3.0.7"
3107
2591
resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9"
3108
2592
integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==
···
3147
2631
ansi-styles "^6.2.1"
3148
2632
is-fullwidth-code-point "^5.0.0"
3149
2633
3150
3150
-
smart-buffer@^4.2.0:
3151
3151
-
version "4.2.0"
3152
3152
-
resolved "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.2.0.tgz#6e1d71fa4f18c05f7d0ff216dd16a481d0e8d9ae"
3153
3153
-
integrity sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==
3154
3154
-
3155
3155
-
socks-proxy-agent@^6.0.0:
3156
3156
-
version "6.2.1"
3157
3157
-
resolved "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-6.2.1.tgz#2687a31f9d7185e38d530bef1944fe1f1496d6ce"
3158
3158
-
integrity sha512-a6KW9G+6B3nWZ1yB8G7pJwL3ggLy1uTzKAgCb7ttblwqdz9fMGJUuTy3uFzEP48FAs9FLILlmzDlE2JJhVQaXQ==
3159
3159
-
dependencies:
3160
3160
-
agent-base "^6.0.2"
3161
3161
-
debug "^4.3.3"
3162
3162
-
socks "^2.6.2"
3163
3163
-
3164
3164
-
socks@^2.6.2:
3165
3165
-
version "2.8.3"
3166
3166
-
resolved "https://registry.yarnpkg.com/socks/-/socks-2.8.3.tgz#1ebd0f09c52ba95a09750afe3f3f9f724a800cb5"
3167
3167
-
integrity sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==
3168
3168
-
dependencies:
3169
3169
-
ip-address "^9.0.5"
3170
3170
-
smart-buffer "^4.2.0"
3171
3171
-
3172
2634
sonic-boom@^3.7.0:
3173
2635
version "3.8.1"
3174
2636
resolved "https://registry.yarnpkg.com/sonic-boom/-/sonic-boom-3.8.1.tgz#d5ba8c4e26d6176c9a1d14d549d9ff579a163422"
···
3200
2662
resolved "https://registry.yarnpkg.com/split2/-/split2-4.2.0.tgz#c9c5920904d148bab0b9f67145f245a86aadbfa4"
3201
2663
integrity sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==
3202
2664
3203
3203
-
sprintf-js@^1.1.3:
3204
3204
-
version "1.1.3"
3205
3205
-
resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.3.tgz#4914b903a2f8b685d17fdf78a70e917e872e444a"
3206
3206
-
integrity sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==
3207
3207
-
3208
3208
-
sqlite3@^5.1.7:
3209
3209
-
version "5.1.7"
3210
3210
-
resolved "https://registry.yarnpkg.com/sqlite3/-/sqlite3-5.1.7.tgz#59ca1053c1ab38647396586edad019b1551041b7"
3211
3211
-
integrity sha512-GGIyOiFaG+TUra3JIfkI/zGP8yZYLPQ0pl1bH+ODjiX57sPhrLU5sQJn1y9bDKZUFYkX1crlrPfSYt0BKKdkog==
3212
3212
-
dependencies:
3213
3213
-
bindings "^1.5.0"
3214
3214
-
node-addon-api "^7.0.0"
3215
3215
-
prebuild-install "^7.1.1"
3216
3216
-
tar "^6.1.11"
3217
3217
-
optionalDependencies:
3218
3218
-
node-gyp "8.x"
3219
3219
-
3220
3220
-
ssri@^8.0.0, ssri@^8.0.1:
3221
3221
-
version "8.0.1"
3222
3222
-
resolved "https://registry.yarnpkg.com/ssri/-/ssri-8.0.1.tgz#638e4e439e2ffbd2cd289776d5ca457c4f51a2af"
3223
3223
-
integrity sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==
3224
3224
-
dependencies:
3225
3225
-
minipass "^3.1.1"
3226
3226
-
3227
2665
stackback@0.0.2:
3228
2666
version "0.0.2"
3229
2667
resolved "https://registry.yarnpkg.com/stackback/-/stackback-0.0.2.tgz#1ac8a0d9483848d1695e418b6d031a3c3ce68e3b"
···
3244
2682
resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.2.tgz#2b6d0ef24b656274d957d54e0a4bbf6153dc02b6"
3245
2683
integrity sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==
3246
2684
3247
3247
-
"string-width-cjs@npm:string-width@^4.2.0", "string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.1.0, string-width@^4.2.3:
2685
2685
+
"string-width-cjs@npm:string-width@^4.2.0", string-width@^4.1.0:
3248
2686
name string-width-cjs
3249
2687
version "4.2.3"
3250
2688
resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
···
3371
2809
inherits "^2.0.3"
3372
2810
readable-stream "^3.1.1"
3373
2811
3374
3374
-
tar@^6.0.2, tar@^6.1.11, tar@^6.1.2:
3375
3375
-
version "6.2.1"
3376
3376
-
resolved "https://registry.yarnpkg.com/tar/-/tar-6.2.1.tgz#717549c541bc3c2af15751bea94b1dd068d4b03a"
3377
3377
-
integrity sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==
3378
3378
-
dependencies:
3379
3379
-
chownr "^2.0.0"
3380
3380
-
fs-minipass "^2.0.0"
3381
3381
-
minipass "^5.0.0"
3382
3382
-
minizlib "^2.1.1"
3383
3383
-
mkdirp "^1.0.3"
3384
3384
-
yallist "^4.0.0"
3385
3385
-
3386
2812
thenify-all@^1.0.0:
3387
2813
version "1.6.0"
3388
2814
resolved "https://registry.yarnpkg.com/thenify-all/-/thenify-all-1.6.0.tgz#1a1918d402d8fc3f98fbf234db0bcc8cc10e9726"
···
3442
2868
version "1.0.1"
3443
2869
resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.1.tgz#3be34321a88a820ed1bd80dfaa33e479fbb8dd35"
3444
2870
integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==
3445
3445
-
3446
3446
-
toposort-class@^1.0.1:
3447
3447
-
version "1.0.1"
3448
3448
-
resolved "https://registry.yarnpkg.com/toposort-class/-/toposort-class-1.0.1.tgz#7ffd1f78c8be28c3ba45cd4e1a3f5ee193bd9988"
3449
3449
-
integrity sha512-OsLcGGbYF3rMjPUf8oKktyvCiUxSbqMMS39m33MAjLTC1DVIH6x3WSt63/M77ihI09+Sdfk1AXvfhCEeUmC7mg==
3450
2871
3451
2872
tr46@^1.0.1:
3452
2873
version "1.0.1"
···
3539
2960
resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-6.11.1.tgz#432ea6e8efd54a48569705a699e62d8f4981b197"
3540
2961
integrity sha512-mIDEX2ek50x0OlRgxryxsenE5XaQD4on5U2inY7RApK3SOJpofyw7uW2AyfMKkhAxXIceo2DeWGVGwyvng1GNQ==
3541
2962
3542
3542
-
unique-filename@^1.1.1:
3543
3543
-
version "1.1.1"
3544
3544
-
resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-1.1.1.tgz#1d69769369ada0583103a1e6ae87681b56573230"
3545
3545
-
integrity sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==
3546
3546
-
dependencies:
3547
3547
-
unique-slug "^2.0.0"
3548
3548
-
3549
3549
-
unique-slug@^2.0.0:
3550
3550
-
version "2.0.2"
3551
3551
-
resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-2.0.2.tgz#baabce91083fc64e945b0f3ad613e264f7cd4e6c"
3552
3552
-
integrity sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==
3553
3553
-
dependencies:
3554
3554
-
imurmurhash "^0.1.4"
3555
3555
-
3556
2963
unpipe@1.0.0, unpipe@~1.0.0:
3557
2964
version "1.0.0"
3558
2965
resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec"
···
3567
2974
version "1.0.1"
3568
2975
resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713"
3569
2976
integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==
3570
3570
-
3571
3571
-
uuid@^8.3.2:
3572
3572
-
version "8.3.2"
3573
3573
-
resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2"
3574
3574
-
integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==
3575
3575
-
3576
3576
-
validator@^13.9.0:
3577
3577
-
version "13.12.0"
3578
3578
-
resolved "https://registry.yarnpkg.com/validator/-/validator-13.12.0.tgz#7d78e76ba85504da3fee4fd1922b385914d4b35f"
3579
3579
-
integrity sha512-c1Q0mCiPlgdTVVVIJIrBuxNicYE+t/7oKeI9MWLj3fh/uq2Pxh/3eeWbVZ4OcGW1TUf53At0njHw5SMdA3tmMg==
3580
2977
3581
2978
varint@^6.0.0:
3582
2979
version "6.0.0"
···
3658
3055
tr46 "^1.0.1"
3659
3056
webidl-conversions "^4.0.2"
3660
3057
3661
3661
-
which@^2.0.1, which@^2.0.2:
3058
3058
+
which@^2.0.1:
3662
3059
version "2.0.2"
3663
3060
resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1"
3664
3061
integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==
···
3672
3069
dependencies:
3673
3070
siginfo "^2.0.0"
3674
3071
stackback "0.0.2"
3675
3675
-
3676
3676
-
wide-align@^1.1.5:
3677
3677
-
version "1.1.5"
3678
3678
-
resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.5.tgz#df1d4c206854369ecf3c9a4898f1b23fbd9d15d3"
3679
3679
-
integrity sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==
3680
3680
-
dependencies:
3681
3681
-
string-width "^1.0.2 || 2 || 3 || 4"
3682
3682
-
3683
3683
-
wkx@^0.5.0:
3684
3684
-
version "0.5.0"
3685
3685
-
resolved "https://registry.yarnpkg.com/wkx/-/wkx-0.5.0.tgz#c6c37019acf40e517cc6b94657a25a3d4aa33e8c"
3686
3686
-
integrity sha512-Xng/d4Ichh8uN4l0FToV/258EjMGU9MGcA0HV2d9B/ZpZB3lqQm7nkOdZdm5GhKtLLhAE7PiVQwN4eN+2YJJUg==
3687
3687
-
dependencies:
3688
3688
-
"@types/node" "*"
3689
3072
3690
3073
"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0":
3691
3074
version "7.0.0"
···
3723
3106
version "8.18.0"
3724
3107
resolved "https://registry.yarnpkg.com/ws/-/ws-8.18.0.tgz#0d7505a6eafe2b0e712d232b42279f53bc289bbc"
3725
3108
integrity sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==
3726
3726
-
3727
3727
-
yallist@^4.0.0:
3728
3728
-
version "4.0.0"
3729
3729
-
resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72"
3730
3730
-
integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==
3731
3109
3732
3110
yaml@~2.4.2:
3733
3111
version "2.4.5"