@indexeddb-orm/idb-orm 0.0.1
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/.vscode/extensions.json +5 -0
- package/README.md +1280 -0
- package/angular-demo-app/README.md +84 -0
- package/angular-demo-app/angular.json +109 -0
- package/angular-demo-app/package-lock.json +14215 -0
- package/angular-demo-app/package.json +41 -0
- package/angular-demo-app/src/app/app.component.ts +481 -0
- package/angular-demo-app/src/app/app.routes.ts +8 -0
- package/angular-demo-app/src/app/components/actions.component.ts +202 -0
- package/angular-demo-app/src/app/components/cloud-sync-demo.component.ts +296 -0
- package/angular-demo-app/src/app/components/live-query-demo.component.ts +307 -0
- package/angular-demo-app/src/app/components/main-info.component.ts +148 -0
- package/angular-demo-app/src/app/components/posts-live-query-demo.component.ts +336 -0
- package/angular-demo-app/src/app/components/typescript-demo.component.ts +268 -0
- package/angular-demo-app/src/entities/post-tag.entity.ts +25 -0
- package/angular-demo-app/src/entities/post.entity.ts +49 -0
- package/angular-demo-app/src/entities/profile.entity.ts +42 -0
- package/angular-demo-app/src/entities/tag.entity.ts +36 -0
- package/angular-demo-app/src/entities/user.entity.ts +59 -0
- package/angular-demo-app/src/favicon.ico +1 -0
- package/angular-demo-app/src/index.html +16 -0
- package/angular-demo-app/src/main.ts +13 -0
- package/angular-demo-app/src/services/app-logic.service.ts +449 -0
- package/angular-demo-app/src/services/cloud-sync.service.ts +95 -0
- package/angular-demo-app/src/services/database.service.ts +26 -0
- package/angular-demo-app/src/services/live-query.service.ts +63 -0
- package/angular-demo-app/src/services/posts-live-query.service.ts +86 -0
- package/angular-demo-app/src/services/typescript-demo.service.ts +59 -0
- package/angular-demo-app/src/styles.scss +50 -0
- package/angular-demo-app/tsconfig.app.json +13 -0
- package/angular-demo-app/tsconfig.json +34 -0
- package/angular-demo-app/tsconfig.spec.json +13 -0
- package/dist/Database.d.ts +206 -0
- package/dist/Database.js +288 -0
- package/dist/decorators/Column.d.ts +79 -0
- package/dist/decorators/Column.js +236 -0
- package/dist/decorators/Entity.d.ts +32 -0
- package/dist/decorators/Entity.js +44 -0
- package/dist/decorators/Relation.d.ts +70 -0
- package/dist/decorators/Relation.js +120 -0
- package/dist/decorators/index.d.ts +3 -0
- package/dist/decorators/index.js +3 -0
- package/dist/errors/ValidationError.d.ts +4 -0
- package/dist/errors/ValidationError.js +8 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.js +7 -0
- package/dist/metadata/Column.d.ts +8 -0
- package/dist/metadata/Column.js +44 -0
- package/dist/metadata/Entity.d.ts +11 -0
- package/dist/metadata/Entity.js +21 -0
- package/dist/metadata/Relation.d.ts +20 -0
- package/dist/metadata/Relation.js +74 -0
- package/dist/metadata/index.d.ts +3 -0
- package/dist/metadata/index.js +3 -0
- package/dist/services/AggregationService.d.ts +38 -0
- package/dist/services/AggregationService.js +229 -0
- package/dist/services/BaseEntity.d.ts +32 -0
- package/dist/services/BaseEntity.js +62 -0
- package/dist/services/CloudSyncService.d.ts +100 -0
- package/dist/services/CloudSyncService.js +196 -0
- package/dist/services/DecoratorUtils.d.ts +12 -0
- package/dist/services/DecoratorUtils.js +10 -0
- package/dist/services/EntityFactory.d.ts +25 -0
- package/dist/services/EntityFactory.js +27 -0
- package/dist/services/EntityRegistry.d.ts +61 -0
- package/dist/services/EntityRegistry.js +56 -0
- package/dist/services/EntitySchema.d.ts +56 -0
- package/dist/services/EntitySchema.js +125 -0
- package/dist/services/MigrationManager.d.ts +70 -0
- package/dist/services/MigrationManager.js +181 -0
- package/dist/services/RelationLoader.d.ts +66 -0
- package/dist/services/RelationLoader.js +310 -0
- package/dist/services/SchemaBuilder.d.ts +68 -0
- package/dist/services/SchemaBuilder.js +191 -0
- package/dist/services/index.d.ts +7 -0
- package/dist/services/index.js +7 -0
- package/dist/types.d.ts +152 -0
- package/dist/types.js +1 -0
- package/dist/utils/logger.d.ts +12 -0
- package/dist/utils/logger.js +16 -0
- package/eslint.config.js +49 -0
- package/homepage/favicon.svg +36 -0
- package/homepage/index.html +1725 -0
- package/package.json +78 -0
- package/react-demo-app/README.md +61 -0
- package/react-demo-app/eslint.config.js +60 -0
- package/react-demo-app/index.html +13 -0
- package/react-demo-app/package-lock.json +4955 -0
- package/react-demo-app/package.json +39 -0
- package/react-demo-app/src/App.tsx +172 -0
- package/react-demo-app/src/assets/react.svg +1 -0
- package/react-demo-app/src/components/Actions.tsx +171 -0
- package/react-demo-app/src/components/CloudSyncDemo.tsx +191 -0
- package/react-demo-app/src/components/LiveQueryDemo.tsx +122 -0
- package/react-demo-app/src/components/MainInfo.tsx +75 -0
- package/react-demo-app/src/components/PostsLiveQueryDemo.tsx +185 -0
- package/react-demo-app/src/components/TypeScriptDemo.tsx +190 -0
- package/react-demo-app/src/database/Database.ts +30 -0
- package/react-demo-app/src/entities/Post.ts +48 -0
- package/react-demo-app/src/entities/PostTag.ts +26 -0
- package/react-demo-app/src/entities/Profile.ts +41 -0
- package/react-demo-app/src/entities/Tag.ts +35 -0
- package/react-demo-app/src/entities/User.ts +61 -0
- package/react-demo-app/src/hooks/useAppLogic.ts +565 -0
- package/react-demo-app/src/hooks/useCloudSyncDemo.ts +84 -0
- package/react-demo-app/src/hooks/useLiveQueryDemo.ts +68 -0
- package/react-demo-app/src/hooks/usePostsLiveQueryDemo.ts +64 -0
- package/react-demo-app/src/hooks/useTypeScriptDemo.ts +43 -0
- package/react-demo-app/src/index.css +26 -0
- package/react-demo-app/src/main.tsx +18 -0
- package/react-demo-app/src/migrations/001-add-user-email-index.ts +17 -0
- package/react-demo-app/src/migrations/002-add-post-category.ts +37 -0
- package/react-demo-app/src/migrations/index.ts +8 -0
- package/react-demo-app/src/vite-env.d.ts +1 -0
- package/react-demo-app/tsconfig.app.json +22 -0
- package/react-demo-app/tsconfig.json +6 -0
- package/react-demo-app/vite.config.ts +10 -0
- package/src/Database.ts +405 -0
- package/src/errors/ValidationError.ts +9 -0
- package/src/index.ts +13 -0
- package/src/metadata/Column.ts +74 -0
- package/src/metadata/Entity.ts +42 -0
- package/src/metadata/Relation.ts +121 -0
- package/src/metadata/index.ts +5 -0
- package/src/services/AggregationService.ts +348 -0
- package/src/services/BaseEntity.ts +77 -0
- package/src/services/CloudSyncService.ts +248 -0
- package/src/services/EntityFactory.ts +35 -0
- package/src/services/EntityRegistry.ts +109 -0
- package/src/services/EntitySchema.ts +154 -0
- package/src/services/MigrationManager.ts +276 -0
- package/src/services/RelationLoader.ts +532 -0
- package/src/services/SchemaBuilder.ts +237 -0
- package/src/services/index.ts +7 -0
- package/src/types.d.ts +1 -0
- package/src/types.ts +169 -0
- package/src/utils/logger.ts +40 -0
- package/svelte-demo-app/README.md +61 -0
- package/svelte-demo-app/package-lock.json +3000 -0
- package/svelte-demo-app/package.json +30 -0
- package/svelte-demo-app/src/app.d.ts +12 -0
- package/svelte-demo-app/src/app.html +13 -0
- package/svelte-demo-app/src/components/Actions.svelte +121 -0
- package/svelte-demo-app/src/components/CloudSyncDemo.svelte +333 -0
- package/svelte-demo-app/src/components/LiveQueryDemo.svelte +191 -0
- package/svelte-demo-app/src/components/MainInfo.svelte +133 -0
- package/svelte-demo-app/src/components/PostsLiveQueryDemo.svelte +330 -0
- package/svelte-demo-app/src/components/TypeScriptDemo.svelte +251 -0
- package/svelte-demo-app/src/database/Database.ts +29 -0
- package/svelte-demo-app/src/entities/Post.ts +46 -0
- package/svelte-demo-app/src/entities/PostTag.ts +22 -0
- package/svelte-demo-app/src/entities/Profile.ts +39 -0
- package/svelte-demo-app/src/entities/Tag.ts +33 -0
- package/svelte-demo-app/src/entities/User.ts +62 -0
- package/svelte-demo-app/src/lib/database/Database.ts +30 -0
- package/svelte-demo-app/src/lib/entities/Post.ts +47 -0
- package/svelte-demo-app/src/lib/entities/PostTag.ts +23 -0
- package/svelte-demo-app/src/lib/entities/Profile.ts +40 -0
- package/svelte-demo-app/src/lib/entities/Tag.ts +34 -0
- package/svelte-demo-app/src/lib/entities/User.ts +59 -0
- package/svelte-demo-app/src/lib/index.ts +7 -0
- package/svelte-demo-app/src/lib/migrations/001-add-user-email-index.ts +17 -0
- package/svelte-demo-app/src/lib/migrations/002-add-post-category.ts +37 -0
- package/svelte-demo-app/src/lib/migrations/index.ts +8 -0
- package/svelte-demo-app/src/migrations/001-add-user-email-index.ts +17 -0
- package/svelte-demo-app/src/migrations/002-add-post-category.ts +37 -0
- package/svelte-demo-app/src/migrations/index.ts +8 -0
- package/svelte-demo-app/src/routes/+layout.js +3 -0
- package/svelte-demo-app/src/routes/+layout.svelte +228 -0
- package/svelte-demo-app/src/routes/+page.js +3 -0
- package/svelte-demo-app/src/routes/+page.svelte +1305 -0
- package/svelte-demo-app/src/stores/appStore.js +603 -0
- package/svelte-demo-app/svelte.config.js +18 -0
- package/svelte-demo-app/tsconfig.json +14 -0
- package/svelte-demo-app/vite.config.ts +6 -0
- package/tests/aggregation.e2e.test.ts +87 -0
- package/tests/base-entity.e2e.test.ts +47 -0
- package/tests/database-api.e2e.test.ts +177 -0
- package/tests/decorators.e2e.test.ts +40 -0
- package/tests/entity-schema.e2e.test.ts +58 -0
- package/tests/relation-loader-table-names.test.ts +192 -0
- package/tests/relations.e2e.test.ts +178 -0
- package/tests/zod-runtime.e2e.test.ts +69 -0
- package/tsconfig.json +21 -0
- package/vitest.config.ts +21 -0
- package/vitest.setup.ts +27 -0
- package/vue-demo-app/README.md +61 -0
- package/vue-demo-app/index.html +13 -0
- package/vue-demo-app/package-lock.json +1537 -0
- package/vue-demo-app/package.json +27 -0
- package/vue-demo-app/src/App.vue +100 -0
- package/vue-demo-app/src/components/Actions.vue +135 -0
- package/vue-demo-app/src/components/CloudSyncDemo.vue +139 -0
- package/vue-demo-app/src/components/LiveQueryDemo.vue +122 -0
- package/vue-demo-app/src/components/MainInfo.vue +80 -0
- package/vue-demo-app/src/components/PostsLiveQueryDemo.vue +136 -0
- package/vue-demo-app/src/components/TypeScriptDemo.vue +133 -0
- package/vue-demo-app/src/database/Database.ts +29 -0
- package/vue-demo-app/src/entities/Post.ts +48 -0
- package/vue-demo-app/src/entities/PostTag.ts +24 -0
- package/vue-demo-app/src/entities/Profile.ts +41 -0
- package/vue-demo-app/src/entities/Tag.ts +35 -0
- package/vue-demo-app/src/entities/User.ts +61 -0
- package/vue-demo-app/src/main.ts +29 -0
- package/vue-demo-app/src/migrations/001-add-user-email-index.ts +23 -0
- package/vue-demo-app/src/migrations/002-add-post-category.ts +46 -0
- package/vue-demo-app/src/migrations/index.ts +14 -0
- package/vue-demo-app/src/services/useAppLogic.ts +565 -0
- package/vue-demo-app/src/services/useCloudSyncDemo.ts +84 -0
- package/vue-demo-app/src/services/useLiveQueryDemo.ts +82 -0
- package/vue-demo-app/src/services/usePostsLiveQueryDemo.ts +77 -0
- package/vue-demo-app/src/services/useTypeScriptDemo.ts +56 -0
- package/vue-demo-app/src/vite-env.d.ts +1 -0
- package/vue-demo-app/tsconfig.json +25 -0
- package/vue-demo-app/tsconfig.node.json +10 -0
- package/vue-demo-app/vite.config.ts +16 -0
|
@@ -0,0 +1,3000 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "svelte-demo-app",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"lockfileVersion": 3,
|
|
5
|
+
"requires": true,
|
|
6
|
+
"packages": {
|
|
7
|
+
"": {
|
|
8
|
+
"name": "svelte-demo-app",
|
|
9
|
+
"version": "1.0.0",
|
|
10
|
+
"dependencies": {
|
|
11
|
+
"@emotion/react": "^11.14.0",
|
|
12
|
+
"@emotion/styled": "^11.14.1",
|
|
13
|
+
"@mui/icons-material": "^7.3.2",
|
|
14
|
+
"@mui/material": "^7.3.2",
|
|
15
|
+
"dexie": "4.0.0-alpha.1",
|
|
16
|
+
"idb-orm": "git+ssh://git@github.com:radommaciej/indexed-db-orm.git",
|
|
17
|
+
"zod": "^3.22.0"
|
|
18
|
+
},
|
|
19
|
+
"devDependencies": {
|
|
20
|
+
"@sveltejs/adapter-auto": "^3.0.0",
|
|
21
|
+
"@sveltejs/kit": "^2.0.0",
|
|
22
|
+
"@sveltejs/vite-plugin-svelte": "^3.0.0",
|
|
23
|
+
"svelte": "^4.2.0",
|
|
24
|
+
"svelte-check": "^3.6.0",
|
|
25
|
+
"typescript": "^5.0.0",
|
|
26
|
+
"vite": "^5.0.0"
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"node_modules/@ampproject/remapping": {
|
|
30
|
+
"version": "2.3.0",
|
|
31
|
+
"resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz",
|
|
32
|
+
"integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==",
|
|
33
|
+
"dev": true,
|
|
34
|
+
"license": "Apache-2.0",
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"@jridgewell/gen-mapping": "^0.3.5",
|
|
37
|
+
"@jridgewell/trace-mapping": "^0.3.24"
|
|
38
|
+
},
|
|
39
|
+
"engines": {
|
|
40
|
+
"node": ">=6.0.0"
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"node_modules/@babel/code-frame": {
|
|
44
|
+
"version": "7.27.1",
|
|
45
|
+
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz",
|
|
46
|
+
"integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==",
|
|
47
|
+
"license": "MIT",
|
|
48
|
+
"dependencies": {
|
|
49
|
+
"@babel/helper-validator-identifier": "^7.27.1",
|
|
50
|
+
"js-tokens": "^4.0.0",
|
|
51
|
+
"picocolors": "^1.1.1"
|
|
52
|
+
},
|
|
53
|
+
"engines": {
|
|
54
|
+
"node": ">=6.9.0"
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
"node_modules/@babel/generator": {
|
|
58
|
+
"version": "7.28.3",
|
|
59
|
+
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.3.tgz",
|
|
60
|
+
"integrity": "sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==",
|
|
61
|
+
"license": "MIT",
|
|
62
|
+
"dependencies": {
|
|
63
|
+
"@babel/parser": "^7.28.3",
|
|
64
|
+
"@babel/types": "^7.28.2",
|
|
65
|
+
"@jridgewell/gen-mapping": "^0.3.12",
|
|
66
|
+
"@jridgewell/trace-mapping": "^0.3.28",
|
|
67
|
+
"jsesc": "^3.0.2"
|
|
68
|
+
},
|
|
69
|
+
"engines": {
|
|
70
|
+
"node": ">=6.9.0"
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
"node_modules/@babel/helper-globals": {
|
|
74
|
+
"version": "7.28.0",
|
|
75
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz",
|
|
76
|
+
"integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==",
|
|
77
|
+
"license": "MIT",
|
|
78
|
+
"engines": {
|
|
79
|
+
"node": ">=6.9.0"
|
|
80
|
+
}
|
|
81
|
+
},
|
|
82
|
+
"node_modules/@babel/helper-module-imports": {
|
|
83
|
+
"version": "7.27.1",
|
|
84
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz",
|
|
85
|
+
"integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==",
|
|
86
|
+
"license": "MIT",
|
|
87
|
+
"dependencies": {
|
|
88
|
+
"@babel/traverse": "^7.27.1",
|
|
89
|
+
"@babel/types": "^7.27.1"
|
|
90
|
+
},
|
|
91
|
+
"engines": {
|
|
92
|
+
"node": ">=6.9.0"
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
"node_modules/@babel/helper-string-parser": {
|
|
96
|
+
"version": "7.27.1",
|
|
97
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
|
|
98
|
+
"integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
|
|
99
|
+
"license": "MIT",
|
|
100
|
+
"engines": {
|
|
101
|
+
"node": ">=6.9.0"
|
|
102
|
+
}
|
|
103
|
+
},
|
|
104
|
+
"node_modules/@babel/helper-validator-identifier": {
|
|
105
|
+
"version": "7.27.1",
|
|
106
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz",
|
|
107
|
+
"integrity": "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==",
|
|
108
|
+
"license": "MIT",
|
|
109
|
+
"engines": {
|
|
110
|
+
"node": ">=6.9.0"
|
|
111
|
+
}
|
|
112
|
+
},
|
|
113
|
+
"node_modules/@babel/parser": {
|
|
114
|
+
"version": "7.28.4",
|
|
115
|
+
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.4.tgz",
|
|
116
|
+
"integrity": "sha512-yZbBqeM6TkpP9du/I2pUZnJsRMGGvOuIrhjzC1AwHwW+6he4mni6Bp/m8ijn0iOuZuPI2BfkCoSRunpyjnrQKg==",
|
|
117
|
+
"license": "MIT",
|
|
118
|
+
"dependencies": {
|
|
119
|
+
"@babel/types": "^7.28.4"
|
|
120
|
+
},
|
|
121
|
+
"bin": {
|
|
122
|
+
"parser": "bin/babel-parser.js"
|
|
123
|
+
},
|
|
124
|
+
"engines": {
|
|
125
|
+
"node": ">=6.0.0"
|
|
126
|
+
}
|
|
127
|
+
},
|
|
128
|
+
"node_modules/@babel/runtime": {
|
|
129
|
+
"version": "7.28.4",
|
|
130
|
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.4.tgz",
|
|
131
|
+
"integrity": "sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==",
|
|
132
|
+
"license": "MIT",
|
|
133
|
+
"engines": {
|
|
134
|
+
"node": ">=6.9.0"
|
|
135
|
+
}
|
|
136
|
+
},
|
|
137
|
+
"node_modules/@babel/template": {
|
|
138
|
+
"version": "7.27.2",
|
|
139
|
+
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz",
|
|
140
|
+
"integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==",
|
|
141
|
+
"license": "MIT",
|
|
142
|
+
"dependencies": {
|
|
143
|
+
"@babel/code-frame": "^7.27.1",
|
|
144
|
+
"@babel/parser": "^7.27.2",
|
|
145
|
+
"@babel/types": "^7.27.1"
|
|
146
|
+
},
|
|
147
|
+
"engines": {
|
|
148
|
+
"node": ">=6.9.0"
|
|
149
|
+
}
|
|
150
|
+
},
|
|
151
|
+
"node_modules/@babel/traverse": {
|
|
152
|
+
"version": "7.28.4",
|
|
153
|
+
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.4.tgz",
|
|
154
|
+
"integrity": "sha512-YEzuboP2qvQavAcjgQNVgsvHIDv6ZpwXvcvjmyySP2DIMuByS/6ioU5G9pYrWHM6T2YDfc7xga9iNzYOs12CFQ==",
|
|
155
|
+
"license": "MIT",
|
|
156
|
+
"dependencies": {
|
|
157
|
+
"@babel/code-frame": "^7.27.1",
|
|
158
|
+
"@babel/generator": "^7.28.3",
|
|
159
|
+
"@babel/helper-globals": "^7.28.0",
|
|
160
|
+
"@babel/parser": "^7.28.4",
|
|
161
|
+
"@babel/template": "^7.27.2",
|
|
162
|
+
"@babel/types": "^7.28.4",
|
|
163
|
+
"debug": "^4.3.1"
|
|
164
|
+
},
|
|
165
|
+
"engines": {
|
|
166
|
+
"node": ">=6.9.0"
|
|
167
|
+
}
|
|
168
|
+
},
|
|
169
|
+
"node_modules/@babel/types": {
|
|
170
|
+
"version": "7.28.4",
|
|
171
|
+
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.4.tgz",
|
|
172
|
+
"integrity": "sha512-bkFqkLhh3pMBUQQkpVgWDWq/lqzc2678eUyDlTBhRqhCHFguYYGM0Efga7tYk4TogG/3x0EEl66/OQ+WGbWB/Q==",
|
|
173
|
+
"license": "MIT",
|
|
174
|
+
"dependencies": {
|
|
175
|
+
"@babel/helper-string-parser": "^7.27.1",
|
|
176
|
+
"@babel/helper-validator-identifier": "^7.27.1"
|
|
177
|
+
},
|
|
178
|
+
"engines": {
|
|
179
|
+
"node": ">=6.9.0"
|
|
180
|
+
}
|
|
181
|
+
},
|
|
182
|
+
"node_modules/@emotion/babel-plugin": {
|
|
183
|
+
"version": "11.13.5",
|
|
184
|
+
"resolved": "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.13.5.tgz",
|
|
185
|
+
"integrity": "sha512-pxHCpT2ex+0q+HH91/zsdHkw/lXd468DIN2zvfvLtPKLLMo6gQj7oLObq8PhkrxOZb/gGCq03S3Z7PDhS8pduQ==",
|
|
186
|
+
"license": "MIT",
|
|
187
|
+
"dependencies": {
|
|
188
|
+
"@babel/helper-module-imports": "^7.16.7",
|
|
189
|
+
"@babel/runtime": "^7.18.3",
|
|
190
|
+
"@emotion/hash": "^0.9.2",
|
|
191
|
+
"@emotion/memoize": "^0.9.0",
|
|
192
|
+
"@emotion/serialize": "^1.3.3",
|
|
193
|
+
"babel-plugin-macros": "^3.1.0",
|
|
194
|
+
"convert-source-map": "^1.5.0",
|
|
195
|
+
"escape-string-regexp": "^4.0.0",
|
|
196
|
+
"find-root": "^1.1.0",
|
|
197
|
+
"source-map": "^0.5.7",
|
|
198
|
+
"stylis": "4.2.0"
|
|
199
|
+
}
|
|
200
|
+
},
|
|
201
|
+
"node_modules/@emotion/cache": {
|
|
202
|
+
"version": "11.14.0",
|
|
203
|
+
"resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-11.14.0.tgz",
|
|
204
|
+
"integrity": "sha512-L/B1lc/TViYk4DcpGxtAVbx0ZyiKM5ktoIyafGkH6zg/tj+mA+NE//aPYKG0k8kCHSHVJrpLpcAlOBEXQ3SavA==",
|
|
205
|
+
"license": "MIT",
|
|
206
|
+
"dependencies": {
|
|
207
|
+
"@emotion/memoize": "^0.9.0",
|
|
208
|
+
"@emotion/sheet": "^1.4.0",
|
|
209
|
+
"@emotion/utils": "^1.4.2",
|
|
210
|
+
"@emotion/weak-memoize": "^0.4.0",
|
|
211
|
+
"stylis": "4.2.0"
|
|
212
|
+
}
|
|
213
|
+
},
|
|
214
|
+
"node_modules/@emotion/hash": {
|
|
215
|
+
"version": "0.9.2",
|
|
216
|
+
"resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.2.tgz",
|
|
217
|
+
"integrity": "sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==",
|
|
218
|
+
"license": "MIT"
|
|
219
|
+
},
|
|
220
|
+
"node_modules/@emotion/is-prop-valid": {
|
|
221
|
+
"version": "1.4.0",
|
|
222
|
+
"resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.4.0.tgz",
|
|
223
|
+
"integrity": "sha512-QgD4fyscGcbbKwJmqNvUMSE02OsHUa+lAWKdEUIJKgqe5IwRSKd7+KhibEWdaKwgjLj0DRSHA9biAIqGBk05lw==",
|
|
224
|
+
"license": "MIT",
|
|
225
|
+
"dependencies": {
|
|
226
|
+
"@emotion/memoize": "^0.9.0"
|
|
227
|
+
}
|
|
228
|
+
},
|
|
229
|
+
"node_modules/@emotion/memoize": {
|
|
230
|
+
"version": "0.9.0",
|
|
231
|
+
"resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.9.0.tgz",
|
|
232
|
+
"integrity": "sha512-30FAj7/EoJ5mwVPOWhAyCX+FPfMDrVecJAM+Iw9NRoSl4BBAQeqj4cApHHUXOVvIPgLVDsCFoz/hGD+5QQD1GQ==",
|
|
233
|
+
"license": "MIT"
|
|
234
|
+
},
|
|
235
|
+
"node_modules/@emotion/react": {
|
|
236
|
+
"version": "11.14.0",
|
|
237
|
+
"resolved": "https://registry.npmjs.org/@emotion/react/-/react-11.14.0.tgz",
|
|
238
|
+
"integrity": "sha512-O000MLDBDdk/EohJPFUqvnp4qnHeYkVP5B0xEG0D/L7cOKP9kefu2DXn8dj74cQfsEzUqh+sr1RzFqiL1o+PpA==",
|
|
239
|
+
"license": "MIT",
|
|
240
|
+
"dependencies": {
|
|
241
|
+
"@babel/runtime": "^7.18.3",
|
|
242
|
+
"@emotion/babel-plugin": "^11.13.5",
|
|
243
|
+
"@emotion/cache": "^11.14.0",
|
|
244
|
+
"@emotion/serialize": "^1.3.3",
|
|
245
|
+
"@emotion/use-insertion-effect-with-fallbacks": "^1.2.0",
|
|
246
|
+
"@emotion/utils": "^1.4.2",
|
|
247
|
+
"@emotion/weak-memoize": "^0.4.0",
|
|
248
|
+
"hoist-non-react-statics": "^3.3.1"
|
|
249
|
+
},
|
|
250
|
+
"peerDependencies": {
|
|
251
|
+
"react": ">=16.8.0"
|
|
252
|
+
},
|
|
253
|
+
"peerDependenciesMeta": {
|
|
254
|
+
"@types/react": {
|
|
255
|
+
"optional": true
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
},
|
|
259
|
+
"node_modules/@emotion/serialize": {
|
|
260
|
+
"version": "1.3.3",
|
|
261
|
+
"resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.3.3.tgz",
|
|
262
|
+
"integrity": "sha512-EISGqt7sSNWHGI76hC7x1CksiXPahbxEOrC5RjmFRJTqLyEK9/9hZvBbiYn70dw4wuwMKiEMCUlR6ZXTSWQqxA==",
|
|
263
|
+
"license": "MIT",
|
|
264
|
+
"dependencies": {
|
|
265
|
+
"@emotion/hash": "^0.9.2",
|
|
266
|
+
"@emotion/memoize": "^0.9.0",
|
|
267
|
+
"@emotion/unitless": "^0.10.0",
|
|
268
|
+
"@emotion/utils": "^1.4.2",
|
|
269
|
+
"csstype": "^3.0.2"
|
|
270
|
+
}
|
|
271
|
+
},
|
|
272
|
+
"node_modules/@emotion/sheet": {
|
|
273
|
+
"version": "1.4.0",
|
|
274
|
+
"resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.4.0.tgz",
|
|
275
|
+
"integrity": "sha512-fTBW9/8r2w3dXWYM4HCB1Rdp8NLibOw2+XELH5m5+AkWiL/KqYX6dc0kKYlaYyKjrQ6ds33MCdMPEwgs2z1rqg==",
|
|
276
|
+
"license": "MIT"
|
|
277
|
+
},
|
|
278
|
+
"node_modules/@emotion/styled": {
|
|
279
|
+
"version": "11.14.1",
|
|
280
|
+
"resolved": "https://registry.npmjs.org/@emotion/styled/-/styled-11.14.1.tgz",
|
|
281
|
+
"integrity": "sha512-qEEJt42DuToa3gurlH4Qqc1kVpNq8wO8cJtDzU46TjlzWjDlsVyevtYCRijVq3SrHsROS+gVQ8Fnea108GnKzw==",
|
|
282
|
+
"license": "MIT",
|
|
283
|
+
"dependencies": {
|
|
284
|
+
"@babel/runtime": "^7.18.3",
|
|
285
|
+
"@emotion/babel-plugin": "^11.13.5",
|
|
286
|
+
"@emotion/is-prop-valid": "^1.3.0",
|
|
287
|
+
"@emotion/serialize": "^1.3.3",
|
|
288
|
+
"@emotion/use-insertion-effect-with-fallbacks": "^1.2.0",
|
|
289
|
+
"@emotion/utils": "^1.4.2"
|
|
290
|
+
},
|
|
291
|
+
"peerDependencies": {
|
|
292
|
+
"@emotion/react": "^11.0.0-rc.0",
|
|
293
|
+
"react": ">=16.8.0"
|
|
294
|
+
},
|
|
295
|
+
"peerDependenciesMeta": {
|
|
296
|
+
"@types/react": {
|
|
297
|
+
"optional": true
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
},
|
|
301
|
+
"node_modules/@emotion/unitless": {
|
|
302
|
+
"version": "0.10.0",
|
|
303
|
+
"resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.10.0.tgz",
|
|
304
|
+
"integrity": "sha512-dFoMUuQA20zvtVTuxZww6OHoJYgrzfKM1t52mVySDJnMSEa08ruEvdYQbhvyu6soU+NeLVd3yKfTfT0NeV6qGg==",
|
|
305
|
+
"license": "MIT"
|
|
306
|
+
},
|
|
307
|
+
"node_modules/@emotion/use-insertion-effect-with-fallbacks": {
|
|
308
|
+
"version": "1.2.0",
|
|
309
|
+
"resolved": "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.2.0.tgz",
|
|
310
|
+
"integrity": "sha512-yJMtVdH59sxi/aVJBpk9FQq+OR8ll5GT8oWd57UpeaKEVGab41JWaCFA7FRLoMLloOZF/c/wsPoe+bfGmRKgDg==",
|
|
311
|
+
"license": "MIT",
|
|
312
|
+
"peerDependencies": {
|
|
313
|
+
"react": ">=16.8.0"
|
|
314
|
+
}
|
|
315
|
+
},
|
|
316
|
+
"node_modules/@emotion/utils": {
|
|
317
|
+
"version": "1.4.2",
|
|
318
|
+
"resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-1.4.2.tgz",
|
|
319
|
+
"integrity": "sha512-3vLclRofFziIa3J2wDh9jjbkUz9qk5Vi3IZ/FSTKViB0k+ef0fPV7dYrUIugbgupYDx7v9ud/SjrtEP8Y4xLoA==",
|
|
320
|
+
"license": "MIT"
|
|
321
|
+
},
|
|
322
|
+
"node_modules/@emotion/weak-memoize": {
|
|
323
|
+
"version": "0.4.0",
|
|
324
|
+
"resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.4.0.tgz",
|
|
325
|
+
"integrity": "sha512-snKqtPW01tN0ui7yu9rGv69aJXr/a/Ywvl11sUjNtEcRc+ng/mQriFL0wLXMef74iHa/EkftbDzU9F8iFbH+zg==",
|
|
326
|
+
"license": "MIT"
|
|
327
|
+
},
|
|
328
|
+
"node_modules/@esbuild/aix-ppc64": {
|
|
329
|
+
"version": "0.21.5",
|
|
330
|
+
"resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz",
|
|
331
|
+
"integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==",
|
|
332
|
+
"cpu": [
|
|
333
|
+
"ppc64"
|
|
334
|
+
],
|
|
335
|
+
"dev": true,
|
|
336
|
+
"license": "MIT",
|
|
337
|
+
"optional": true,
|
|
338
|
+
"os": [
|
|
339
|
+
"aix"
|
|
340
|
+
],
|
|
341
|
+
"engines": {
|
|
342
|
+
"node": ">=12"
|
|
343
|
+
}
|
|
344
|
+
},
|
|
345
|
+
"node_modules/@esbuild/android-arm": {
|
|
346
|
+
"version": "0.21.5",
|
|
347
|
+
"resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz",
|
|
348
|
+
"integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==",
|
|
349
|
+
"cpu": [
|
|
350
|
+
"arm"
|
|
351
|
+
],
|
|
352
|
+
"dev": true,
|
|
353
|
+
"license": "MIT",
|
|
354
|
+
"optional": true,
|
|
355
|
+
"os": [
|
|
356
|
+
"android"
|
|
357
|
+
],
|
|
358
|
+
"engines": {
|
|
359
|
+
"node": ">=12"
|
|
360
|
+
}
|
|
361
|
+
},
|
|
362
|
+
"node_modules/@esbuild/android-arm64": {
|
|
363
|
+
"version": "0.21.5",
|
|
364
|
+
"resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz",
|
|
365
|
+
"integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==",
|
|
366
|
+
"cpu": [
|
|
367
|
+
"arm64"
|
|
368
|
+
],
|
|
369
|
+
"dev": true,
|
|
370
|
+
"license": "MIT",
|
|
371
|
+
"optional": true,
|
|
372
|
+
"os": [
|
|
373
|
+
"android"
|
|
374
|
+
],
|
|
375
|
+
"engines": {
|
|
376
|
+
"node": ">=12"
|
|
377
|
+
}
|
|
378
|
+
},
|
|
379
|
+
"node_modules/@esbuild/android-x64": {
|
|
380
|
+
"version": "0.21.5",
|
|
381
|
+
"resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz",
|
|
382
|
+
"integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==",
|
|
383
|
+
"cpu": [
|
|
384
|
+
"x64"
|
|
385
|
+
],
|
|
386
|
+
"dev": true,
|
|
387
|
+
"license": "MIT",
|
|
388
|
+
"optional": true,
|
|
389
|
+
"os": [
|
|
390
|
+
"android"
|
|
391
|
+
],
|
|
392
|
+
"engines": {
|
|
393
|
+
"node": ">=12"
|
|
394
|
+
}
|
|
395
|
+
},
|
|
396
|
+
"node_modules/@esbuild/darwin-arm64": {
|
|
397
|
+
"version": "0.21.5",
|
|
398
|
+
"resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz",
|
|
399
|
+
"integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==",
|
|
400
|
+
"cpu": [
|
|
401
|
+
"arm64"
|
|
402
|
+
],
|
|
403
|
+
"dev": true,
|
|
404
|
+
"license": "MIT",
|
|
405
|
+
"optional": true,
|
|
406
|
+
"os": [
|
|
407
|
+
"darwin"
|
|
408
|
+
],
|
|
409
|
+
"engines": {
|
|
410
|
+
"node": ">=12"
|
|
411
|
+
}
|
|
412
|
+
},
|
|
413
|
+
"node_modules/@esbuild/darwin-x64": {
|
|
414
|
+
"version": "0.21.5",
|
|
415
|
+
"resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz",
|
|
416
|
+
"integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==",
|
|
417
|
+
"cpu": [
|
|
418
|
+
"x64"
|
|
419
|
+
],
|
|
420
|
+
"dev": true,
|
|
421
|
+
"license": "MIT",
|
|
422
|
+
"optional": true,
|
|
423
|
+
"os": [
|
|
424
|
+
"darwin"
|
|
425
|
+
],
|
|
426
|
+
"engines": {
|
|
427
|
+
"node": ">=12"
|
|
428
|
+
}
|
|
429
|
+
},
|
|
430
|
+
"node_modules/@esbuild/freebsd-arm64": {
|
|
431
|
+
"version": "0.21.5",
|
|
432
|
+
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz",
|
|
433
|
+
"integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==",
|
|
434
|
+
"cpu": [
|
|
435
|
+
"arm64"
|
|
436
|
+
],
|
|
437
|
+
"dev": true,
|
|
438
|
+
"license": "MIT",
|
|
439
|
+
"optional": true,
|
|
440
|
+
"os": [
|
|
441
|
+
"freebsd"
|
|
442
|
+
],
|
|
443
|
+
"engines": {
|
|
444
|
+
"node": ">=12"
|
|
445
|
+
}
|
|
446
|
+
},
|
|
447
|
+
"node_modules/@esbuild/freebsd-x64": {
|
|
448
|
+
"version": "0.21.5",
|
|
449
|
+
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz",
|
|
450
|
+
"integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==",
|
|
451
|
+
"cpu": [
|
|
452
|
+
"x64"
|
|
453
|
+
],
|
|
454
|
+
"dev": true,
|
|
455
|
+
"license": "MIT",
|
|
456
|
+
"optional": true,
|
|
457
|
+
"os": [
|
|
458
|
+
"freebsd"
|
|
459
|
+
],
|
|
460
|
+
"engines": {
|
|
461
|
+
"node": ">=12"
|
|
462
|
+
}
|
|
463
|
+
},
|
|
464
|
+
"node_modules/@esbuild/linux-arm": {
|
|
465
|
+
"version": "0.21.5",
|
|
466
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz",
|
|
467
|
+
"integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==",
|
|
468
|
+
"cpu": [
|
|
469
|
+
"arm"
|
|
470
|
+
],
|
|
471
|
+
"dev": true,
|
|
472
|
+
"license": "MIT",
|
|
473
|
+
"optional": true,
|
|
474
|
+
"os": [
|
|
475
|
+
"linux"
|
|
476
|
+
],
|
|
477
|
+
"engines": {
|
|
478
|
+
"node": ">=12"
|
|
479
|
+
}
|
|
480
|
+
},
|
|
481
|
+
"node_modules/@esbuild/linux-arm64": {
|
|
482
|
+
"version": "0.21.5",
|
|
483
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz",
|
|
484
|
+
"integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==",
|
|
485
|
+
"cpu": [
|
|
486
|
+
"arm64"
|
|
487
|
+
],
|
|
488
|
+
"dev": true,
|
|
489
|
+
"license": "MIT",
|
|
490
|
+
"optional": true,
|
|
491
|
+
"os": [
|
|
492
|
+
"linux"
|
|
493
|
+
],
|
|
494
|
+
"engines": {
|
|
495
|
+
"node": ">=12"
|
|
496
|
+
}
|
|
497
|
+
},
|
|
498
|
+
"node_modules/@esbuild/linux-ia32": {
|
|
499
|
+
"version": "0.21.5",
|
|
500
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz",
|
|
501
|
+
"integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==",
|
|
502
|
+
"cpu": [
|
|
503
|
+
"ia32"
|
|
504
|
+
],
|
|
505
|
+
"dev": true,
|
|
506
|
+
"license": "MIT",
|
|
507
|
+
"optional": true,
|
|
508
|
+
"os": [
|
|
509
|
+
"linux"
|
|
510
|
+
],
|
|
511
|
+
"engines": {
|
|
512
|
+
"node": ">=12"
|
|
513
|
+
}
|
|
514
|
+
},
|
|
515
|
+
"node_modules/@esbuild/linux-loong64": {
|
|
516
|
+
"version": "0.21.5",
|
|
517
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz",
|
|
518
|
+
"integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==",
|
|
519
|
+
"cpu": [
|
|
520
|
+
"loong64"
|
|
521
|
+
],
|
|
522
|
+
"dev": true,
|
|
523
|
+
"license": "MIT",
|
|
524
|
+
"optional": true,
|
|
525
|
+
"os": [
|
|
526
|
+
"linux"
|
|
527
|
+
],
|
|
528
|
+
"engines": {
|
|
529
|
+
"node": ">=12"
|
|
530
|
+
}
|
|
531
|
+
},
|
|
532
|
+
"node_modules/@esbuild/linux-mips64el": {
|
|
533
|
+
"version": "0.21.5",
|
|
534
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz",
|
|
535
|
+
"integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==",
|
|
536
|
+
"cpu": [
|
|
537
|
+
"mips64el"
|
|
538
|
+
],
|
|
539
|
+
"dev": true,
|
|
540
|
+
"license": "MIT",
|
|
541
|
+
"optional": true,
|
|
542
|
+
"os": [
|
|
543
|
+
"linux"
|
|
544
|
+
],
|
|
545
|
+
"engines": {
|
|
546
|
+
"node": ">=12"
|
|
547
|
+
}
|
|
548
|
+
},
|
|
549
|
+
"node_modules/@esbuild/linux-ppc64": {
|
|
550
|
+
"version": "0.21.5",
|
|
551
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz",
|
|
552
|
+
"integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==",
|
|
553
|
+
"cpu": [
|
|
554
|
+
"ppc64"
|
|
555
|
+
],
|
|
556
|
+
"dev": true,
|
|
557
|
+
"license": "MIT",
|
|
558
|
+
"optional": true,
|
|
559
|
+
"os": [
|
|
560
|
+
"linux"
|
|
561
|
+
],
|
|
562
|
+
"engines": {
|
|
563
|
+
"node": ">=12"
|
|
564
|
+
}
|
|
565
|
+
},
|
|
566
|
+
"node_modules/@esbuild/linux-riscv64": {
|
|
567
|
+
"version": "0.21.5",
|
|
568
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz",
|
|
569
|
+
"integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==",
|
|
570
|
+
"cpu": [
|
|
571
|
+
"riscv64"
|
|
572
|
+
],
|
|
573
|
+
"dev": true,
|
|
574
|
+
"license": "MIT",
|
|
575
|
+
"optional": true,
|
|
576
|
+
"os": [
|
|
577
|
+
"linux"
|
|
578
|
+
],
|
|
579
|
+
"engines": {
|
|
580
|
+
"node": ">=12"
|
|
581
|
+
}
|
|
582
|
+
},
|
|
583
|
+
"node_modules/@esbuild/linux-s390x": {
|
|
584
|
+
"version": "0.21.5",
|
|
585
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz",
|
|
586
|
+
"integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==",
|
|
587
|
+
"cpu": [
|
|
588
|
+
"s390x"
|
|
589
|
+
],
|
|
590
|
+
"dev": true,
|
|
591
|
+
"license": "MIT",
|
|
592
|
+
"optional": true,
|
|
593
|
+
"os": [
|
|
594
|
+
"linux"
|
|
595
|
+
],
|
|
596
|
+
"engines": {
|
|
597
|
+
"node": ">=12"
|
|
598
|
+
}
|
|
599
|
+
},
|
|
600
|
+
"node_modules/@esbuild/linux-x64": {
|
|
601
|
+
"version": "0.21.5",
|
|
602
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz",
|
|
603
|
+
"integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==",
|
|
604
|
+
"cpu": [
|
|
605
|
+
"x64"
|
|
606
|
+
],
|
|
607
|
+
"dev": true,
|
|
608
|
+
"license": "MIT",
|
|
609
|
+
"optional": true,
|
|
610
|
+
"os": [
|
|
611
|
+
"linux"
|
|
612
|
+
],
|
|
613
|
+
"engines": {
|
|
614
|
+
"node": ">=12"
|
|
615
|
+
}
|
|
616
|
+
},
|
|
617
|
+
"node_modules/@esbuild/netbsd-x64": {
|
|
618
|
+
"version": "0.21.5",
|
|
619
|
+
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz",
|
|
620
|
+
"integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==",
|
|
621
|
+
"cpu": [
|
|
622
|
+
"x64"
|
|
623
|
+
],
|
|
624
|
+
"dev": true,
|
|
625
|
+
"license": "MIT",
|
|
626
|
+
"optional": true,
|
|
627
|
+
"os": [
|
|
628
|
+
"netbsd"
|
|
629
|
+
],
|
|
630
|
+
"engines": {
|
|
631
|
+
"node": ">=12"
|
|
632
|
+
}
|
|
633
|
+
},
|
|
634
|
+
"node_modules/@esbuild/openbsd-x64": {
|
|
635
|
+
"version": "0.21.5",
|
|
636
|
+
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz",
|
|
637
|
+
"integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==",
|
|
638
|
+
"cpu": [
|
|
639
|
+
"x64"
|
|
640
|
+
],
|
|
641
|
+
"dev": true,
|
|
642
|
+
"license": "MIT",
|
|
643
|
+
"optional": true,
|
|
644
|
+
"os": [
|
|
645
|
+
"openbsd"
|
|
646
|
+
],
|
|
647
|
+
"engines": {
|
|
648
|
+
"node": ">=12"
|
|
649
|
+
}
|
|
650
|
+
},
|
|
651
|
+
"node_modules/@esbuild/sunos-x64": {
|
|
652
|
+
"version": "0.21.5",
|
|
653
|
+
"resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz",
|
|
654
|
+
"integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==",
|
|
655
|
+
"cpu": [
|
|
656
|
+
"x64"
|
|
657
|
+
],
|
|
658
|
+
"dev": true,
|
|
659
|
+
"license": "MIT",
|
|
660
|
+
"optional": true,
|
|
661
|
+
"os": [
|
|
662
|
+
"sunos"
|
|
663
|
+
],
|
|
664
|
+
"engines": {
|
|
665
|
+
"node": ">=12"
|
|
666
|
+
}
|
|
667
|
+
},
|
|
668
|
+
"node_modules/@esbuild/win32-arm64": {
|
|
669
|
+
"version": "0.21.5",
|
|
670
|
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz",
|
|
671
|
+
"integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==",
|
|
672
|
+
"cpu": [
|
|
673
|
+
"arm64"
|
|
674
|
+
],
|
|
675
|
+
"dev": true,
|
|
676
|
+
"license": "MIT",
|
|
677
|
+
"optional": true,
|
|
678
|
+
"os": [
|
|
679
|
+
"win32"
|
|
680
|
+
],
|
|
681
|
+
"engines": {
|
|
682
|
+
"node": ">=12"
|
|
683
|
+
}
|
|
684
|
+
},
|
|
685
|
+
"node_modules/@esbuild/win32-ia32": {
|
|
686
|
+
"version": "0.21.5",
|
|
687
|
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz",
|
|
688
|
+
"integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==",
|
|
689
|
+
"cpu": [
|
|
690
|
+
"ia32"
|
|
691
|
+
],
|
|
692
|
+
"dev": true,
|
|
693
|
+
"license": "MIT",
|
|
694
|
+
"optional": true,
|
|
695
|
+
"os": [
|
|
696
|
+
"win32"
|
|
697
|
+
],
|
|
698
|
+
"engines": {
|
|
699
|
+
"node": ">=12"
|
|
700
|
+
}
|
|
701
|
+
},
|
|
702
|
+
"node_modules/@esbuild/win32-x64": {
|
|
703
|
+
"version": "0.21.5",
|
|
704
|
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz",
|
|
705
|
+
"integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==",
|
|
706
|
+
"cpu": [
|
|
707
|
+
"x64"
|
|
708
|
+
],
|
|
709
|
+
"dev": true,
|
|
710
|
+
"license": "MIT",
|
|
711
|
+
"optional": true,
|
|
712
|
+
"os": [
|
|
713
|
+
"win32"
|
|
714
|
+
],
|
|
715
|
+
"engines": {
|
|
716
|
+
"node": ">=12"
|
|
717
|
+
}
|
|
718
|
+
},
|
|
719
|
+
"node_modules/@jridgewell/gen-mapping": {
|
|
720
|
+
"version": "0.3.13",
|
|
721
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
|
|
722
|
+
"integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
|
|
723
|
+
"license": "MIT",
|
|
724
|
+
"dependencies": {
|
|
725
|
+
"@jridgewell/sourcemap-codec": "^1.5.0",
|
|
726
|
+
"@jridgewell/trace-mapping": "^0.3.24"
|
|
727
|
+
}
|
|
728
|
+
},
|
|
729
|
+
"node_modules/@jridgewell/resolve-uri": {
|
|
730
|
+
"version": "3.1.2",
|
|
731
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
|
|
732
|
+
"integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
|
|
733
|
+
"license": "MIT",
|
|
734
|
+
"engines": {
|
|
735
|
+
"node": ">=6.0.0"
|
|
736
|
+
}
|
|
737
|
+
},
|
|
738
|
+
"node_modules/@jridgewell/sourcemap-codec": {
|
|
739
|
+
"version": "1.5.5",
|
|
740
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
|
|
741
|
+
"integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
|
|
742
|
+
"license": "MIT"
|
|
743
|
+
},
|
|
744
|
+
"node_modules/@jridgewell/trace-mapping": {
|
|
745
|
+
"version": "0.3.31",
|
|
746
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
|
|
747
|
+
"integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
|
|
748
|
+
"license": "MIT",
|
|
749
|
+
"dependencies": {
|
|
750
|
+
"@jridgewell/resolve-uri": "^3.1.0",
|
|
751
|
+
"@jridgewell/sourcemap-codec": "^1.4.14"
|
|
752
|
+
}
|
|
753
|
+
},
|
|
754
|
+
"node_modules/@mui/core-downloads-tracker": {
|
|
755
|
+
"version": "7.3.2",
|
|
756
|
+
"resolved": "https://registry.npmjs.org/@mui/core-downloads-tracker/-/core-downloads-tracker-7.3.2.tgz",
|
|
757
|
+
"integrity": "sha512-AOyfHjyDKVPGJJFtxOlept3EYEdLoar/RvssBTWVAvDJGIE676dLi2oT/Kx+FoVXFoA/JdV7DEMq/BVWV3KHRw==",
|
|
758
|
+
"license": "MIT",
|
|
759
|
+
"funding": {
|
|
760
|
+
"type": "opencollective",
|
|
761
|
+
"url": "https://opencollective.com/mui-org"
|
|
762
|
+
}
|
|
763
|
+
},
|
|
764
|
+
"node_modules/@mui/icons-material": {
|
|
765
|
+
"version": "7.3.2",
|
|
766
|
+
"resolved": "https://registry.npmjs.org/@mui/icons-material/-/icons-material-7.3.2.tgz",
|
|
767
|
+
"integrity": "sha512-TZWazBjWXBjR6iGcNkbKklnwodcwj0SrChCNHc9BhD9rBgET22J1eFhHsEmvSvru9+opDy3umqAimQjokhfJlQ==",
|
|
768
|
+
"license": "MIT",
|
|
769
|
+
"dependencies": {
|
|
770
|
+
"@babel/runtime": "^7.28.3"
|
|
771
|
+
},
|
|
772
|
+
"engines": {
|
|
773
|
+
"node": ">=14.0.0"
|
|
774
|
+
},
|
|
775
|
+
"funding": {
|
|
776
|
+
"type": "opencollective",
|
|
777
|
+
"url": "https://opencollective.com/mui-org"
|
|
778
|
+
},
|
|
779
|
+
"peerDependencies": {
|
|
780
|
+
"@mui/material": "^7.3.2",
|
|
781
|
+
"@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
782
|
+
"react": "^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
783
|
+
},
|
|
784
|
+
"peerDependenciesMeta": {
|
|
785
|
+
"@types/react": {
|
|
786
|
+
"optional": true
|
|
787
|
+
}
|
|
788
|
+
}
|
|
789
|
+
},
|
|
790
|
+
"node_modules/@mui/material": {
|
|
791
|
+
"version": "7.3.2",
|
|
792
|
+
"resolved": "https://registry.npmjs.org/@mui/material/-/material-7.3.2.tgz",
|
|
793
|
+
"integrity": "sha512-qXvbnawQhqUVfH1LMgMaiytP+ZpGoYhnGl7yYq2x57GYzcFL/iPzSZ3L30tlbwEjSVKNYcbiKO8tANR1tadjUg==",
|
|
794
|
+
"license": "MIT",
|
|
795
|
+
"dependencies": {
|
|
796
|
+
"@babel/runtime": "^7.28.3",
|
|
797
|
+
"@mui/core-downloads-tracker": "^7.3.2",
|
|
798
|
+
"@mui/system": "^7.3.2",
|
|
799
|
+
"@mui/types": "^7.4.6",
|
|
800
|
+
"@mui/utils": "^7.3.2",
|
|
801
|
+
"@popperjs/core": "^2.11.8",
|
|
802
|
+
"@types/react-transition-group": "^4.4.12",
|
|
803
|
+
"clsx": "^2.1.1",
|
|
804
|
+
"csstype": "^3.1.3",
|
|
805
|
+
"prop-types": "^15.8.1",
|
|
806
|
+
"react-is": "^19.1.1",
|
|
807
|
+
"react-transition-group": "^4.4.5"
|
|
808
|
+
},
|
|
809
|
+
"engines": {
|
|
810
|
+
"node": ">=14.0.0"
|
|
811
|
+
},
|
|
812
|
+
"funding": {
|
|
813
|
+
"type": "opencollective",
|
|
814
|
+
"url": "https://opencollective.com/mui-org"
|
|
815
|
+
},
|
|
816
|
+
"peerDependencies": {
|
|
817
|
+
"@emotion/react": "^11.5.0",
|
|
818
|
+
"@emotion/styled": "^11.3.0",
|
|
819
|
+
"@mui/material-pigment-css": "^7.3.2",
|
|
820
|
+
"@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
821
|
+
"react": "^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
822
|
+
"react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
823
|
+
},
|
|
824
|
+
"peerDependenciesMeta": {
|
|
825
|
+
"@emotion/react": {
|
|
826
|
+
"optional": true
|
|
827
|
+
},
|
|
828
|
+
"@emotion/styled": {
|
|
829
|
+
"optional": true
|
|
830
|
+
},
|
|
831
|
+
"@mui/material-pigment-css": {
|
|
832
|
+
"optional": true
|
|
833
|
+
},
|
|
834
|
+
"@types/react": {
|
|
835
|
+
"optional": true
|
|
836
|
+
}
|
|
837
|
+
}
|
|
838
|
+
},
|
|
839
|
+
"node_modules/@mui/private-theming": {
|
|
840
|
+
"version": "7.3.2",
|
|
841
|
+
"resolved": "https://registry.npmjs.org/@mui/private-theming/-/private-theming-7.3.2.tgz",
|
|
842
|
+
"integrity": "sha512-ha7mFoOyZGJr75xeiO9lugS3joRROjc8tG1u4P50dH0KR7bwhHznVMcYg7MouochUy0OxooJm/OOSpJ7gKcMvg==",
|
|
843
|
+
"license": "MIT",
|
|
844
|
+
"dependencies": {
|
|
845
|
+
"@babel/runtime": "^7.28.3",
|
|
846
|
+
"@mui/utils": "^7.3.2",
|
|
847
|
+
"prop-types": "^15.8.1"
|
|
848
|
+
},
|
|
849
|
+
"engines": {
|
|
850
|
+
"node": ">=14.0.0"
|
|
851
|
+
},
|
|
852
|
+
"funding": {
|
|
853
|
+
"type": "opencollective",
|
|
854
|
+
"url": "https://opencollective.com/mui-org"
|
|
855
|
+
},
|
|
856
|
+
"peerDependencies": {
|
|
857
|
+
"@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
858
|
+
"react": "^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
859
|
+
},
|
|
860
|
+
"peerDependenciesMeta": {
|
|
861
|
+
"@types/react": {
|
|
862
|
+
"optional": true
|
|
863
|
+
}
|
|
864
|
+
}
|
|
865
|
+
},
|
|
866
|
+
"node_modules/@mui/styled-engine": {
|
|
867
|
+
"version": "7.3.2",
|
|
868
|
+
"resolved": "https://registry.npmjs.org/@mui/styled-engine/-/styled-engine-7.3.2.tgz",
|
|
869
|
+
"integrity": "sha512-PkJzW+mTaek4e0nPYZ6qLnW5RGa0KN+eRTf5FA2nc7cFZTeM+qebmGibaTLrgQBy3UpcpemaqfzToBNkzuxqew==",
|
|
870
|
+
"license": "MIT",
|
|
871
|
+
"dependencies": {
|
|
872
|
+
"@babel/runtime": "^7.28.3",
|
|
873
|
+
"@emotion/cache": "^11.14.0",
|
|
874
|
+
"@emotion/serialize": "^1.3.3",
|
|
875
|
+
"@emotion/sheet": "^1.4.0",
|
|
876
|
+
"csstype": "^3.1.3",
|
|
877
|
+
"prop-types": "^15.8.1"
|
|
878
|
+
},
|
|
879
|
+
"engines": {
|
|
880
|
+
"node": ">=14.0.0"
|
|
881
|
+
},
|
|
882
|
+
"funding": {
|
|
883
|
+
"type": "opencollective",
|
|
884
|
+
"url": "https://opencollective.com/mui-org"
|
|
885
|
+
},
|
|
886
|
+
"peerDependencies": {
|
|
887
|
+
"@emotion/react": "^11.4.1",
|
|
888
|
+
"@emotion/styled": "^11.3.0",
|
|
889
|
+
"react": "^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
890
|
+
},
|
|
891
|
+
"peerDependenciesMeta": {
|
|
892
|
+
"@emotion/react": {
|
|
893
|
+
"optional": true
|
|
894
|
+
},
|
|
895
|
+
"@emotion/styled": {
|
|
896
|
+
"optional": true
|
|
897
|
+
}
|
|
898
|
+
}
|
|
899
|
+
},
|
|
900
|
+
"node_modules/@mui/system": {
|
|
901
|
+
"version": "7.3.2",
|
|
902
|
+
"resolved": "https://registry.npmjs.org/@mui/system/-/system-7.3.2.tgz",
|
|
903
|
+
"integrity": "sha512-9d8JEvZW+H6cVkaZ+FK56R53vkJe3HsTpcjMUtH8v1xK6Y1TjzHdZ7Jck02mGXJsE6MQGWVs3ogRHTQmS9Q/rA==",
|
|
904
|
+
"license": "MIT",
|
|
905
|
+
"dependencies": {
|
|
906
|
+
"@babel/runtime": "^7.28.3",
|
|
907
|
+
"@mui/private-theming": "^7.3.2",
|
|
908
|
+
"@mui/styled-engine": "^7.3.2",
|
|
909
|
+
"@mui/types": "^7.4.6",
|
|
910
|
+
"@mui/utils": "^7.3.2",
|
|
911
|
+
"clsx": "^2.1.1",
|
|
912
|
+
"csstype": "^3.1.3",
|
|
913
|
+
"prop-types": "^15.8.1"
|
|
914
|
+
},
|
|
915
|
+
"engines": {
|
|
916
|
+
"node": ">=14.0.0"
|
|
917
|
+
},
|
|
918
|
+
"funding": {
|
|
919
|
+
"type": "opencollective",
|
|
920
|
+
"url": "https://opencollective.com/mui-org"
|
|
921
|
+
},
|
|
922
|
+
"peerDependencies": {
|
|
923
|
+
"@emotion/react": "^11.5.0",
|
|
924
|
+
"@emotion/styled": "^11.3.0",
|
|
925
|
+
"@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
926
|
+
"react": "^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
927
|
+
},
|
|
928
|
+
"peerDependenciesMeta": {
|
|
929
|
+
"@emotion/react": {
|
|
930
|
+
"optional": true
|
|
931
|
+
},
|
|
932
|
+
"@emotion/styled": {
|
|
933
|
+
"optional": true
|
|
934
|
+
},
|
|
935
|
+
"@types/react": {
|
|
936
|
+
"optional": true
|
|
937
|
+
}
|
|
938
|
+
}
|
|
939
|
+
},
|
|
940
|
+
"node_modules/@mui/types": {
|
|
941
|
+
"version": "7.4.6",
|
|
942
|
+
"resolved": "https://registry.npmjs.org/@mui/types/-/types-7.4.6.tgz",
|
|
943
|
+
"integrity": "sha512-NVBbIw+4CDMMppNamVxyTccNv0WxtDb7motWDlMeSC8Oy95saj1TIZMGynPpFLePt3yOD8TskzumeqORCgRGWw==",
|
|
944
|
+
"license": "MIT",
|
|
945
|
+
"dependencies": {
|
|
946
|
+
"@babel/runtime": "^7.28.3"
|
|
947
|
+
},
|
|
948
|
+
"peerDependencies": {
|
|
949
|
+
"@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
950
|
+
},
|
|
951
|
+
"peerDependenciesMeta": {
|
|
952
|
+
"@types/react": {
|
|
953
|
+
"optional": true
|
|
954
|
+
}
|
|
955
|
+
}
|
|
956
|
+
},
|
|
957
|
+
"node_modules/@mui/utils": {
|
|
958
|
+
"version": "7.3.2",
|
|
959
|
+
"resolved": "https://registry.npmjs.org/@mui/utils/-/utils-7.3.2.tgz",
|
|
960
|
+
"integrity": "sha512-4DMWQGenOdLnM3y/SdFQFwKsCLM+mqxzvoWp9+x2XdEzXapkznauHLiXtSohHs/mc0+5/9UACt1GdugCX2te5g==",
|
|
961
|
+
"license": "MIT",
|
|
962
|
+
"dependencies": {
|
|
963
|
+
"@babel/runtime": "^7.28.3",
|
|
964
|
+
"@mui/types": "^7.4.6",
|
|
965
|
+
"@types/prop-types": "^15.7.15",
|
|
966
|
+
"clsx": "^2.1.1",
|
|
967
|
+
"prop-types": "^15.8.1",
|
|
968
|
+
"react-is": "^19.1.1"
|
|
969
|
+
},
|
|
970
|
+
"engines": {
|
|
971
|
+
"node": ">=14.0.0"
|
|
972
|
+
},
|
|
973
|
+
"funding": {
|
|
974
|
+
"type": "opencollective",
|
|
975
|
+
"url": "https://opencollective.com/mui-org"
|
|
976
|
+
},
|
|
977
|
+
"peerDependencies": {
|
|
978
|
+
"@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
979
|
+
"react": "^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
980
|
+
},
|
|
981
|
+
"peerDependenciesMeta": {
|
|
982
|
+
"@types/react": {
|
|
983
|
+
"optional": true
|
|
984
|
+
}
|
|
985
|
+
}
|
|
986
|
+
},
|
|
987
|
+
"node_modules/@polka/url": {
|
|
988
|
+
"version": "1.0.0-next.29",
|
|
989
|
+
"resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.29.tgz",
|
|
990
|
+
"integrity": "sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==",
|
|
991
|
+
"dev": true,
|
|
992
|
+
"license": "MIT"
|
|
993
|
+
},
|
|
994
|
+
"node_modules/@popperjs/core": {
|
|
995
|
+
"version": "2.11.8",
|
|
996
|
+
"resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz",
|
|
997
|
+
"integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==",
|
|
998
|
+
"license": "MIT",
|
|
999
|
+
"funding": {
|
|
1000
|
+
"type": "opencollective",
|
|
1001
|
+
"url": "https://opencollective.com/popperjs"
|
|
1002
|
+
}
|
|
1003
|
+
},
|
|
1004
|
+
"node_modules/@rollup/rollup-android-arm-eabi": {
|
|
1005
|
+
"version": "4.52.2",
|
|
1006
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.52.2.tgz",
|
|
1007
|
+
"integrity": "sha512-o3pcKzJgSGt4d74lSZ+OCnHwkKBeAbFDmbEm5gg70eA8VkyCuC/zV9TwBnmw6VjDlRdF4Pshfb+WE9E6XY1PoQ==",
|
|
1008
|
+
"cpu": [
|
|
1009
|
+
"arm"
|
|
1010
|
+
],
|
|
1011
|
+
"dev": true,
|
|
1012
|
+
"license": "MIT",
|
|
1013
|
+
"optional": true,
|
|
1014
|
+
"os": [
|
|
1015
|
+
"android"
|
|
1016
|
+
]
|
|
1017
|
+
},
|
|
1018
|
+
"node_modules/@rollup/rollup-android-arm64": {
|
|
1019
|
+
"version": "4.52.2",
|
|
1020
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.52.2.tgz",
|
|
1021
|
+
"integrity": "sha512-cqFSWO5tX2vhC9hJTK8WAiPIm4Q8q/cU8j2HQA0L3E1uXvBYbOZMhE2oFL8n2pKB5sOCHY6bBuHaRwG7TkfJyw==",
|
|
1022
|
+
"cpu": [
|
|
1023
|
+
"arm64"
|
|
1024
|
+
],
|
|
1025
|
+
"dev": true,
|
|
1026
|
+
"license": "MIT",
|
|
1027
|
+
"optional": true,
|
|
1028
|
+
"os": [
|
|
1029
|
+
"android"
|
|
1030
|
+
]
|
|
1031
|
+
},
|
|
1032
|
+
"node_modules/@rollup/rollup-darwin-arm64": {
|
|
1033
|
+
"version": "4.52.2",
|
|
1034
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.52.2.tgz",
|
|
1035
|
+
"integrity": "sha512-vngduywkkv8Fkh3wIZf5nFPXzWsNsVu1kvtLETWxTFf/5opZmflgVSeLgdHR56RQh71xhPhWoOkEBvbehwTlVA==",
|
|
1036
|
+
"cpu": [
|
|
1037
|
+
"arm64"
|
|
1038
|
+
],
|
|
1039
|
+
"dev": true,
|
|
1040
|
+
"license": "MIT",
|
|
1041
|
+
"optional": true,
|
|
1042
|
+
"os": [
|
|
1043
|
+
"darwin"
|
|
1044
|
+
]
|
|
1045
|
+
},
|
|
1046
|
+
"node_modules/@rollup/rollup-darwin-x64": {
|
|
1047
|
+
"version": "4.52.2",
|
|
1048
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.52.2.tgz",
|
|
1049
|
+
"integrity": "sha512-h11KikYrUCYTrDj6h939hhMNlqU2fo/X4NB0OZcys3fya49o1hmFaczAiJWVAFgrM1NCP6RrO7lQKeVYSKBPSQ==",
|
|
1050
|
+
"cpu": [
|
|
1051
|
+
"x64"
|
|
1052
|
+
],
|
|
1053
|
+
"dev": true,
|
|
1054
|
+
"license": "MIT",
|
|
1055
|
+
"optional": true,
|
|
1056
|
+
"os": [
|
|
1057
|
+
"darwin"
|
|
1058
|
+
]
|
|
1059
|
+
},
|
|
1060
|
+
"node_modules/@rollup/rollup-freebsd-arm64": {
|
|
1061
|
+
"version": "4.52.2",
|
|
1062
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.52.2.tgz",
|
|
1063
|
+
"integrity": "sha512-/eg4CI61ZUkLXxMHyVlmlGrSQZ34xqWlZNW43IAU4RmdzWEx0mQJ2mN/Cx4IHLVZFL6UBGAh+/GXhgvGb+nVxw==",
|
|
1064
|
+
"cpu": [
|
|
1065
|
+
"arm64"
|
|
1066
|
+
],
|
|
1067
|
+
"dev": true,
|
|
1068
|
+
"license": "MIT",
|
|
1069
|
+
"optional": true,
|
|
1070
|
+
"os": [
|
|
1071
|
+
"freebsd"
|
|
1072
|
+
]
|
|
1073
|
+
},
|
|
1074
|
+
"node_modules/@rollup/rollup-freebsd-x64": {
|
|
1075
|
+
"version": "4.52.2",
|
|
1076
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.52.2.tgz",
|
|
1077
|
+
"integrity": "sha512-QOWgFH5X9+p+S1NAfOqc0z8qEpJIoUHf7OWjNUGOeW18Mx22lAUOiA9b6r2/vpzLdfxi/f+VWsYjUOMCcYh0Ng==",
|
|
1078
|
+
"cpu": [
|
|
1079
|
+
"x64"
|
|
1080
|
+
],
|
|
1081
|
+
"dev": true,
|
|
1082
|
+
"license": "MIT",
|
|
1083
|
+
"optional": true,
|
|
1084
|
+
"os": [
|
|
1085
|
+
"freebsd"
|
|
1086
|
+
]
|
|
1087
|
+
},
|
|
1088
|
+
"node_modules/@rollup/rollup-linux-arm-gnueabihf": {
|
|
1089
|
+
"version": "4.52.2",
|
|
1090
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.52.2.tgz",
|
|
1091
|
+
"integrity": "sha512-kDWSPafToDd8LcBYd1t5jw7bD5Ojcu12S3uT372e5HKPzQt532vW+rGFFOaiR0opxePyUkHrwz8iWYEyH1IIQA==",
|
|
1092
|
+
"cpu": [
|
|
1093
|
+
"arm"
|
|
1094
|
+
],
|
|
1095
|
+
"dev": true,
|
|
1096
|
+
"license": "MIT",
|
|
1097
|
+
"optional": true,
|
|
1098
|
+
"os": [
|
|
1099
|
+
"linux"
|
|
1100
|
+
]
|
|
1101
|
+
},
|
|
1102
|
+
"node_modules/@rollup/rollup-linux-arm-musleabihf": {
|
|
1103
|
+
"version": "4.52.2",
|
|
1104
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.52.2.tgz",
|
|
1105
|
+
"integrity": "sha512-gKm7Mk9wCv6/rkzwCiUC4KnevYhlf8ztBrDRT9g/u//1fZLapSRc+eDZj2Eu2wpJ+0RzUKgtNijnVIB4ZxyL+w==",
|
|
1106
|
+
"cpu": [
|
|
1107
|
+
"arm"
|
|
1108
|
+
],
|
|
1109
|
+
"dev": true,
|
|
1110
|
+
"license": "MIT",
|
|
1111
|
+
"optional": true,
|
|
1112
|
+
"os": [
|
|
1113
|
+
"linux"
|
|
1114
|
+
]
|
|
1115
|
+
},
|
|
1116
|
+
"node_modules/@rollup/rollup-linux-arm64-gnu": {
|
|
1117
|
+
"version": "4.52.2",
|
|
1118
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.52.2.tgz",
|
|
1119
|
+
"integrity": "sha512-66lA8vnj5mB/rtDNwPgrrKUOtCLVQypkyDa2gMfOefXK6rcZAxKLO9Fy3GkW8VkPnENv9hBkNOFfGLf6rNKGUg==",
|
|
1120
|
+
"cpu": [
|
|
1121
|
+
"arm64"
|
|
1122
|
+
],
|
|
1123
|
+
"dev": true,
|
|
1124
|
+
"license": "MIT",
|
|
1125
|
+
"optional": true,
|
|
1126
|
+
"os": [
|
|
1127
|
+
"linux"
|
|
1128
|
+
]
|
|
1129
|
+
},
|
|
1130
|
+
"node_modules/@rollup/rollup-linux-arm64-musl": {
|
|
1131
|
+
"version": "4.52.2",
|
|
1132
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.52.2.tgz",
|
|
1133
|
+
"integrity": "sha512-s+OPucLNdJHvuZHuIz2WwncJ+SfWHFEmlC5nKMUgAelUeBUnlB4wt7rXWiyG4Zn07uY2Dd+SGyVa9oyLkVGOjA==",
|
|
1134
|
+
"cpu": [
|
|
1135
|
+
"arm64"
|
|
1136
|
+
],
|
|
1137
|
+
"dev": true,
|
|
1138
|
+
"license": "MIT",
|
|
1139
|
+
"optional": true,
|
|
1140
|
+
"os": [
|
|
1141
|
+
"linux"
|
|
1142
|
+
]
|
|
1143
|
+
},
|
|
1144
|
+
"node_modules/@rollup/rollup-linux-loong64-gnu": {
|
|
1145
|
+
"version": "4.52.2",
|
|
1146
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.52.2.tgz",
|
|
1147
|
+
"integrity": "sha512-8wTRM3+gVMDLLDdaT6tKmOE3lJyRy9NpJUS/ZRWmLCmOPIJhVyXwjBo+XbrrwtV33Em1/eCTd5TuGJm4+DmYjw==",
|
|
1148
|
+
"cpu": [
|
|
1149
|
+
"loong64"
|
|
1150
|
+
],
|
|
1151
|
+
"dev": true,
|
|
1152
|
+
"license": "MIT",
|
|
1153
|
+
"optional": true,
|
|
1154
|
+
"os": [
|
|
1155
|
+
"linux"
|
|
1156
|
+
]
|
|
1157
|
+
},
|
|
1158
|
+
"node_modules/@rollup/rollup-linux-ppc64-gnu": {
|
|
1159
|
+
"version": "4.52.2",
|
|
1160
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.52.2.tgz",
|
|
1161
|
+
"integrity": "sha512-6yqEfgJ1anIeuP2P/zhtfBlDpXUb80t8DpbYwXQ3bQd95JMvUaqiX+fKqYqUwZXqdJDd8xdilNtsHM2N0cFm6A==",
|
|
1162
|
+
"cpu": [
|
|
1163
|
+
"ppc64"
|
|
1164
|
+
],
|
|
1165
|
+
"dev": true,
|
|
1166
|
+
"license": "MIT",
|
|
1167
|
+
"optional": true,
|
|
1168
|
+
"os": [
|
|
1169
|
+
"linux"
|
|
1170
|
+
]
|
|
1171
|
+
},
|
|
1172
|
+
"node_modules/@rollup/rollup-linux-riscv64-gnu": {
|
|
1173
|
+
"version": "4.52.2",
|
|
1174
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.52.2.tgz",
|
|
1175
|
+
"integrity": "sha512-sshYUiYVSEI2B6dp4jMncwxbrUqRdNApF2c3bhtLAU0qA8Lrri0p0NauOsTWh3yCCCDyBOjESHMExonp7Nzc0w==",
|
|
1176
|
+
"cpu": [
|
|
1177
|
+
"riscv64"
|
|
1178
|
+
],
|
|
1179
|
+
"dev": true,
|
|
1180
|
+
"license": "MIT",
|
|
1181
|
+
"optional": true,
|
|
1182
|
+
"os": [
|
|
1183
|
+
"linux"
|
|
1184
|
+
]
|
|
1185
|
+
},
|
|
1186
|
+
"node_modules/@rollup/rollup-linux-riscv64-musl": {
|
|
1187
|
+
"version": "4.52.2",
|
|
1188
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.52.2.tgz",
|
|
1189
|
+
"integrity": "sha512-duBLgd+3pqC4MMwBrKkFxaZerUxZcYApQVC5SdbF5/e/589GwVvlRUnyqMFbM8iUSb1BaoX/3fRL7hB9m2Pj8Q==",
|
|
1190
|
+
"cpu": [
|
|
1191
|
+
"riscv64"
|
|
1192
|
+
],
|
|
1193
|
+
"dev": true,
|
|
1194
|
+
"license": "MIT",
|
|
1195
|
+
"optional": true,
|
|
1196
|
+
"os": [
|
|
1197
|
+
"linux"
|
|
1198
|
+
]
|
|
1199
|
+
},
|
|
1200
|
+
"node_modules/@rollup/rollup-linux-s390x-gnu": {
|
|
1201
|
+
"version": "4.52.2",
|
|
1202
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.52.2.tgz",
|
|
1203
|
+
"integrity": "sha512-tzhYJJidDUVGMgVyE+PmxENPHlvvqm1KILjjZhB8/xHYqAGeizh3GBGf9u6WdJpZrz1aCpIIHG0LgJgH9rVjHQ==",
|
|
1204
|
+
"cpu": [
|
|
1205
|
+
"s390x"
|
|
1206
|
+
],
|
|
1207
|
+
"dev": true,
|
|
1208
|
+
"license": "MIT",
|
|
1209
|
+
"optional": true,
|
|
1210
|
+
"os": [
|
|
1211
|
+
"linux"
|
|
1212
|
+
]
|
|
1213
|
+
},
|
|
1214
|
+
"node_modules/@rollup/rollup-linux-x64-gnu": {
|
|
1215
|
+
"version": "4.52.2",
|
|
1216
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.52.2.tgz",
|
|
1217
|
+
"integrity": "sha512-opH8GSUuVcCSSyHHcl5hELrmnk4waZoVpgn/4FDao9iyE4WpQhyWJ5ryl5M3ocp4qkRuHfyXnGqg8M9oKCEKRA==",
|
|
1218
|
+
"cpu": [
|
|
1219
|
+
"x64"
|
|
1220
|
+
],
|
|
1221
|
+
"dev": true,
|
|
1222
|
+
"license": "MIT",
|
|
1223
|
+
"optional": true,
|
|
1224
|
+
"os": [
|
|
1225
|
+
"linux"
|
|
1226
|
+
]
|
|
1227
|
+
},
|
|
1228
|
+
"node_modules/@rollup/rollup-linux-x64-musl": {
|
|
1229
|
+
"version": "4.52.2",
|
|
1230
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.52.2.tgz",
|
|
1231
|
+
"integrity": "sha512-LSeBHnGli1pPKVJ79ZVJgeZWWZXkEe/5o8kcn23M8eMKCUANejchJbF/JqzM4RRjOJfNRhKJk8FuqL1GKjF5oQ==",
|
|
1232
|
+
"cpu": [
|
|
1233
|
+
"x64"
|
|
1234
|
+
],
|
|
1235
|
+
"dev": true,
|
|
1236
|
+
"license": "MIT",
|
|
1237
|
+
"optional": true,
|
|
1238
|
+
"os": [
|
|
1239
|
+
"linux"
|
|
1240
|
+
]
|
|
1241
|
+
},
|
|
1242
|
+
"node_modules/@rollup/rollup-openharmony-arm64": {
|
|
1243
|
+
"version": "4.52.2",
|
|
1244
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.52.2.tgz",
|
|
1245
|
+
"integrity": "sha512-uPj7MQ6/s+/GOpolavm6BPo+6CbhbKYyZHUDvZ/SmJM7pfDBgdGisFX3bY/CBDMg2ZO4utfhlApkSfZ92yXw7Q==",
|
|
1246
|
+
"cpu": [
|
|
1247
|
+
"arm64"
|
|
1248
|
+
],
|
|
1249
|
+
"dev": true,
|
|
1250
|
+
"license": "MIT",
|
|
1251
|
+
"optional": true,
|
|
1252
|
+
"os": [
|
|
1253
|
+
"openharmony"
|
|
1254
|
+
]
|
|
1255
|
+
},
|
|
1256
|
+
"node_modules/@rollup/rollup-win32-arm64-msvc": {
|
|
1257
|
+
"version": "4.52.2",
|
|
1258
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.52.2.tgz",
|
|
1259
|
+
"integrity": "sha512-Z9MUCrSgIaUeeHAiNkm3cQyst2UhzjPraR3gYYfOjAuZI7tcFRTOD+4cHLPoS/3qinchth+V56vtqz1Tv+6KPA==",
|
|
1260
|
+
"cpu": [
|
|
1261
|
+
"arm64"
|
|
1262
|
+
],
|
|
1263
|
+
"dev": true,
|
|
1264
|
+
"license": "MIT",
|
|
1265
|
+
"optional": true,
|
|
1266
|
+
"os": [
|
|
1267
|
+
"win32"
|
|
1268
|
+
]
|
|
1269
|
+
},
|
|
1270
|
+
"node_modules/@rollup/rollup-win32-ia32-msvc": {
|
|
1271
|
+
"version": "4.52.2",
|
|
1272
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.52.2.tgz",
|
|
1273
|
+
"integrity": "sha512-+GnYBmpjldD3XQd+HMejo+0gJGwYIOfFeoBQv32xF/RUIvccUz20/V6Otdv+57NE70D5pa8W/jVGDoGq0oON4A==",
|
|
1274
|
+
"cpu": [
|
|
1275
|
+
"ia32"
|
|
1276
|
+
],
|
|
1277
|
+
"dev": true,
|
|
1278
|
+
"license": "MIT",
|
|
1279
|
+
"optional": true,
|
|
1280
|
+
"os": [
|
|
1281
|
+
"win32"
|
|
1282
|
+
]
|
|
1283
|
+
},
|
|
1284
|
+
"node_modules/@rollup/rollup-win32-x64-gnu": {
|
|
1285
|
+
"version": "4.52.2",
|
|
1286
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.52.2.tgz",
|
|
1287
|
+
"integrity": "sha512-ApXFKluSB6kDQkAqZOKXBjiaqdF1BlKi+/eqnYe9Ee7U2K3pUDKsIyr8EYm/QDHTJIM+4X+lI0gJc3TTRhd+dA==",
|
|
1288
|
+
"cpu": [
|
|
1289
|
+
"x64"
|
|
1290
|
+
],
|
|
1291
|
+
"dev": true,
|
|
1292
|
+
"license": "MIT",
|
|
1293
|
+
"optional": true,
|
|
1294
|
+
"os": [
|
|
1295
|
+
"win32"
|
|
1296
|
+
]
|
|
1297
|
+
},
|
|
1298
|
+
"node_modules/@rollup/rollup-win32-x64-msvc": {
|
|
1299
|
+
"version": "4.52.2",
|
|
1300
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.52.2.tgz",
|
|
1301
|
+
"integrity": "sha512-ARz+Bs8kY6FtitYM96PqPEVvPXqEZmPZsSkXvyX19YzDqkCaIlhCieLLMI5hxO9SRZ2XtCtm8wxhy0iJ2jxNfw==",
|
|
1302
|
+
"cpu": [
|
|
1303
|
+
"x64"
|
|
1304
|
+
],
|
|
1305
|
+
"dev": true,
|
|
1306
|
+
"license": "MIT",
|
|
1307
|
+
"optional": true,
|
|
1308
|
+
"os": [
|
|
1309
|
+
"win32"
|
|
1310
|
+
]
|
|
1311
|
+
},
|
|
1312
|
+
"node_modules/@standard-schema/spec": {
|
|
1313
|
+
"version": "1.0.0",
|
|
1314
|
+
"resolved": "https://registry.npmjs.org/@standard-schema/spec/-/spec-1.0.0.tgz",
|
|
1315
|
+
"integrity": "sha512-m2bOd0f2RT9k8QJx1JN85cZYyH1RqFBdlwtkSlf4tBDYLCiiZnv1fIIwacK6cqwXavOydf0NPToMQgpKq+dVlA==",
|
|
1316
|
+
"dev": true,
|
|
1317
|
+
"license": "MIT"
|
|
1318
|
+
},
|
|
1319
|
+
"node_modules/@sveltejs/acorn-typescript": {
|
|
1320
|
+
"version": "1.0.5",
|
|
1321
|
+
"resolved": "https://registry.npmjs.org/@sveltejs/acorn-typescript/-/acorn-typescript-1.0.5.tgz",
|
|
1322
|
+
"integrity": "sha512-IwQk4yfwLdibDlrXVE04jTZYlLnwsTT2PIOQQGNLWfjavGifnk1JD1LcZjZaBTRcxZu2FfPfNLOE04DSu9lqtQ==",
|
|
1323
|
+
"dev": true,
|
|
1324
|
+
"license": "MIT",
|
|
1325
|
+
"peerDependencies": {
|
|
1326
|
+
"acorn": "^8.9.0"
|
|
1327
|
+
}
|
|
1328
|
+
},
|
|
1329
|
+
"node_modules/@sveltejs/adapter-auto": {
|
|
1330
|
+
"version": "3.3.1",
|
|
1331
|
+
"resolved": "https://registry.npmjs.org/@sveltejs/adapter-auto/-/adapter-auto-3.3.1.tgz",
|
|
1332
|
+
"integrity": "sha512-5Sc7WAxYdL6q9j/+D0jJKjGREGlfIevDyHSQ2eNETHcB1TKlQWHcAo8AS8H1QdjNvSXpvOwNjykDUHPEAyGgdQ==",
|
|
1333
|
+
"dev": true,
|
|
1334
|
+
"license": "MIT",
|
|
1335
|
+
"dependencies": {
|
|
1336
|
+
"import-meta-resolve": "^4.1.0"
|
|
1337
|
+
},
|
|
1338
|
+
"peerDependencies": {
|
|
1339
|
+
"@sveltejs/kit": "^2.0.0"
|
|
1340
|
+
}
|
|
1341
|
+
},
|
|
1342
|
+
"node_modules/@sveltejs/kit": {
|
|
1343
|
+
"version": "2.43.5",
|
|
1344
|
+
"resolved": "https://registry.npmjs.org/@sveltejs/kit/-/kit-2.43.5.tgz",
|
|
1345
|
+
"integrity": "sha512-44Mm5csR4mesKx2Eyhtk8UVrLJ4c04BT2wMTfYGKJMOkUqpHP5KLL2DPV0hXUA4t4+T3ZYe0aBygd42lVYv2cA==",
|
|
1346
|
+
"dev": true,
|
|
1347
|
+
"license": "MIT",
|
|
1348
|
+
"dependencies": {
|
|
1349
|
+
"@standard-schema/spec": "^1.0.0",
|
|
1350
|
+
"@sveltejs/acorn-typescript": "^1.0.5",
|
|
1351
|
+
"@types/cookie": "^0.6.0",
|
|
1352
|
+
"acorn": "^8.14.1",
|
|
1353
|
+
"cookie": "^0.6.0",
|
|
1354
|
+
"devalue": "^5.3.2",
|
|
1355
|
+
"esm-env": "^1.2.2",
|
|
1356
|
+
"kleur": "^4.1.5",
|
|
1357
|
+
"magic-string": "^0.30.5",
|
|
1358
|
+
"mrmime": "^2.0.0",
|
|
1359
|
+
"sade": "^1.8.1",
|
|
1360
|
+
"set-cookie-parser": "^2.6.0",
|
|
1361
|
+
"sirv": "^3.0.0"
|
|
1362
|
+
},
|
|
1363
|
+
"bin": {
|
|
1364
|
+
"svelte-kit": "svelte-kit.js"
|
|
1365
|
+
},
|
|
1366
|
+
"engines": {
|
|
1367
|
+
"node": ">=18.13"
|
|
1368
|
+
},
|
|
1369
|
+
"peerDependencies": {
|
|
1370
|
+
"@opentelemetry/api": "^1.0.0",
|
|
1371
|
+
"@sveltejs/vite-plugin-svelte": "^3.0.0 || ^4.0.0-next.1 || ^5.0.0 || ^6.0.0-next.0",
|
|
1372
|
+
"svelte": "^4.0.0 || ^5.0.0-next.0",
|
|
1373
|
+
"vite": "^5.0.3 || ^6.0.0 || ^7.0.0-beta.0"
|
|
1374
|
+
},
|
|
1375
|
+
"peerDependenciesMeta": {
|
|
1376
|
+
"@opentelemetry/api": {
|
|
1377
|
+
"optional": true
|
|
1378
|
+
}
|
|
1379
|
+
}
|
|
1380
|
+
},
|
|
1381
|
+
"node_modules/@sveltejs/vite-plugin-svelte": {
|
|
1382
|
+
"version": "3.1.2",
|
|
1383
|
+
"resolved": "https://registry.npmjs.org/@sveltejs/vite-plugin-svelte/-/vite-plugin-svelte-3.1.2.tgz",
|
|
1384
|
+
"integrity": "sha512-Txsm1tJvtiYeLUVRNqxZGKR/mI+CzuIQuc2gn+YCs9rMTowpNZ2Nqt53JdL8KF9bLhAf2ruR/dr9eZCwdTriRA==",
|
|
1385
|
+
"dev": true,
|
|
1386
|
+
"license": "MIT",
|
|
1387
|
+
"dependencies": {
|
|
1388
|
+
"@sveltejs/vite-plugin-svelte-inspector": "^2.1.0",
|
|
1389
|
+
"debug": "^4.3.4",
|
|
1390
|
+
"deepmerge": "^4.3.1",
|
|
1391
|
+
"kleur": "^4.1.5",
|
|
1392
|
+
"magic-string": "^0.30.10",
|
|
1393
|
+
"svelte-hmr": "^0.16.0",
|
|
1394
|
+
"vitefu": "^0.2.5"
|
|
1395
|
+
},
|
|
1396
|
+
"engines": {
|
|
1397
|
+
"node": "^18.0.0 || >=20"
|
|
1398
|
+
},
|
|
1399
|
+
"peerDependencies": {
|
|
1400
|
+
"svelte": "^4.0.0 || ^5.0.0-next.0",
|
|
1401
|
+
"vite": "^5.0.0"
|
|
1402
|
+
}
|
|
1403
|
+
},
|
|
1404
|
+
"node_modules/@sveltejs/vite-plugin-svelte-inspector": {
|
|
1405
|
+
"version": "2.1.0",
|
|
1406
|
+
"resolved": "https://registry.npmjs.org/@sveltejs/vite-plugin-svelte-inspector/-/vite-plugin-svelte-inspector-2.1.0.tgz",
|
|
1407
|
+
"integrity": "sha512-9QX28IymvBlSCqsCll5t0kQVxipsfhFFL+L2t3nTWfXnddYwxBuAEtTtlaVQpRz9c37BhJjltSeY4AJSC03SSg==",
|
|
1408
|
+
"dev": true,
|
|
1409
|
+
"license": "MIT",
|
|
1410
|
+
"dependencies": {
|
|
1411
|
+
"debug": "^4.3.4"
|
|
1412
|
+
},
|
|
1413
|
+
"engines": {
|
|
1414
|
+
"node": "^18.0.0 || >=20"
|
|
1415
|
+
},
|
|
1416
|
+
"peerDependencies": {
|
|
1417
|
+
"@sveltejs/vite-plugin-svelte": "^3.0.0",
|
|
1418
|
+
"svelte": "^4.0.0 || ^5.0.0-next.0",
|
|
1419
|
+
"vite": "^5.0.0"
|
|
1420
|
+
}
|
|
1421
|
+
},
|
|
1422
|
+
"node_modules/@types/cookie": {
|
|
1423
|
+
"version": "0.6.0",
|
|
1424
|
+
"resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.6.0.tgz",
|
|
1425
|
+
"integrity": "sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==",
|
|
1426
|
+
"dev": true,
|
|
1427
|
+
"license": "MIT"
|
|
1428
|
+
},
|
|
1429
|
+
"node_modules/@types/estree": {
|
|
1430
|
+
"version": "1.0.8",
|
|
1431
|
+
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
|
|
1432
|
+
"integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
|
|
1433
|
+
"dev": true,
|
|
1434
|
+
"license": "MIT"
|
|
1435
|
+
},
|
|
1436
|
+
"node_modules/@types/parse-json": {
|
|
1437
|
+
"version": "4.0.2",
|
|
1438
|
+
"resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz",
|
|
1439
|
+
"integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==",
|
|
1440
|
+
"license": "MIT"
|
|
1441
|
+
},
|
|
1442
|
+
"node_modules/@types/prop-types": {
|
|
1443
|
+
"version": "15.7.15",
|
|
1444
|
+
"resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.15.tgz",
|
|
1445
|
+
"integrity": "sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==",
|
|
1446
|
+
"license": "MIT"
|
|
1447
|
+
},
|
|
1448
|
+
"node_modules/@types/pug": {
|
|
1449
|
+
"version": "2.0.10",
|
|
1450
|
+
"resolved": "https://registry.npmjs.org/@types/pug/-/pug-2.0.10.tgz",
|
|
1451
|
+
"integrity": "sha512-Sk/uYFOBAB7mb74XcpizmH0KOR2Pv3D2Hmrh1Dmy5BmK3MpdSa5kqZcg6EKBdklU0bFXX9gCfzvpnyUehrPIuA==",
|
|
1452
|
+
"dev": true,
|
|
1453
|
+
"license": "MIT"
|
|
1454
|
+
},
|
|
1455
|
+
"node_modules/@types/react-transition-group": {
|
|
1456
|
+
"version": "4.4.12",
|
|
1457
|
+
"resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.12.tgz",
|
|
1458
|
+
"integrity": "sha512-8TV6R3h2j7a91c+1DXdJi3Syo69zzIZbz7Lg5tORM5LEJG7X/E6a1V3drRyBRZq7/utz7A+c4OgYLiLcYGHG6w==",
|
|
1459
|
+
"license": "MIT",
|
|
1460
|
+
"peerDependencies": {
|
|
1461
|
+
"@types/react": "*"
|
|
1462
|
+
}
|
|
1463
|
+
},
|
|
1464
|
+
"node_modules/acorn": {
|
|
1465
|
+
"version": "8.15.0",
|
|
1466
|
+
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz",
|
|
1467
|
+
"integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==",
|
|
1468
|
+
"dev": true,
|
|
1469
|
+
"license": "MIT",
|
|
1470
|
+
"bin": {
|
|
1471
|
+
"acorn": "bin/acorn"
|
|
1472
|
+
},
|
|
1473
|
+
"engines": {
|
|
1474
|
+
"node": ">=0.4.0"
|
|
1475
|
+
}
|
|
1476
|
+
},
|
|
1477
|
+
"node_modules/anymatch": {
|
|
1478
|
+
"version": "3.1.3",
|
|
1479
|
+
"resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
|
|
1480
|
+
"integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
|
|
1481
|
+
"dev": true,
|
|
1482
|
+
"license": "ISC",
|
|
1483
|
+
"dependencies": {
|
|
1484
|
+
"normalize-path": "^3.0.0",
|
|
1485
|
+
"picomatch": "^2.0.4"
|
|
1486
|
+
},
|
|
1487
|
+
"engines": {
|
|
1488
|
+
"node": ">= 8"
|
|
1489
|
+
}
|
|
1490
|
+
},
|
|
1491
|
+
"node_modules/aria-query": {
|
|
1492
|
+
"version": "5.3.2",
|
|
1493
|
+
"resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.2.tgz",
|
|
1494
|
+
"integrity": "sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==",
|
|
1495
|
+
"dev": true,
|
|
1496
|
+
"license": "Apache-2.0",
|
|
1497
|
+
"engines": {
|
|
1498
|
+
"node": ">= 0.4"
|
|
1499
|
+
}
|
|
1500
|
+
},
|
|
1501
|
+
"node_modules/axobject-query": {
|
|
1502
|
+
"version": "4.1.0",
|
|
1503
|
+
"resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.1.0.tgz",
|
|
1504
|
+
"integrity": "sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==",
|
|
1505
|
+
"dev": true,
|
|
1506
|
+
"license": "Apache-2.0",
|
|
1507
|
+
"engines": {
|
|
1508
|
+
"node": ">= 0.4"
|
|
1509
|
+
}
|
|
1510
|
+
},
|
|
1511
|
+
"node_modules/babel-plugin-macros": {
|
|
1512
|
+
"version": "3.1.0",
|
|
1513
|
+
"resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz",
|
|
1514
|
+
"integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==",
|
|
1515
|
+
"license": "MIT",
|
|
1516
|
+
"dependencies": {
|
|
1517
|
+
"@babel/runtime": "^7.12.5",
|
|
1518
|
+
"cosmiconfig": "^7.0.0",
|
|
1519
|
+
"resolve": "^1.19.0"
|
|
1520
|
+
},
|
|
1521
|
+
"engines": {
|
|
1522
|
+
"node": ">=10",
|
|
1523
|
+
"npm": ">=6"
|
|
1524
|
+
}
|
|
1525
|
+
},
|
|
1526
|
+
"node_modules/balanced-match": {
|
|
1527
|
+
"version": "1.0.2",
|
|
1528
|
+
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
|
|
1529
|
+
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
|
|
1530
|
+
"dev": true,
|
|
1531
|
+
"license": "MIT"
|
|
1532
|
+
},
|
|
1533
|
+
"node_modules/binary-extensions": {
|
|
1534
|
+
"version": "2.3.0",
|
|
1535
|
+
"resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz",
|
|
1536
|
+
"integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==",
|
|
1537
|
+
"dev": true,
|
|
1538
|
+
"license": "MIT",
|
|
1539
|
+
"engines": {
|
|
1540
|
+
"node": ">=8"
|
|
1541
|
+
},
|
|
1542
|
+
"funding": {
|
|
1543
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1544
|
+
}
|
|
1545
|
+
},
|
|
1546
|
+
"node_modules/brace-expansion": {
|
|
1547
|
+
"version": "1.1.12",
|
|
1548
|
+
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz",
|
|
1549
|
+
"integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==",
|
|
1550
|
+
"dev": true,
|
|
1551
|
+
"license": "MIT",
|
|
1552
|
+
"dependencies": {
|
|
1553
|
+
"balanced-match": "^1.0.0",
|
|
1554
|
+
"concat-map": "0.0.1"
|
|
1555
|
+
}
|
|
1556
|
+
},
|
|
1557
|
+
"node_modules/braces": {
|
|
1558
|
+
"version": "3.0.3",
|
|
1559
|
+
"resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
|
|
1560
|
+
"integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
|
|
1561
|
+
"dev": true,
|
|
1562
|
+
"license": "MIT",
|
|
1563
|
+
"dependencies": {
|
|
1564
|
+
"fill-range": "^7.1.1"
|
|
1565
|
+
},
|
|
1566
|
+
"engines": {
|
|
1567
|
+
"node": ">=8"
|
|
1568
|
+
}
|
|
1569
|
+
},
|
|
1570
|
+
"node_modules/buffer-crc32": {
|
|
1571
|
+
"version": "1.0.0",
|
|
1572
|
+
"resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-1.0.0.tgz",
|
|
1573
|
+
"integrity": "sha512-Db1SbgBS/fg/392AblrMJk97KggmvYhr4pB5ZIMTWtaivCPMWLkmb7m21cJvpvgK+J3nsU2CmmixNBZx4vFj/w==",
|
|
1574
|
+
"dev": true,
|
|
1575
|
+
"license": "MIT",
|
|
1576
|
+
"engines": {
|
|
1577
|
+
"node": ">=8.0.0"
|
|
1578
|
+
}
|
|
1579
|
+
},
|
|
1580
|
+
"node_modules/callsites": {
|
|
1581
|
+
"version": "3.1.0",
|
|
1582
|
+
"resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
|
|
1583
|
+
"integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
|
|
1584
|
+
"license": "MIT",
|
|
1585
|
+
"engines": {
|
|
1586
|
+
"node": ">=6"
|
|
1587
|
+
}
|
|
1588
|
+
},
|
|
1589
|
+
"node_modules/chokidar": {
|
|
1590
|
+
"version": "3.6.0",
|
|
1591
|
+
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz",
|
|
1592
|
+
"integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
|
|
1593
|
+
"dev": true,
|
|
1594
|
+
"license": "MIT",
|
|
1595
|
+
"dependencies": {
|
|
1596
|
+
"anymatch": "~3.1.2",
|
|
1597
|
+
"braces": "~3.0.2",
|
|
1598
|
+
"glob-parent": "~5.1.2",
|
|
1599
|
+
"is-binary-path": "~2.1.0",
|
|
1600
|
+
"is-glob": "~4.0.1",
|
|
1601
|
+
"normalize-path": "~3.0.0",
|
|
1602
|
+
"readdirp": "~3.6.0"
|
|
1603
|
+
},
|
|
1604
|
+
"engines": {
|
|
1605
|
+
"node": ">= 8.10.0"
|
|
1606
|
+
},
|
|
1607
|
+
"funding": {
|
|
1608
|
+
"url": "https://paulmillr.com/funding/"
|
|
1609
|
+
},
|
|
1610
|
+
"optionalDependencies": {
|
|
1611
|
+
"fsevents": "~2.3.2"
|
|
1612
|
+
}
|
|
1613
|
+
},
|
|
1614
|
+
"node_modules/clsx": {
|
|
1615
|
+
"version": "2.1.1",
|
|
1616
|
+
"resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz",
|
|
1617
|
+
"integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==",
|
|
1618
|
+
"license": "MIT",
|
|
1619
|
+
"engines": {
|
|
1620
|
+
"node": ">=6"
|
|
1621
|
+
}
|
|
1622
|
+
},
|
|
1623
|
+
"node_modules/code-red": {
|
|
1624
|
+
"version": "1.0.4",
|
|
1625
|
+
"resolved": "https://registry.npmjs.org/code-red/-/code-red-1.0.4.tgz",
|
|
1626
|
+
"integrity": "sha512-7qJWqItLA8/VPVlKJlFXU+NBlo/qyfs39aJcuMT/2ere32ZqvF5OSxgdM5xOfJJ7O429gg2HM47y8v9P+9wrNw==",
|
|
1627
|
+
"dev": true,
|
|
1628
|
+
"license": "MIT",
|
|
1629
|
+
"dependencies": {
|
|
1630
|
+
"@jridgewell/sourcemap-codec": "^1.4.15",
|
|
1631
|
+
"@types/estree": "^1.0.1",
|
|
1632
|
+
"acorn": "^8.10.0",
|
|
1633
|
+
"estree-walker": "^3.0.3",
|
|
1634
|
+
"periscopic": "^3.1.0"
|
|
1635
|
+
}
|
|
1636
|
+
},
|
|
1637
|
+
"node_modules/concat-map": {
|
|
1638
|
+
"version": "0.0.1",
|
|
1639
|
+
"resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
|
|
1640
|
+
"integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
|
|
1641
|
+
"dev": true,
|
|
1642
|
+
"license": "MIT"
|
|
1643
|
+
},
|
|
1644
|
+
"node_modules/convert-source-map": {
|
|
1645
|
+
"version": "1.9.0",
|
|
1646
|
+
"resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz",
|
|
1647
|
+
"integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==",
|
|
1648
|
+
"license": "MIT"
|
|
1649
|
+
},
|
|
1650
|
+
"node_modules/cookie": {
|
|
1651
|
+
"version": "0.6.0",
|
|
1652
|
+
"resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz",
|
|
1653
|
+
"integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==",
|
|
1654
|
+
"dev": true,
|
|
1655
|
+
"license": "MIT",
|
|
1656
|
+
"engines": {
|
|
1657
|
+
"node": ">= 0.6"
|
|
1658
|
+
}
|
|
1659
|
+
},
|
|
1660
|
+
"node_modules/cosmiconfig": {
|
|
1661
|
+
"version": "7.1.0",
|
|
1662
|
+
"resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz",
|
|
1663
|
+
"integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==",
|
|
1664
|
+
"license": "MIT",
|
|
1665
|
+
"dependencies": {
|
|
1666
|
+
"@types/parse-json": "^4.0.0",
|
|
1667
|
+
"import-fresh": "^3.2.1",
|
|
1668
|
+
"parse-json": "^5.0.0",
|
|
1669
|
+
"path-type": "^4.0.0",
|
|
1670
|
+
"yaml": "^1.10.0"
|
|
1671
|
+
},
|
|
1672
|
+
"engines": {
|
|
1673
|
+
"node": ">=10"
|
|
1674
|
+
}
|
|
1675
|
+
},
|
|
1676
|
+
"node_modules/css-tree": {
|
|
1677
|
+
"version": "2.3.1",
|
|
1678
|
+
"resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz",
|
|
1679
|
+
"integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==",
|
|
1680
|
+
"dev": true,
|
|
1681
|
+
"license": "MIT",
|
|
1682
|
+
"dependencies": {
|
|
1683
|
+
"mdn-data": "2.0.30",
|
|
1684
|
+
"source-map-js": "^1.0.1"
|
|
1685
|
+
},
|
|
1686
|
+
"engines": {
|
|
1687
|
+
"node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0"
|
|
1688
|
+
}
|
|
1689
|
+
},
|
|
1690
|
+
"node_modules/csstype": {
|
|
1691
|
+
"version": "3.1.3",
|
|
1692
|
+
"resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz",
|
|
1693
|
+
"integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==",
|
|
1694
|
+
"license": "MIT"
|
|
1695
|
+
},
|
|
1696
|
+
"node_modules/debug": {
|
|
1697
|
+
"version": "4.4.3",
|
|
1698
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
|
|
1699
|
+
"integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
|
|
1700
|
+
"license": "MIT",
|
|
1701
|
+
"dependencies": {
|
|
1702
|
+
"ms": "^2.1.3"
|
|
1703
|
+
},
|
|
1704
|
+
"engines": {
|
|
1705
|
+
"node": ">=6.0"
|
|
1706
|
+
},
|
|
1707
|
+
"peerDependenciesMeta": {
|
|
1708
|
+
"supports-color": {
|
|
1709
|
+
"optional": true
|
|
1710
|
+
}
|
|
1711
|
+
}
|
|
1712
|
+
},
|
|
1713
|
+
"node_modules/deepmerge": {
|
|
1714
|
+
"version": "4.3.1",
|
|
1715
|
+
"resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz",
|
|
1716
|
+
"integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==",
|
|
1717
|
+
"dev": true,
|
|
1718
|
+
"license": "MIT",
|
|
1719
|
+
"engines": {
|
|
1720
|
+
"node": ">=0.10.0"
|
|
1721
|
+
}
|
|
1722
|
+
},
|
|
1723
|
+
"node_modules/detect-indent": {
|
|
1724
|
+
"version": "6.1.0",
|
|
1725
|
+
"resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz",
|
|
1726
|
+
"integrity": "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==",
|
|
1727
|
+
"dev": true,
|
|
1728
|
+
"license": "MIT",
|
|
1729
|
+
"engines": {
|
|
1730
|
+
"node": ">=8"
|
|
1731
|
+
}
|
|
1732
|
+
},
|
|
1733
|
+
"node_modules/devalue": {
|
|
1734
|
+
"version": "5.3.2",
|
|
1735
|
+
"resolved": "https://registry.npmjs.org/devalue/-/devalue-5.3.2.tgz",
|
|
1736
|
+
"integrity": "sha512-UDsjUbpQn9kvm68slnrs+mfxwFkIflOhkanmyabZ8zOYk8SMEIbJ3TK+88g70hSIeytu4y18f0z/hYHMTrXIWw==",
|
|
1737
|
+
"dev": true,
|
|
1738
|
+
"license": "MIT"
|
|
1739
|
+
},
|
|
1740
|
+
"node_modules/dexie": {
|
|
1741
|
+
"version": "4.0.0-alpha.1",
|
|
1742
|
+
"resolved": "https://registry.npmjs.org/dexie/-/dexie-4.0.0-alpha.1.tgz",
|
|
1743
|
+
"integrity": "sha512-/Ft0iWYFNL/U7tRWXLXKVoeMwvegNKIcXdi0Cbd9MYIan+56GY9wVHy9dDFBzxkZrsuKs48j7jEYE4T+T3PGjQ==",
|
|
1744
|
+
"license": "Apache-2.0",
|
|
1745
|
+
"engines": {
|
|
1746
|
+
"node": ">=6.0"
|
|
1747
|
+
}
|
|
1748
|
+
},
|
|
1749
|
+
"node_modules/dexie-cloud-addon": {
|
|
1750
|
+
"version": "4.0.0-beta.18",
|
|
1751
|
+
"resolved": "https://registry.npmjs.org/dexie-cloud-addon/-/dexie-cloud-addon-4.0.0-beta.18.tgz",
|
|
1752
|
+
"integrity": "sha512-s2kE+5d50HGxZEG6pCqXTgUZ5jw9W9mjiU892hJZm+wewxWBxcxsjvvS97XFcNht6lBpIMIrbnqA5wd+2ONoYA==",
|
|
1753
|
+
"license": "Apache-2.0",
|
|
1754
|
+
"dependencies": {
|
|
1755
|
+
"dexie-cloud-common": "^1.0.23"
|
|
1756
|
+
},
|
|
1757
|
+
"engines": {
|
|
1758
|
+
"node": ">=14"
|
|
1759
|
+
},
|
|
1760
|
+
"peerDependencies": {
|
|
1761
|
+
"dexie": "^4.0.0-alpha.1",
|
|
1762
|
+
"rxjs": "^7.x"
|
|
1763
|
+
}
|
|
1764
|
+
},
|
|
1765
|
+
"node_modules/dexie-cloud-common": {
|
|
1766
|
+
"version": "1.0.52",
|
|
1767
|
+
"resolved": "https://registry.npmjs.org/dexie-cloud-common/-/dexie-cloud-common-1.0.52.tgz",
|
|
1768
|
+
"integrity": "sha512-6ZSGZ4eYdWXfXnMvabvLySOlGl1s0UIt4B8V0j51aHvwUfEfcefJuBj41u51iTht7emIHjHNrz8GJmiean+3cQ==",
|
|
1769
|
+
"license": "Apache-2.0",
|
|
1770
|
+
"dependencies": {
|
|
1771
|
+
"lib0": "^0.2.97"
|
|
1772
|
+
}
|
|
1773
|
+
},
|
|
1774
|
+
"node_modules/idb-orm": {
|
|
1775
|
+
"name": "indexeddb-orm",
|
|
1776
|
+
"version": "0.0.1",
|
|
1777
|
+
"resolved": "git+ssh://git@github.com/radommaciej/indexed-db-orm.git#932d32f2451be2a9dc44a2a2bb7d9ae50fb1e6ea",
|
|
1778
|
+
"license": "MIT",
|
|
1779
|
+
"dependencies": {
|
|
1780
|
+
"dexie-cloud-addon": "4.0.0-beta.18",
|
|
1781
|
+
"loglevel": "^1.9.2",
|
|
1782
|
+
"zod": "^4.1.11"
|
|
1783
|
+
},
|
|
1784
|
+
"peerDependencies": {
|
|
1785
|
+
"dexie": "4.0.0-alpha.1"
|
|
1786
|
+
}
|
|
1787
|
+
},
|
|
1788
|
+
"node_modules/idb-orm/node_modules/zod": {
|
|
1789
|
+
"version": "4.1.11",
|
|
1790
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-4.1.11.tgz",
|
|
1791
|
+
"integrity": "sha512-WPsqwxITS2tzx1bzhIKsEs19ABD5vmCVa4xBo2tq/SrV4RNZtfws1EnCWQXM6yh8bD08a1idvkB5MZSBiZsjwg==",
|
|
1792
|
+
"license": "MIT",
|
|
1793
|
+
"funding": {
|
|
1794
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
1795
|
+
}
|
|
1796
|
+
},
|
|
1797
|
+
"node_modules/dom-helpers": {
|
|
1798
|
+
"version": "5.2.1",
|
|
1799
|
+
"resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz",
|
|
1800
|
+
"integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==",
|
|
1801
|
+
"license": "MIT",
|
|
1802
|
+
"dependencies": {
|
|
1803
|
+
"@babel/runtime": "^7.8.7",
|
|
1804
|
+
"csstype": "^3.0.2"
|
|
1805
|
+
}
|
|
1806
|
+
},
|
|
1807
|
+
"node_modules/error-ex": {
|
|
1808
|
+
"version": "1.3.4",
|
|
1809
|
+
"resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.4.tgz",
|
|
1810
|
+
"integrity": "sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==",
|
|
1811
|
+
"license": "MIT",
|
|
1812
|
+
"dependencies": {
|
|
1813
|
+
"is-arrayish": "^0.2.1"
|
|
1814
|
+
}
|
|
1815
|
+
},
|
|
1816
|
+
"node_modules/es6-promise": {
|
|
1817
|
+
"version": "3.3.1",
|
|
1818
|
+
"resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-3.3.1.tgz",
|
|
1819
|
+
"integrity": "sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg==",
|
|
1820
|
+
"dev": true,
|
|
1821
|
+
"license": "MIT"
|
|
1822
|
+
},
|
|
1823
|
+
"node_modules/esbuild": {
|
|
1824
|
+
"version": "0.21.5",
|
|
1825
|
+
"resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz",
|
|
1826
|
+
"integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==",
|
|
1827
|
+
"dev": true,
|
|
1828
|
+
"hasInstallScript": true,
|
|
1829
|
+
"license": "MIT",
|
|
1830
|
+
"bin": {
|
|
1831
|
+
"esbuild": "bin/esbuild"
|
|
1832
|
+
},
|
|
1833
|
+
"engines": {
|
|
1834
|
+
"node": ">=12"
|
|
1835
|
+
},
|
|
1836
|
+
"optionalDependencies": {
|
|
1837
|
+
"@esbuild/aix-ppc64": "0.21.5",
|
|
1838
|
+
"@esbuild/android-arm": "0.21.5",
|
|
1839
|
+
"@esbuild/android-arm64": "0.21.5",
|
|
1840
|
+
"@esbuild/android-x64": "0.21.5",
|
|
1841
|
+
"@esbuild/darwin-arm64": "0.21.5",
|
|
1842
|
+
"@esbuild/darwin-x64": "0.21.5",
|
|
1843
|
+
"@esbuild/freebsd-arm64": "0.21.5",
|
|
1844
|
+
"@esbuild/freebsd-x64": "0.21.5",
|
|
1845
|
+
"@esbuild/linux-arm": "0.21.5",
|
|
1846
|
+
"@esbuild/linux-arm64": "0.21.5",
|
|
1847
|
+
"@esbuild/linux-ia32": "0.21.5",
|
|
1848
|
+
"@esbuild/linux-loong64": "0.21.5",
|
|
1849
|
+
"@esbuild/linux-mips64el": "0.21.5",
|
|
1850
|
+
"@esbuild/linux-ppc64": "0.21.5",
|
|
1851
|
+
"@esbuild/linux-riscv64": "0.21.5",
|
|
1852
|
+
"@esbuild/linux-s390x": "0.21.5",
|
|
1853
|
+
"@esbuild/linux-x64": "0.21.5",
|
|
1854
|
+
"@esbuild/netbsd-x64": "0.21.5",
|
|
1855
|
+
"@esbuild/openbsd-x64": "0.21.5",
|
|
1856
|
+
"@esbuild/sunos-x64": "0.21.5",
|
|
1857
|
+
"@esbuild/win32-arm64": "0.21.5",
|
|
1858
|
+
"@esbuild/win32-ia32": "0.21.5",
|
|
1859
|
+
"@esbuild/win32-x64": "0.21.5"
|
|
1860
|
+
}
|
|
1861
|
+
},
|
|
1862
|
+
"node_modules/escape-string-regexp": {
|
|
1863
|
+
"version": "4.0.0",
|
|
1864
|
+
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
|
|
1865
|
+
"integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
|
|
1866
|
+
"license": "MIT",
|
|
1867
|
+
"engines": {
|
|
1868
|
+
"node": ">=10"
|
|
1869
|
+
},
|
|
1870
|
+
"funding": {
|
|
1871
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1872
|
+
}
|
|
1873
|
+
},
|
|
1874
|
+
"node_modules/esm-env": {
|
|
1875
|
+
"version": "1.2.2",
|
|
1876
|
+
"resolved": "https://registry.npmjs.org/esm-env/-/esm-env-1.2.2.tgz",
|
|
1877
|
+
"integrity": "sha512-Epxrv+Nr/CaL4ZcFGPJIYLWFom+YeV1DqMLHJoEd9SYRxNbaFruBwfEX/kkHUJf55j2+TUbmDcmuilbP1TmXHA==",
|
|
1878
|
+
"dev": true,
|
|
1879
|
+
"license": "MIT"
|
|
1880
|
+
},
|
|
1881
|
+
"node_modules/estree-walker": {
|
|
1882
|
+
"version": "3.0.3",
|
|
1883
|
+
"resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz",
|
|
1884
|
+
"integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==",
|
|
1885
|
+
"dev": true,
|
|
1886
|
+
"license": "MIT",
|
|
1887
|
+
"dependencies": {
|
|
1888
|
+
"@types/estree": "^1.0.0"
|
|
1889
|
+
}
|
|
1890
|
+
},
|
|
1891
|
+
"node_modules/fill-range": {
|
|
1892
|
+
"version": "7.1.1",
|
|
1893
|
+
"resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
|
|
1894
|
+
"integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
|
|
1895
|
+
"dev": true,
|
|
1896
|
+
"license": "MIT",
|
|
1897
|
+
"dependencies": {
|
|
1898
|
+
"to-regex-range": "^5.0.1"
|
|
1899
|
+
},
|
|
1900
|
+
"engines": {
|
|
1901
|
+
"node": ">=8"
|
|
1902
|
+
}
|
|
1903
|
+
},
|
|
1904
|
+
"node_modules/find-root": {
|
|
1905
|
+
"version": "1.1.0",
|
|
1906
|
+
"resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz",
|
|
1907
|
+
"integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==",
|
|
1908
|
+
"license": "MIT"
|
|
1909
|
+
},
|
|
1910
|
+
"node_modules/fs.realpath": {
|
|
1911
|
+
"version": "1.0.0",
|
|
1912
|
+
"resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
|
|
1913
|
+
"integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==",
|
|
1914
|
+
"dev": true,
|
|
1915
|
+
"license": "ISC"
|
|
1916
|
+
},
|
|
1917
|
+
"node_modules/fsevents": {
|
|
1918
|
+
"version": "2.3.3",
|
|
1919
|
+
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
|
|
1920
|
+
"integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
|
|
1921
|
+
"dev": true,
|
|
1922
|
+
"hasInstallScript": true,
|
|
1923
|
+
"license": "MIT",
|
|
1924
|
+
"optional": true,
|
|
1925
|
+
"os": [
|
|
1926
|
+
"darwin"
|
|
1927
|
+
],
|
|
1928
|
+
"engines": {
|
|
1929
|
+
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
|
|
1930
|
+
}
|
|
1931
|
+
},
|
|
1932
|
+
"node_modules/function-bind": {
|
|
1933
|
+
"version": "1.1.2",
|
|
1934
|
+
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
|
|
1935
|
+
"integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
|
|
1936
|
+
"license": "MIT",
|
|
1937
|
+
"funding": {
|
|
1938
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
1939
|
+
}
|
|
1940
|
+
},
|
|
1941
|
+
"node_modules/glob": {
|
|
1942
|
+
"version": "7.2.3",
|
|
1943
|
+
"resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
|
|
1944
|
+
"integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
|
|
1945
|
+
"deprecated": "Glob versions prior to v9 are no longer supported",
|
|
1946
|
+
"dev": true,
|
|
1947
|
+
"license": "ISC",
|
|
1948
|
+
"dependencies": {
|
|
1949
|
+
"fs.realpath": "^1.0.0",
|
|
1950
|
+
"inflight": "^1.0.4",
|
|
1951
|
+
"inherits": "2",
|
|
1952
|
+
"minimatch": "^3.1.1",
|
|
1953
|
+
"once": "^1.3.0",
|
|
1954
|
+
"path-is-absolute": "^1.0.0"
|
|
1955
|
+
},
|
|
1956
|
+
"engines": {
|
|
1957
|
+
"node": "*"
|
|
1958
|
+
},
|
|
1959
|
+
"funding": {
|
|
1960
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
1961
|
+
}
|
|
1962
|
+
},
|
|
1963
|
+
"node_modules/glob-parent": {
|
|
1964
|
+
"version": "5.1.2",
|
|
1965
|
+
"resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
|
|
1966
|
+
"integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
|
|
1967
|
+
"dev": true,
|
|
1968
|
+
"license": "ISC",
|
|
1969
|
+
"dependencies": {
|
|
1970
|
+
"is-glob": "^4.0.1"
|
|
1971
|
+
},
|
|
1972
|
+
"engines": {
|
|
1973
|
+
"node": ">= 6"
|
|
1974
|
+
}
|
|
1975
|
+
},
|
|
1976
|
+
"node_modules/graceful-fs": {
|
|
1977
|
+
"version": "4.2.11",
|
|
1978
|
+
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
|
|
1979
|
+
"integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
|
|
1980
|
+
"dev": true,
|
|
1981
|
+
"license": "ISC"
|
|
1982
|
+
},
|
|
1983
|
+
"node_modules/hasown": {
|
|
1984
|
+
"version": "2.0.2",
|
|
1985
|
+
"resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
|
|
1986
|
+
"integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
|
|
1987
|
+
"license": "MIT",
|
|
1988
|
+
"dependencies": {
|
|
1989
|
+
"function-bind": "^1.1.2"
|
|
1990
|
+
},
|
|
1991
|
+
"engines": {
|
|
1992
|
+
"node": ">= 0.4"
|
|
1993
|
+
}
|
|
1994
|
+
},
|
|
1995
|
+
"node_modules/hoist-non-react-statics": {
|
|
1996
|
+
"version": "3.3.2",
|
|
1997
|
+
"resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz",
|
|
1998
|
+
"integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==",
|
|
1999
|
+
"license": "BSD-3-Clause",
|
|
2000
|
+
"dependencies": {
|
|
2001
|
+
"react-is": "^16.7.0"
|
|
2002
|
+
}
|
|
2003
|
+
},
|
|
2004
|
+
"node_modules/hoist-non-react-statics/node_modules/react-is": {
|
|
2005
|
+
"version": "16.13.1",
|
|
2006
|
+
"resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
|
|
2007
|
+
"integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==",
|
|
2008
|
+
"license": "MIT"
|
|
2009
|
+
},
|
|
2010
|
+
"node_modules/import-fresh": {
|
|
2011
|
+
"version": "3.3.1",
|
|
2012
|
+
"resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz",
|
|
2013
|
+
"integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==",
|
|
2014
|
+
"license": "MIT",
|
|
2015
|
+
"dependencies": {
|
|
2016
|
+
"parent-module": "^1.0.0",
|
|
2017
|
+
"resolve-from": "^4.0.0"
|
|
2018
|
+
},
|
|
2019
|
+
"engines": {
|
|
2020
|
+
"node": ">=6"
|
|
2021
|
+
},
|
|
2022
|
+
"funding": {
|
|
2023
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
2024
|
+
}
|
|
2025
|
+
},
|
|
2026
|
+
"node_modules/import-meta-resolve": {
|
|
2027
|
+
"version": "4.2.0",
|
|
2028
|
+
"resolved": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-4.2.0.tgz",
|
|
2029
|
+
"integrity": "sha512-Iqv2fzaTQN28s/FwZAoFq0ZSs/7hMAHJVX+w8PZl3cY19Pxk6jFFalxQoIfW2826i/fDLXv8IiEZRIT0lDuWcg==",
|
|
2030
|
+
"dev": true,
|
|
2031
|
+
"license": "MIT",
|
|
2032
|
+
"funding": {
|
|
2033
|
+
"type": "github",
|
|
2034
|
+
"url": "https://github.com/sponsors/wooorm"
|
|
2035
|
+
}
|
|
2036
|
+
},
|
|
2037
|
+
"node_modules/inflight": {
|
|
2038
|
+
"version": "1.0.6",
|
|
2039
|
+
"resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
|
|
2040
|
+
"integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
|
|
2041
|
+
"deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.",
|
|
2042
|
+
"dev": true,
|
|
2043
|
+
"license": "ISC",
|
|
2044
|
+
"dependencies": {
|
|
2045
|
+
"once": "^1.3.0",
|
|
2046
|
+
"wrappy": "1"
|
|
2047
|
+
}
|
|
2048
|
+
},
|
|
2049
|
+
"node_modules/inherits": {
|
|
2050
|
+
"version": "2.0.4",
|
|
2051
|
+
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
|
|
2052
|
+
"integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
|
|
2053
|
+
"dev": true,
|
|
2054
|
+
"license": "ISC"
|
|
2055
|
+
},
|
|
2056
|
+
"node_modules/is-arrayish": {
|
|
2057
|
+
"version": "0.2.1",
|
|
2058
|
+
"resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
|
|
2059
|
+
"integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==",
|
|
2060
|
+
"license": "MIT"
|
|
2061
|
+
},
|
|
2062
|
+
"node_modules/is-binary-path": {
|
|
2063
|
+
"version": "2.1.0",
|
|
2064
|
+
"resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
|
|
2065
|
+
"integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
|
|
2066
|
+
"dev": true,
|
|
2067
|
+
"license": "MIT",
|
|
2068
|
+
"dependencies": {
|
|
2069
|
+
"binary-extensions": "^2.0.0"
|
|
2070
|
+
},
|
|
2071
|
+
"engines": {
|
|
2072
|
+
"node": ">=8"
|
|
2073
|
+
}
|
|
2074
|
+
},
|
|
2075
|
+
"node_modules/is-core-module": {
|
|
2076
|
+
"version": "2.16.1",
|
|
2077
|
+
"resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz",
|
|
2078
|
+
"integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==",
|
|
2079
|
+
"license": "MIT",
|
|
2080
|
+
"dependencies": {
|
|
2081
|
+
"hasown": "^2.0.2"
|
|
2082
|
+
},
|
|
2083
|
+
"engines": {
|
|
2084
|
+
"node": ">= 0.4"
|
|
2085
|
+
},
|
|
2086
|
+
"funding": {
|
|
2087
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
2088
|
+
}
|
|
2089
|
+
},
|
|
2090
|
+
"node_modules/is-extglob": {
|
|
2091
|
+
"version": "2.1.1",
|
|
2092
|
+
"resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
|
|
2093
|
+
"integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
|
|
2094
|
+
"dev": true,
|
|
2095
|
+
"license": "MIT",
|
|
2096
|
+
"engines": {
|
|
2097
|
+
"node": ">=0.10.0"
|
|
2098
|
+
}
|
|
2099
|
+
},
|
|
2100
|
+
"node_modules/is-glob": {
|
|
2101
|
+
"version": "4.0.3",
|
|
2102
|
+
"resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
|
|
2103
|
+
"integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
|
|
2104
|
+
"dev": true,
|
|
2105
|
+
"license": "MIT",
|
|
2106
|
+
"dependencies": {
|
|
2107
|
+
"is-extglob": "^2.1.1"
|
|
2108
|
+
},
|
|
2109
|
+
"engines": {
|
|
2110
|
+
"node": ">=0.10.0"
|
|
2111
|
+
}
|
|
2112
|
+
},
|
|
2113
|
+
"node_modules/is-number": {
|
|
2114
|
+
"version": "7.0.0",
|
|
2115
|
+
"resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
|
|
2116
|
+
"integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
|
|
2117
|
+
"dev": true,
|
|
2118
|
+
"license": "MIT",
|
|
2119
|
+
"engines": {
|
|
2120
|
+
"node": ">=0.12.0"
|
|
2121
|
+
}
|
|
2122
|
+
},
|
|
2123
|
+
"node_modules/is-reference": {
|
|
2124
|
+
"version": "3.0.3",
|
|
2125
|
+
"resolved": "https://registry.npmjs.org/is-reference/-/is-reference-3.0.3.tgz",
|
|
2126
|
+
"integrity": "sha512-ixkJoqQvAP88E6wLydLGGqCJsrFUnqoH6HnaczB8XmDH1oaWU+xxdptvikTgaEhtZ53Ky6YXiBuUI2WXLMCwjw==",
|
|
2127
|
+
"dev": true,
|
|
2128
|
+
"license": "MIT",
|
|
2129
|
+
"dependencies": {
|
|
2130
|
+
"@types/estree": "^1.0.6"
|
|
2131
|
+
}
|
|
2132
|
+
},
|
|
2133
|
+
"node_modules/isomorphic.js": {
|
|
2134
|
+
"version": "0.2.5",
|
|
2135
|
+
"resolved": "https://registry.npmjs.org/isomorphic.js/-/isomorphic.js-0.2.5.tgz",
|
|
2136
|
+
"integrity": "sha512-PIeMbHqMt4DnUP3MA/Flc0HElYjMXArsw1qwJZcm9sqR8mq3l8NYizFMty0pWwE/tzIGH3EKK5+jes5mAr85yw==",
|
|
2137
|
+
"license": "MIT",
|
|
2138
|
+
"funding": {
|
|
2139
|
+
"type": "GitHub Sponsors ❤",
|
|
2140
|
+
"url": "https://github.com/sponsors/dmonad"
|
|
2141
|
+
}
|
|
2142
|
+
},
|
|
2143
|
+
"node_modules/js-tokens": {
|
|
2144
|
+
"version": "4.0.0",
|
|
2145
|
+
"resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
|
|
2146
|
+
"integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
|
|
2147
|
+
"license": "MIT"
|
|
2148
|
+
},
|
|
2149
|
+
"node_modules/jsesc": {
|
|
2150
|
+
"version": "3.1.0",
|
|
2151
|
+
"resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
|
|
2152
|
+
"integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
|
|
2153
|
+
"license": "MIT",
|
|
2154
|
+
"bin": {
|
|
2155
|
+
"jsesc": "bin/jsesc"
|
|
2156
|
+
},
|
|
2157
|
+
"engines": {
|
|
2158
|
+
"node": ">=6"
|
|
2159
|
+
}
|
|
2160
|
+
},
|
|
2161
|
+
"node_modules/json-parse-even-better-errors": {
|
|
2162
|
+
"version": "2.3.1",
|
|
2163
|
+
"resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
|
|
2164
|
+
"integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==",
|
|
2165
|
+
"license": "MIT"
|
|
2166
|
+
},
|
|
2167
|
+
"node_modules/kleur": {
|
|
2168
|
+
"version": "4.1.5",
|
|
2169
|
+
"resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz",
|
|
2170
|
+
"integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==",
|
|
2171
|
+
"dev": true,
|
|
2172
|
+
"license": "MIT",
|
|
2173
|
+
"engines": {
|
|
2174
|
+
"node": ">=6"
|
|
2175
|
+
}
|
|
2176
|
+
},
|
|
2177
|
+
"node_modules/lib0": {
|
|
2178
|
+
"version": "0.2.114",
|
|
2179
|
+
"resolved": "https://registry.npmjs.org/lib0/-/lib0-0.2.114.tgz",
|
|
2180
|
+
"integrity": "sha512-gcxmNFzA4hv8UYi8j43uPlQ7CGcyMJ2KQb5kZASw6SnAKAf10hK12i2fjrS3Cl/ugZa5Ui6WwIu1/6MIXiHttQ==",
|
|
2181
|
+
"license": "MIT",
|
|
2182
|
+
"dependencies": {
|
|
2183
|
+
"isomorphic.js": "^0.2.4"
|
|
2184
|
+
},
|
|
2185
|
+
"bin": {
|
|
2186
|
+
"0ecdsa-generate-keypair": "bin/0ecdsa-generate-keypair.js",
|
|
2187
|
+
"0gentesthtml": "bin/gentesthtml.js",
|
|
2188
|
+
"0serve": "bin/0serve.js"
|
|
2189
|
+
},
|
|
2190
|
+
"engines": {
|
|
2191
|
+
"node": ">=16"
|
|
2192
|
+
},
|
|
2193
|
+
"funding": {
|
|
2194
|
+
"type": "GitHub Sponsors ❤",
|
|
2195
|
+
"url": "https://github.com/sponsors/dmonad"
|
|
2196
|
+
}
|
|
2197
|
+
},
|
|
2198
|
+
"node_modules/lines-and-columns": {
|
|
2199
|
+
"version": "1.2.4",
|
|
2200
|
+
"resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
|
|
2201
|
+
"integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==",
|
|
2202
|
+
"license": "MIT"
|
|
2203
|
+
},
|
|
2204
|
+
"node_modules/locate-character": {
|
|
2205
|
+
"version": "3.0.0",
|
|
2206
|
+
"resolved": "https://registry.npmjs.org/locate-character/-/locate-character-3.0.0.tgz",
|
|
2207
|
+
"integrity": "sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==",
|
|
2208
|
+
"dev": true,
|
|
2209
|
+
"license": "MIT"
|
|
2210
|
+
},
|
|
2211
|
+
"node_modules/loglevel": {
|
|
2212
|
+
"version": "1.9.2",
|
|
2213
|
+
"resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.9.2.tgz",
|
|
2214
|
+
"integrity": "sha512-HgMmCqIJSAKqo68l0rS2AanEWfkxaZ5wNiEFb5ggm08lDs9Xl2KxBlX3PTcaD2chBM1gXAYf491/M2Rv8Jwayg==",
|
|
2215
|
+
"license": "MIT",
|
|
2216
|
+
"engines": {
|
|
2217
|
+
"node": ">= 0.6.0"
|
|
2218
|
+
},
|
|
2219
|
+
"funding": {
|
|
2220
|
+
"type": "tidelift",
|
|
2221
|
+
"url": "https://tidelift.com/funding/github/npm/loglevel"
|
|
2222
|
+
}
|
|
2223
|
+
},
|
|
2224
|
+
"node_modules/loose-envify": {
|
|
2225
|
+
"version": "1.4.0",
|
|
2226
|
+
"resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
|
|
2227
|
+
"integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
|
|
2228
|
+
"license": "MIT",
|
|
2229
|
+
"dependencies": {
|
|
2230
|
+
"js-tokens": "^3.0.0 || ^4.0.0"
|
|
2231
|
+
},
|
|
2232
|
+
"bin": {
|
|
2233
|
+
"loose-envify": "cli.js"
|
|
2234
|
+
}
|
|
2235
|
+
},
|
|
2236
|
+
"node_modules/magic-string": {
|
|
2237
|
+
"version": "0.30.19",
|
|
2238
|
+
"resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.19.tgz",
|
|
2239
|
+
"integrity": "sha512-2N21sPY9Ws53PZvsEpVtNuSW+ScYbQdp4b9qUaL+9QkHUrGFKo56Lg9Emg5s9V/qrtNBmiR01sYhUOwu3H+VOw==",
|
|
2240
|
+
"dev": true,
|
|
2241
|
+
"license": "MIT",
|
|
2242
|
+
"dependencies": {
|
|
2243
|
+
"@jridgewell/sourcemap-codec": "^1.5.5"
|
|
2244
|
+
}
|
|
2245
|
+
},
|
|
2246
|
+
"node_modules/mdn-data": {
|
|
2247
|
+
"version": "2.0.30",
|
|
2248
|
+
"resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz",
|
|
2249
|
+
"integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==",
|
|
2250
|
+
"dev": true,
|
|
2251
|
+
"license": "CC0-1.0"
|
|
2252
|
+
},
|
|
2253
|
+
"node_modules/min-indent": {
|
|
2254
|
+
"version": "1.0.1",
|
|
2255
|
+
"resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz",
|
|
2256
|
+
"integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==",
|
|
2257
|
+
"dev": true,
|
|
2258
|
+
"license": "MIT",
|
|
2259
|
+
"engines": {
|
|
2260
|
+
"node": ">=4"
|
|
2261
|
+
}
|
|
2262
|
+
},
|
|
2263
|
+
"node_modules/minimatch": {
|
|
2264
|
+
"version": "3.1.2",
|
|
2265
|
+
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
|
|
2266
|
+
"integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
|
|
2267
|
+
"dev": true,
|
|
2268
|
+
"license": "ISC",
|
|
2269
|
+
"dependencies": {
|
|
2270
|
+
"brace-expansion": "^1.1.7"
|
|
2271
|
+
},
|
|
2272
|
+
"engines": {
|
|
2273
|
+
"node": "*"
|
|
2274
|
+
}
|
|
2275
|
+
},
|
|
2276
|
+
"node_modules/minimist": {
|
|
2277
|
+
"version": "1.2.8",
|
|
2278
|
+
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz",
|
|
2279
|
+
"integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==",
|
|
2280
|
+
"dev": true,
|
|
2281
|
+
"license": "MIT",
|
|
2282
|
+
"funding": {
|
|
2283
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
2284
|
+
}
|
|
2285
|
+
},
|
|
2286
|
+
"node_modules/mkdirp": {
|
|
2287
|
+
"version": "0.5.6",
|
|
2288
|
+
"resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz",
|
|
2289
|
+
"integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==",
|
|
2290
|
+
"dev": true,
|
|
2291
|
+
"license": "MIT",
|
|
2292
|
+
"dependencies": {
|
|
2293
|
+
"minimist": "^1.2.6"
|
|
2294
|
+
},
|
|
2295
|
+
"bin": {
|
|
2296
|
+
"mkdirp": "bin/cmd.js"
|
|
2297
|
+
}
|
|
2298
|
+
},
|
|
2299
|
+
"node_modules/mri": {
|
|
2300
|
+
"version": "1.2.0",
|
|
2301
|
+
"resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz",
|
|
2302
|
+
"integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==",
|
|
2303
|
+
"dev": true,
|
|
2304
|
+
"license": "MIT",
|
|
2305
|
+
"engines": {
|
|
2306
|
+
"node": ">=4"
|
|
2307
|
+
}
|
|
2308
|
+
},
|
|
2309
|
+
"node_modules/mrmime": {
|
|
2310
|
+
"version": "2.0.1",
|
|
2311
|
+
"resolved": "https://registry.npmjs.org/mrmime/-/mrmime-2.0.1.tgz",
|
|
2312
|
+
"integrity": "sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==",
|
|
2313
|
+
"dev": true,
|
|
2314
|
+
"license": "MIT",
|
|
2315
|
+
"engines": {
|
|
2316
|
+
"node": ">=10"
|
|
2317
|
+
}
|
|
2318
|
+
},
|
|
2319
|
+
"node_modules/ms": {
|
|
2320
|
+
"version": "2.1.3",
|
|
2321
|
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
|
|
2322
|
+
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
|
|
2323
|
+
"license": "MIT"
|
|
2324
|
+
},
|
|
2325
|
+
"node_modules/nanoid": {
|
|
2326
|
+
"version": "3.3.11",
|
|
2327
|
+
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
|
|
2328
|
+
"integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
|
|
2329
|
+
"dev": true,
|
|
2330
|
+
"funding": [
|
|
2331
|
+
{
|
|
2332
|
+
"type": "github",
|
|
2333
|
+
"url": "https://github.com/sponsors/ai"
|
|
2334
|
+
}
|
|
2335
|
+
],
|
|
2336
|
+
"license": "MIT",
|
|
2337
|
+
"bin": {
|
|
2338
|
+
"nanoid": "bin/nanoid.cjs"
|
|
2339
|
+
},
|
|
2340
|
+
"engines": {
|
|
2341
|
+
"node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
|
|
2342
|
+
}
|
|
2343
|
+
},
|
|
2344
|
+
"node_modules/normalize-path": {
|
|
2345
|
+
"version": "3.0.0",
|
|
2346
|
+
"resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
|
|
2347
|
+
"integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
|
|
2348
|
+
"dev": true,
|
|
2349
|
+
"license": "MIT",
|
|
2350
|
+
"engines": {
|
|
2351
|
+
"node": ">=0.10.0"
|
|
2352
|
+
}
|
|
2353
|
+
},
|
|
2354
|
+
"node_modules/object-assign": {
|
|
2355
|
+
"version": "4.1.1",
|
|
2356
|
+
"resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
|
|
2357
|
+
"integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
|
|
2358
|
+
"license": "MIT",
|
|
2359
|
+
"engines": {
|
|
2360
|
+
"node": ">=0.10.0"
|
|
2361
|
+
}
|
|
2362
|
+
},
|
|
2363
|
+
"node_modules/once": {
|
|
2364
|
+
"version": "1.4.0",
|
|
2365
|
+
"resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
|
|
2366
|
+
"integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
|
|
2367
|
+
"dev": true,
|
|
2368
|
+
"license": "ISC",
|
|
2369
|
+
"dependencies": {
|
|
2370
|
+
"wrappy": "1"
|
|
2371
|
+
}
|
|
2372
|
+
},
|
|
2373
|
+
"node_modules/parent-module": {
|
|
2374
|
+
"version": "1.0.1",
|
|
2375
|
+
"resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
|
|
2376
|
+
"integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
|
|
2377
|
+
"license": "MIT",
|
|
2378
|
+
"dependencies": {
|
|
2379
|
+
"callsites": "^3.0.0"
|
|
2380
|
+
},
|
|
2381
|
+
"engines": {
|
|
2382
|
+
"node": ">=6"
|
|
2383
|
+
}
|
|
2384
|
+
},
|
|
2385
|
+
"node_modules/parse-json": {
|
|
2386
|
+
"version": "5.2.0",
|
|
2387
|
+
"resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz",
|
|
2388
|
+
"integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==",
|
|
2389
|
+
"license": "MIT",
|
|
2390
|
+
"dependencies": {
|
|
2391
|
+
"@babel/code-frame": "^7.0.0",
|
|
2392
|
+
"error-ex": "^1.3.1",
|
|
2393
|
+
"json-parse-even-better-errors": "^2.3.0",
|
|
2394
|
+
"lines-and-columns": "^1.1.6"
|
|
2395
|
+
},
|
|
2396
|
+
"engines": {
|
|
2397
|
+
"node": ">=8"
|
|
2398
|
+
},
|
|
2399
|
+
"funding": {
|
|
2400
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
2401
|
+
}
|
|
2402
|
+
},
|
|
2403
|
+
"node_modules/path-is-absolute": {
|
|
2404
|
+
"version": "1.0.1",
|
|
2405
|
+
"resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
|
|
2406
|
+
"integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==",
|
|
2407
|
+
"dev": true,
|
|
2408
|
+
"license": "MIT",
|
|
2409
|
+
"engines": {
|
|
2410
|
+
"node": ">=0.10.0"
|
|
2411
|
+
}
|
|
2412
|
+
},
|
|
2413
|
+
"node_modules/path-parse": {
|
|
2414
|
+
"version": "1.0.7",
|
|
2415
|
+
"resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
|
|
2416
|
+
"integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==",
|
|
2417
|
+
"license": "MIT"
|
|
2418
|
+
},
|
|
2419
|
+
"node_modules/path-type": {
|
|
2420
|
+
"version": "4.0.0",
|
|
2421
|
+
"resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
|
|
2422
|
+
"integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==",
|
|
2423
|
+
"license": "MIT",
|
|
2424
|
+
"engines": {
|
|
2425
|
+
"node": ">=8"
|
|
2426
|
+
}
|
|
2427
|
+
},
|
|
2428
|
+
"node_modules/periscopic": {
|
|
2429
|
+
"version": "3.1.0",
|
|
2430
|
+
"resolved": "https://registry.npmjs.org/periscopic/-/periscopic-3.1.0.tgz",
|
|
2431
|
+
"integrity": "sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==",
|
|
2432
|
+
"dev": true,
|
|
2433
|
+
"license": "MIT",
|
|
2434
|
+
"dependencies": {
|
|
2435
|
+
"@types/estree": "^1.0.0",
|
|
2436
|
+
"estree-walker": "^3.0.0",
|
|
2437
|
+
"is-reference": "^3.0.0"
|
|
2438
|
+
}
|
|
2439
|
+
},
|
|
2440
|
+
"node_modules/picocolors": {
|
|
2441
|
+
"version": "1.1.1",
|
|
2442
|
+
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
|
|
2443
|
+
"integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
|
|
2444
|
+
"license": "ISC"
|
|
2445
|
+
},
|
|
2446
|
+
"node_modules/picomatch": {
|
|
2447
|
+
"version": "2.3.1",
|
|
2448
|
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
|
|
2449
|
+
"integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
|
|
2450
|
+
"dev": true,
|
|
2451
|
+
"license": "MIT",
|
|
2452
|
+
"engines": {
|
|
2453
|
+
"node": ">=8.6"
|
|
2454
|
+
},
|
|
2455
|
+
"funding": {
|
|
2456
|
+
"url": "https://github.com/sponsors/jonschlinkert"
|
|
2457
|
+
}
|
|
2458
|
+
},
|
|
2459
|
+
"node_modules/postcss": {
|
|
2460
|
+
"version": "8.5.6",
|
|
2461
|
+
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz",
|
|
2462
|
+
"integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
|
|
2463
|
+
"dev": true,
|
|
2464
|
+
"funding": [
|
|
2465
|
+
{
|
|
2466
|
+
"type": "opencollective",
|
|
2467
|
+
"url": "https://opencollective.com/postcss/"
|
|
2468
|
+
},
|
|
2469
|
+
{
|
|
2470
|
+
"type": "tidelift",
|
|
2471
|
+
"url": "https://tidelift.com/funding/github/npm/postcss"
|
|
2472
|
+
},
|
|
2473
|
+
{
|
|
2474
|
+
"type": "github",
|
|
2475
|
+
"url": "https://github.com/sponsors/ai"
|
|
2476
|
+
}
|
|
2477
|
+
],
|
|
2478
|
+
"license": "MIT",
|
|
2479
|
+
"dependencies": {
|
|
2480
|
+
"nanoid": "^3.3.11",
|
|
2481
|
+
"picocolors": "^1.1.1",
|
|
2482
|
+
"source-map-js": "^1.2.1"
|
|
2483
|
+
},
|
|
2484
|
+
"engines": {
|
|
2485
|
+
"node": "^10 || ^12 || >=14"
|
|
2486
|
+
}
|
|
2487
|
+
},
|
|
2488
|
+
"node_modules/prop-types": {
|
|
2489
|
+
"version": "15.8.1",
|
|
2490
|
+
"resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz",
|
|
2491
|
+
"integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==",
|
|
2492
|
+
"license": "MIT",
|
|
2493
|
+
"dependencies": {
|
|
2494
|
+
"loose-envify": "^1.4.0",
|
|
2495
|
+
"object-assign": "^4.1.1",
|
|
2496
|
+
"react-is": "^16.13.1"
|
|
2497
|
+
}
|
|
2498
|
+
},
|
|
2499
|
+
"node_modules/prop-types/node_modules/react-is": {
|
|
2500
|
+
"version": "16.13.1",
|
|
2501
|
+
"resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
|
|
2502
|
+
"integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==",
|
|
2503
|
+
"license": "MIT"
|
|
2504
|
+
},
|
|
2505
|
+
"node_modules/react-is": {
|
|
2506
|
+
"version": "19.1.1",
|
|
2507
|
+
"resolved": "https://registry.npmjs.org/react-is/-/react-is-19.1.1.tgz",
|
|
2508
|
+
"integrity": "sha512-tr41fA15Vn8p4X9ntI+yCyeGSf1TlYaY5vlTZfQmeLBrFo3psOPX6HhTDnFNL9uj3EhP0KAQ80cugCl4b4BERA==",
|
|
2509
|
+
"license": "MIT"
|
|
2510
|
+
},
|
|
2511
|
+
"node_modules/react-transition-group": {
|
|
2512
|
+
"version": "4.4.5",
|
|
2513
|
+
"resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz",
|
|
2514
|
+
"integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==",
|
|
2515
|
+
"license": "BSD-3-Clause",
|
|
2516
|
+
"dependencies": {
|
|
2517
|
+
"@babel/runtime": "^7.5.5",
|
|
2518
|
+
"dom-helpers": "^5.0.1",
|
|
2519
|
+
"loose-envify": "^1.4.0",
|
|
2520
|
+
"prop-types": "^15.6.2"
|
|
2521
|
+
},
|
|
2522
|
+
"peerDependencies": {
|
|
2523
|
+
"react": ">=16.6.0",
|
|
2524
|
+
"react-dom": ">=16.6.0"
|
|
2525
|
+
}
|
|
2526
|
+
},
|
|
2527
|
+
"node_modules/readdirp": {
|
|
2528
|
+
"version": "3.6.0",
|
|
2529
|
+
"resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
|
|
2530
|
+
"integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
|
|
2531
|
+
"dev": true,
|
|
2532
|
+
"license": "MIT",
|
|
2533
|
+
"dependencies": {
|
|
2534
|
+
"picomatch": "^2.2.1"
|
|
2535
|
+
},
|
|
2536
|
+
"engines": {
|
|
2537
|
+
"node": ">=8.10.0"
|
|
2538
|
+
}
|
|
2539
|
+
},
|
|
2540
|
+
"node_modules/resolve": {
|
|
2541
|
+
"version": "1.22.10",
|
|
2542
|
+
"resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz",
|
|
2543
|
+
"integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==",
|
|
2544
|
+
"license": "MIT",
|
|
2545
|
+
"dependencies": {
|
|
2546
|
+
"is-core-module": "^2.16.0",
|
|
2547
|
+
"path-parse": "^1.0.7",
|
|
2548
|
+
"supports-preserve-symlinks-flag": "^1.0.0"
|
|
2549
|
+
},
|
|
2550
|
+
"bin": {
|
|
2551
|
+
"resolve": "bin/resolve"
|
|
2552
|
+
},
|
|
2553
|
+
"engines": {
|
|
2554
|
+
"node": ">= 0.4"
|
|
2555
|
+
},
|
|
2556
|
+
"funding": {
|
|
2557
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
2558
|
+
}
|
|
2559
|
+
},
|
|
2560
|
+
"node_modules/resolve-from": {
|
|
2561
|
+
"version": "4.0.0",
|
|
2562
|
+
"resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
|
|
2563
|
+
"integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
|
|
2564
|
+
"license": "MIT",
|
|
2565
|
+
"engines": {
|
|
2566
|
+
"node": ">=4"
|
|
2567
|
+
}
|
|
2568
|
+
},
|
|
2569
|
+
"node_modules/rimraf": {
|
|
2570
|
+
"version": "2.7.1",
|
|
2571
|
+
"resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz",
|
|
2572
|
+
"integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==",
|
|
2573
|
+
"deprecated": "Rimraf versions prior to v4 are no longer supported",
|
|
2574
|
+
"dev": true,
|
|
2575
|
+
"license": "ISC",
|
|
2576
|
+
"dependencies": {
|
|
2577
|
+
"glob": "^7.1.3"
|
|
2578
|
+
},
|
|
2579
|
+
"bin": {
|
|
2580
|
+
"rimraf": "bin.js"
|
|
2581
|
+
}
|
|
2582
|
+
},
|
|
2583
|
+
"node_modules/rollup": {
|
|
2584
|
+
"version": "4.52.2",
|
|
2585
|
+
"resolved": "https://registry.npmjs.org/rollup/-/rollup-4.52.2.tgz",
|
|
2586
|
+
"integrity": "sha512-I25/2QgoROE1vYV+NQ1En9T9UFB9Cmfm2CJ83zZOlaDpvz29wGQSZXWKw7MiNXau7wYgB/T9fVIdIuEQ+KbiiA==",
|
|
2587
|
+
"dev": true,
|
|
2588
|
+
"license": "MIT",
|
|
2589
|
+
"dependencies": {
|
|
2590
|
+
"@types/estree": "1.0.8"
|
|
2591
|
+
},
|
|
2592
|
+
"bin": {
|
|
2593
|
+
"rollup": "dist/bin/rollup"
|
|
2594
|
+
},
|
|
2595
|
+
"engines": {
|
|
2596
|
+
"node": ">=18.0.0",
|
|
2597
|
+
"npm": ">=8.0.0"
|
|
2598
|
+
},
|
|
2599
|
+
"optionalDependencies": {
|
|
2600
|
+
"@rollup/rollup-android-arm-eabi": "4.52.2",
|
|
2601
|
+
"@rollup/rollup-android-arm64": "4.52.2",
|
|
2602
|
+
"@rollup/rollup-darwin-arm64": "4.52.2",
|
|
2603
|
+
"@rollup/rollup-darwin-x64": "4.52.2",
|
|
2604
|
+
"@rollup/rollup-freebsd-arm64": "4.52.2",
|
|
2605
|
+
"@rollup/rollup-freebsd-x64": "4.52.2",
|
|
2606
|
+
"@rollup/rollup-linux-arm-gnueabihf": "4.52.2",
|
|
2607
|
+
"@rollup/rollup-linux-arm-musleabihf": "4.52.2",
|
|
2608
|
+
"@rollup/rollup-linux-arm64-gnu": "4.52.2",
|
|
2609
|
+
"@rollup/rollup-linux-arm64-musl": "4.52.2",
|
|
2610
|
+
"@rollup/rollup-linux-loong64-gnu": "4.52.2",
|
|
2611
|
+
"@rollup/rollup-linux-ppc64-gnu": "4.52.2",
|
|
2612
|
+
"@rollup/rollup-linux-riscv64-gnu": "4.52.2",
|
|
2613
|
+
"@rollup/rollup-linux-riscv64-musl": "4.52.2",
|
|
2614
|
+
"@rollup/rollup-linux-s390x-gnu": "4.52.2",
|
|
2615
|
+
"@rollup/rollup-linux-x64-gnu": "4.52.2",
|
|
2616
|
+
"@rollup/rollup-linux-x64-musl": "4.52.2",
|
|
2617
|
+
"@rollup/rollup-openharmony-arm64": "4.52.2",
|
|
2618
|
+
"@rollup/rollup-win32-arm64-msvc": "4.52.2",
|
|
2619
|
+
"@rollup/rollup-win32-ia32-msvc": "4.52.2",
|
|
2620
|
+
"@rollup/rollup-win32-x64-gnu": "4.52.2",
|
|
2621
|
+
"@rollup/rollup-win32-x64-msvc": "4.52.2",
|
|
2622
|
+
"fsevents": "~2.3.2"
|
|
2623
|
+
}
|
|
2624
|
+
},
|
|
2625
|
+
"node_modules/sade": {
|
|
2626
|
+
"version": "1.8.1",
|
|
2627
|
+
"resolved": "https://registry.npmjs.org/sade/-/sade-1.8.1.tgz",
|
|
2628
|
+
"integrity": "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==",
|
|
2629
|
+
"dev": true,
|
|
2630
|
+
"license": "MIT",
|
|
2631
|
+
"dependencies": {
|
|
2632
|
+
"mri": "^1.1.0"
|
|
2633
|
+
},
|
|
2634
|
+
"engines": {
|
|
2635
|
+
"node": ">=6"
|
|
2636
|
+
}
|
|
2637
|
+
},
|
|
2638
|
+
"node_modules/sander": {
|
|
2639
|
+
"version": "0.5.1",
|
|
2640
|
+
"resolved": "https://registry.npmjs.org/sander/-/sander-0.5.1.tgz",
|
|
2641
|
+
"integrity": "sha512-3lVqBir7WuKDHGrKRDn/1Ye3kwpXaDOMsiRP1wd6wpZW56gJhsbp5RqQpA6JG/P+pkXizygnr1dKR8vzWaVsfA==",
|
|
2642
|
+
"dev": true,
|
|
2643
|
+
"license": "MIT",
|
|
2644
|
+
"dependencies": {
|
|
2645
|
+
"es6-promise": "^3.1.2",
|
|
2646
|
+
"graceful-fs": "^4.1.3",
|
|
2647
|
+
"mkdirp": "^0.5.1",
|
|
2648
|
+
"rimraf": "^2.5.2"
|
|
2649
|
+
}
|
|
2650
|
+
},
|
|
2651
|
+
"node_modules/set-cookie-parser": {
|
|
2652
|
+
"version": "2.7.1",
|
|
2653
|
+
"resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.7.1.tgz",
|
|
2654
|
+
"integrity": "sha512-IOc8uWeOZgnb3ptbCURJWNjWUPcO3ZnTTdzsurqERrP6nPyv+paC55vJM0LpOlT2ne+Ix+9+CRG1MNLlyZ4GjQ==",
|
|
2655
|
+
"dev": true,
|
|
2656
|
+
"license": "MIT"
|
|
2657
|
+
},
|
|
2658
|
+
"node_modules/sirv": {
|
|
2659
|
+
"version": "3.0.2",
|
|
2660
|
+
"resolved": "https://registry.npmjs.org/sirv/-/sirv-3.0.2.tgz",
|
|
2661
|
+
"integrity": "sha512-2wcC/oGxHis/BoHkkPwldgiPSYcpZK3JU28WoMVv55yHJgcZ8rlXvuG9iZggz+sU1d4bRgIGASwyWqjxu3FM0g==",
|
|
2662
|
+
"dev": true,
|
|
2663
|
+
"license": "MIT",
|
|
2664
|
+
"dependencies": {
|
|
2665
|
+
"@polka/url": "^1.0.0-next.24",
|
|
2666
|
+
"mrmime": "^2.0.0",
|
|
2667
|
+
"totalist": "^3.0.0"
|
|
2668
|
+
},
|
|
2669
|
+
"engines": {
|
|
2670
|
+
"node": ">=18"
|
|
2671
|
+
}
|
|
2672
|
+
},
|
|
2673
|
+
"node_modules/sorcery": {
|
|
2674
|
+
"version": "0.11.1",
|
|
2675
|
+
"resolved": "https://registry.npmjs.org/sorcery/-/sorcery-0.11.1.tgz",
|
|
2676
|
+
"integrity": "sha512-o7npfeJE6wi6J9l0/5LKshFzZ2rMatRiCDwYeDQaOzqdzRJwALhX7mk/A/ecg6wjMu7wdZbmXfD2S/vpOg0bdQ==",
|
|
2677
|
+
"dev": true,
|
|
2678
|
+
"license": "MIT",
|
|
2679
|
+
"dependencies": {
|
|
2680
|
+
"@jridgewell/sourcemap-codec": "^1.4.14",
|
|
2681
|
+
"buffer-crc32": "^1.0.0",
|
|
2682
|
+
"minimist": "^1.2.0",
|
|
2683
|
+
"sander": "^0.5.0"
|
|
2684
|
+
},
|
|
2685
|
+
"bin": {
|
|
2686
|
+
"sorcery": "bin/sorcery"
|
|
2687
|
+
}
|
|
2688
|
+
},
|
|
2689
|
+
"node_modules/source-map": {
|
|
2690
|
+
"version": "0.5.7",
|
|
2691
|
+
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
|
|
2692
|
+
"integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==",
|
|
2693
|
+
"license": "BSD-3-Clause",
|
|
2694
|
+
"engines": {
|
|
2695
|
+
"node": ">=0.10.0"
|
|
2696
|
+
}
|
|
2697
|
+
},
|
|
2698
|
+
"node_modules/source-map-js": {
|
|
2699
|
+
"version": "1.2.1",
|
|
2700
|
+
"resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
|
|
2701
|
+
"integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
|
|
2702
|
+
"dev": true,
|
|
2703
|
+
"license": "BSD-3-Clause",
|
|
2704
|
+
"engines": {
|
|
2705
|
+
"node": ">=0.10.0"
|
|
2706
|
+
}
|
|
2707
|
+
},
|
|
2708
|
+
"node_modules/strip-indent": {
|
|
2709
|
+
"version": "3.0.0",
|
|
2710
|
+
"resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz",
|
|
2711
|
+
"integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==",
|
|
2712
|
+
"dev": true,
|
|
2713
|
+
"license": "MIT",
|
|
2714
|
+
"dependencies": {
|
|
2715
|
+
"min-indent": "^1.0.0"
|
|
2716
|
+
},
|
|
2717
|
+
"engines": {
|
|
2718
|
+
"node": ">=8"
|
|
2719
|
+
}
|
|
2720
|
+
},
|
|
2721
|
+
"node_modules/stylis": {
|
|
2722
|
+
"version": "4.2.0",
|
|
2723
|
+
"resolved": "https://registry.npmjs.org/stylis/-/stylis-4.2.0.tgz",
|
|
2724
|
+
"integrity": "sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==",
|
|
2725
|
+
"license": "MIT"
|
|
2726
|
+
},
|
|
2727
|
+
"node_modules/supports-preserve-symlinks-flag": {
|
|
2728
|
+
"version": "1.0.0",
|
|
2729
|
+
"resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
|
|
2730
|
+
"integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
|
|
2731
|
+
"license": "MIT",
|
|
2732
|
+
"engines": {
|
|
2733
|
+
"node": ">= 0.4"
|
|
2734
|
+
},
|
|
2735
|
+
"funding": {
|
|
2736
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
2737
|
+
}
|
|
2738
|
+
},
|
|
2739
|
+
"node_modules/svelte": {
|
|
2740
|
+
"version": "4.2.20",
|
|
2741
|
+
"resolved": "https://registry.npmjs.org/svelte/-/svelte-4.2.20.tgz",
|
|
2742
|
+
"integrity": "sha512-eeEgGc2DtiUil5ANdtd8vPwt9AgaMdnuUFnPft9F5oMvU/FHu5IHFic+p1dR/UOB7XU2mX2yHW+NcTch4DCh5Q==",
|
|
2743
|
+
"dev": true,
|
|
2744
|
+
"license": "MIT",
|
|
2745
|
+
"dependencies": {
|
|
2746
|
+
"@ampproject/remapping": "^2.2.1",
|
|
2747
|
+
"@jridgewell/sourcemap-codec": "^1.4.15",
|
|
2748
|
+
"@jridgewell/trace-mapping": "^0.3.18",
|
|
2749
|
+
"@types/estree": "^1.0.1",
|
|
2750
|
+
"acorn": "^8.9.0",
|
|
2751
|
+
"aria-query": "^5.3.0",
|
|
2752
|
+
"axobject-query": "^4.0.0",
|
|
2753
|
+
"code-red": "^1.0.3",
|
|
2754
|
+
"css-tree": "^2.3.1",
|
|
2755
|
+
"estree-walker": "^3.0.3",
|
|
2756
|
+
"is-reference": "^3.0.1",
|
|
2757
|
+
"locate-character": "^3.0.0",
|
|
2758
|
+
"magic-string": "^0.30.4",
|
|
2759
|
+
"periscopic": "^3.1.0"
|
|
2760
|
+
},
|
|
2761
|
+
"engines": {
|
|
2762
|
+
"node": ">=16"
|
|
2763
|
+
}
|
|
2764
|
+
},
|
|
2765
|
+
"node_modules/svelte-check": {
|
|
2766
|
+
"version": "3.8.6",
|
|
2767
|
+
"resolved": "https://registry.npmjs.org/svelte-check/-/svelte-check-3.8.6.tgz",
|
|
2768
|
+
"integrity": "sha512-ij0u4Lw/sOTREP13BdWZjiXD/BlHE6/e2e34XzmVmsp5IN4kVa3PWP65NM32JAgwjZlwBg/+JtiNV1MM8khu0Q==",
|
|
2769
|
+
"dev": true,
|
|
2770
|
+
"license": "MIT",
|
|
2771
|
+
"dependencies": {
|
|
2772
|
+
"@jridgewell/trace-mapping": "^0.3.17",
|
|
2773
|
+
"chokidar": "^3.4.1",
|
|
2774
|
+
"picocolors": "^1.0.0",
|
|
2775
|
+
"sade": "^1.7.4",
|
|
2776
|
+
"svelte-preprocess": "^5.1.3",
|
|
2777
|
+
"typescript": "^5.0.3"
|
|
2778
|
+
},
|
|
2779
|
+
"bin": {
|
|
2780
|
+
"svelte-check": "bin/svelte-check"
|
|
2781
|
+
},
|
|
2782
|
+
"peerDependencies": {
|
|
2783
|
+
"svelte": "^3.55.0 || ^4.0.0-next.0 || ^4.0.0 || ^5.0.0-next.0"
|
|
2784
|
+
}
|
|
2785
|
+
},
|
|
2786
|
+
"node_modules/svelte-hmr": {
|
|
2787
|
+
"version": "0.16.0",
|
|
2788
|
+
"resolved": "https://registry.npmjs.org/svelte-hmr/-/svelte-hmr-0.16.0.tgz",
|
|
2789
|
+
"integrity": "sha512-Gyc7cOS3VJzLlfj7wKS0ZnzDVdv3Pn2IuVeJPk9m2skfhcu5bq3wtIZyQGggr7/Iim5rH5cncyQft/kRLupcnA==",
|
|
2790
|
+
"dev": true,
|
|
2791
|
+
"license": "ISC",
|
|
2792
|
+
"engines": {
|
|
2793
|
+
"node": "^12.20 || ^14.13.1 || >= 16"
|
|
2794
|
+
},
|
|
2795
|
+
"peerDependencies": {
|
|
2796
|
+
"svelte": "^3.19.0 || ^4.0.0"
|
|
2797
|
+
}
|
|
2798
|
+
},
|
|
2799
|
+
"node_modules/svelte-preprocess": {
|
|
2800
|
+
"version": "5.1.4",
|
|
2801
|
+
"resolved": "https://registry.npmjs.org/svelte-preprocess/-/svelte-preprocess-5.1.4.tgz",
|
|
2802
|
+
"integrity": "sha512-IvnbQ6D6Ao3Gg6ftiM5tdbR6aAETwjhHV+UKGf5bHGYR69RQvF1ho0JKPcbUON4vy4R7zom13jPjgdOWCQ5hDA==",
|
|
2803
|
+
"dev": true,
|
|
2804
|
+
"hasInstallScript": true,
|
|
2805
|
+
"license": "MIT",
|
|
2806
|
+
"dependencies": {
|
|
2807
|
+
"@types/pug": "^2.0.6",
|
|
2808
|
+
"detect-indent": "^6.1.0",
|
|
2809
|
+
"magic-string": "^0.30.5",
|
|
2810
|
+
"sorcery": "^0.11.0",
|
|
2811
|
+
"strip-indent": "^3.0.0"
|
|
2812
|
+
},
|
|
2813
|
+
"engines": {
|
|
2814
|
+
"node": ">= 16.0.0"
|
|
2815
|
+
},
|
|
2816
|
+
"peerDependencies": {
|
|
2817
|
+
"@babel/core": "^7.10.2",
|
|
2818
|
+
"coffeescript": "^2.5.1",
|
|
2819
|
+
"less": "^3.11.3 || ^4.0.0",
|
|
2820
|
+
"postcss": "^7 || ^8",
|
|
2821
|
+
"postcss-load-config": "^2.1.0 || ^3.0.0 || ^4.0.0 || ^5.0.0",
|
|
2822
|
+
"pug": "^3.0.0",
|
|
2823
|
+
"sass": "^1.26.8",
|
|
2824
|
+
"stylus": "^0.55.0",
|
|
2825
|
+
"sugarss": "^2.0.0 || ^3.0.0 || ^4.0.0",
|
|
2826
|
+
"svelte": "^3.23.0 || ^4.0.0-next.0 || ^4.0.0 || ^5.0.0-next.0",
|
|
2827
|
+
"typescript": ">=3.9.5 || ^4.0.0 || ^5.0.0"
|
|
2828
|
+
},
|
|
2829
|
+
"peerDependenciesMeta": {
|
|
2830
|
+
"@babel/core": {
|
|
2831
|
+
"optional": true
|
|
2832
|
+
},
|
|
2833
|
+
"coffeescript": {
|
|
2834
|
+
"optional": true
|
|
2835
|
+
},
|
|
2836
|
+
"less": {
|
|
2837
|
+
"optional": true
|
|
2838
|
+
},
|
|
2839
|
+
"postcss": {
|
|
2840
|
+
"optional": true
|
|
2841
|
+
},
|
|
2842
|
+
"postcss-load-config": {
|
|
2843
|
+
"optional": true
|
|
2844
|
+
},
|
|
2845
|
+
"pug": {
|
|
2846
|
+
"optional": true
|
|
2847
|
+
},
|
|
2848
|
+
"sass": {
|
|
2849
|
+
"optional": true
|
|
2850
|
+
},
|
|
2851
|
+
"stylus": {
|
|
2852
|
+
"optional": true
|
|
2853
|
+
},
|
|
2854
|
+
"sugarss": {
|
|
2855
|
+
"optional": true
|
|
2856
|
+
},
|
|
2857
|
+
"typescript": {
|
|
2858
|
+
"optional": true
|
|
2859
|
+
}
|
|
2860
|
+
}
|
|
2861
|
+
},
|
|
2862
|
+
"node_modules/to-regex-range": {
|
|
2863
|
+
"version": "5.0.1",
|
|
2864
|
+
"resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
|
|
2865
|
+
"integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
|
|
2866
|
+
"dev": true,
|
|
2867
|
+
"license": "MIT",
|
|
2868
|
+
"dependencies": {
|
|
2869
|
+
"is-number": "^7.0.0"
|
|
2870
|
+
},
|
|
2871
|
+
"engines": {
|
|
2872
|
+
"node": ">=8.0"
|
|
2873
|
+
}
|
|
2874
|
+
},
|
|
2875
|
+
"node_modules/totalist": {
|
|
2876
|
+
"version": "3.0.1",
|
|
2877
|
+
"resolved": "https://registry.npmjs.org/totalist/-/totalist-3.0.1.tgz",
|
|
2878
|
+
"integrity": "sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==",
|
|
2879
|
+
"dev": true,
|
|
2880
|
+
"license": "MIT",
|
|
2881
|
+
"engines": {
|
|
2882
|
+
"node": ">=6"
|
|
2883
|
+
}
|
|
2884
|
+
},
|
|
2885
|
+
"node_modules/typescript": {
|
|
2886
|
+
"version": "5.9.2",
|
|
2887
|
+
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.2.tgz",
|
|
2888
|
+
"integrity": "sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==",
|
|
2889
|
+
"dev": true,
|
|
2890
|
+
"license": "Apache-2.0",
|
|
2891
|
+
"bin": {
|
|
2892
|
+
"tsc": "bin/tsc",
|
|
2893
|
+
"tsserver": "bin/tsserver"
|
|
2894
|
+
},
|
|
2895
|
+
"engines": {
|
|
2896
|
+
"node": ">=14.17"
|
|
2897
|
+
}
|
|
2898
|
+
},
|
|
2899
|
+
"node_modules/vite": {
|
|
2900
|
+
"version": "5.4.20",
|
|
2901
|
+
"resolved": "https://registry.npmjs.org/vite/-/vite-5.4.20.tgz",
|
|
2902
|
+
"integrity": "sha512-j3lYzGC3P+B5Yfy/pfKNgVEg4+UtcIJcVRt2cDjIOmhLourAqPqf8P7acgxeiSgUB7E3p2P8/3gNIgDLpwzs4g==",
|
|
2903
|
+
"dev": true,
|
|
2904
|
+
"license": "MIT",
|
|
2905
|
+
"dependencies": {
|
|
2906
|
+
"esbuild": "^0.21.3",
|
|
2907
|
+
"postcss": "^8.4.43",
|
|
2908
|
+
"rollup": "^4.20.0"
|
|
2909
|
+
},
|
|
2910
|
+
"bin": {
|
|
2911
|
+
"vite": "bin/vite.js"
|
|
2912
|
+
},
|
|
2913
|
+
"engines": {
|
|
2914
|
+
"node": "^18.0.0 || >=20.0.0"
|
|
2915
|
+
},
|
|
2916
|
+
"funding": {
|
|
2917
|
+
"url": "https://github.com/vitejs/vite?sponsor=1"
|
|
2918
|
+
},
|
|
2919
|
+
"optionalDependencies": {
|
|
2920
|
+
"fsevents": "~2.3.3"
|
|
2921
|
+
},
|
|
2922
|
+
"peerDependencies": {
|
|
2923
|
+
"@types/node": "^18.0.0 || >=20.0.0",
|
|
2924
|
+
"less": "*",
|
|
2925
|
+
"lightningcss": "^1.21.0",
|
|
2926
|
+
"sass": "*",
|
|
2927
|
+
"sass-embedded": "*",
|
|
2928
|
+
"stylus": "*",
|
|
2929
|
+
"sugarss": "*",
|
|
2930
|
+
"terser": "^5.4.0"
|
|
2931
|
+
},
|
|
2932
|
+
"peerDependenciesMeta": {
|
|
2933
|
+
"@types/node": {
|
|
2934
|
+
"optional": true
|
|
2935
|
+
},
|
|
2936
|
+
"less": {
|
|
2937
|
+
"optional": true
|
|
2938
|
+
},
|
|
2939
|
+
"lightningcss": {
|
|
2940
|
+
"optional": true
|
|
2941
|
+
},
|
|
2942
|
+
"sass": {
|
|
2943
|
+
"optional": true
|
|
2944
|
+
},
|
|
2945
|
+
"sass-embedded": {
|
|
2946
|
+
"optional": true
|
|
2947
|
+
},
|
|
2948
|
+
"stylus": {
|
|
2949
|
+
"optional": true
|
|
2950
|
+
},
|
|
2951
|
+
"sugarss": {
|
|
2952
|
+
"optional": true
|
|
2953
|
+
},
|
|
2954
|
+
"terser": {
|
|
2955
|
+
"optional": true
|
|
2956
|
+
}
|
|
2957
|
+
}
|
|
2958
|
+
},
|
|
2959
|
+
"node_modules/vitefu": {
|
|
2960
|
+
"version": "0.2.5",
|
|
2961
|
+
"resolved": "https://registry.npmjs.org/vitefu/-/vitefu-0.2.5.tgz",
|
|
2962
|
+
"integrity": "sha512-SgHtMLoqaeeGnd2evZ849ZbACbnwQCIwRH57t18FxcXoZop0uQu0uzlIhJBlF/eWVzuce0sHeqPcDo+evVcg8Q==",
|
|
2963
|
+
"dev": true,
|
|
2964
|
+
"license": "MIT",
|
|
2965
|
+
"peerDependencies": {
|
|
2966
|
+
"vite": "^3.0.0 || ^4.0.0 || ^5.0.0"
|
|
2967
|
+
},
|
|
2968
|
+
"peerDependenciesMeta": {
|
|
2969
|
+
"vite": {
|
|
2970
|
+
"optional": true
|
|
2971
|
+
}
|
|
2972
|
+
}
|
|
2973
|
+
},
|
|
2974
|
+
"node_modules/wrappy": {
|
|
2975
|
+
"version": "1.0.2",
|
|
2976
|
+
"resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
|
|
2977
|
+
"integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
|
|
2978
|
+
"dev": true,
|
|
2979
|
+
"license": "ISC"
|
|
2980
|
+
},
|
|
2981
|
+
"node_modules/yaml": {
|
|
2982
|
+
"version": "1.10.2",
|
|
2983
|
+
"resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz",
|
|
2984
|
+
"integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==",
|
|
2985
|
+
"license": "ISC",
|
|
2986
|
+
"engines": {
|
|
2987
|
+
"node": ">= 6"
|
|
2988
|
+
}
|
|
2989
|
+
},
|
|
2990
|
+
"node_modules/zod": {
|
|
2991
|
+
"version": "3.25.76",
|
|
2992
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
|
|
2993
|
+
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
|
|
2994
|
+
"license": "MIT",
|
|
2995
|
+
"funding": {
|
|
2996
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
2997
|
+
}
|
|
2998
|
+
}
|
|
2999
|
+
}
|
|
3000
|
+
}
|