koishi-plugin-chat-patch 3.0.2 → 5.0.0
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/client/vue/index.vue +60 -634
- package/client/web/env.d.ts +56 -0
- package/client/web/index.html +21 -0
- package/client/web/package-lock.json +3419 -0
- package/client/web/package.json +62 -0
- package/client/web/public/bcui/css/color-dark.css +35 -0
- package/client/web/public/bcui/css/color-light.css +35 -0
- package/client/web/public/bcui/css/style.css +468 -0
- package/client/web/public/bcui/js/main.js +193 -0
- package/client/web/public/css/append-dark.css +13 -0
- package/client/web/public/css/append-light.css +13 -0
- package/client/web/public/css/append-napcat-dark.css +14 -0
- package/client/web/public/css/append-napcat-light.css +14 -0
- package/client/web/public/favicon.ico +0 -0
- package/client/web/public/img/icons/icon-for-fuck-apple.png +0 -0
- package/client/web/public/img/icons/icon-maskable.png +0 -0
- package/client/web/public/img/icons/icon.png +0 -0
- package/client/web/public/img/icons/icon.svg +10 -0
- package/client/web/public/robots.txt +2 -0
- package/client/web/public/sw.js +58 -0
- package/client/web/scripts/copy-bcui.mjs +17 -0
- package/client/web/src/App.vue +1127 -0
- package/client/web/src/assets/css/append/append_darwin.css +68 -0
- package/client/web/src/assets/css/append/append_full_vibrancy.css +290 -0
- package/client/web/src/assets/css/append/append_linux.css +125 -0
- package/client/web/src/assets/css/append/append_linux_vibrancy.css +22 -0
- package/client/web/src/assets/css/append/append_napcat.css +35 -0
- package/client/web/src/assets/css/append/append_new.css +843 -0
- package/client/web/src/assets/css/append/append_vibrancy.css +113 -0
- package/client/web/src/assets/css/append/append_win32.css +109 -0
- package/client/web/src/assets/css/append/mobile/append_mobile_horizontal.css +349 -0
- package/client/web/src/assets/css/append/mobile/append_mobile_vertical.css +96 -0
- package/client/web/src/assets/css/chat.css +2104 -0
- package/client/web/src/assets/css/msg.css +941 -0
- package/client/web/src/assets/css/options.css +811 -0
- package/client/web/src/assets/css/sys_notice.css +62 -0
- package/client/web/src/assets/css/view.css +2105 -0
- package/client/web/src/assets/font//346/226/271/346/255/243/345/226/265/345/221/234/344/275/223.ttf +0 -0
- package/client/web/src/assets/img/Vue.png +0 -0
- package/client/web/src/assets/img/cakes.svg +189 -0
- package/client/web/src/assets/img/icons/AppIcon.png +0 -0
- package/client/web/src/assets/img/icons/AppIconDark.png +0 -0
- package/client/web/src/assets/img/icons/CapacitorAppIcon.png +0 -0
- package/client/web/src/assets/img/icons/CapacitorAppIconDark.png +0 -0
- package/client/web/src/assets/img/icons/NapcatAppIcon.png +0 -0
- package/client/web/src/assets/img/icons/NapcatAppIconDark.png +0 -0
- package/client/web/src/assets/img/icons/exit.png +0 -0
- package/client/web/src/assets/img/icons/pen.png +0 -0
- package/client/web/src/assets/img/stars.svg +89 -0
- package/client/web/src/assets/img//346/234/237/345/276/205.png +0 -0
- package/client/web/src/assets/l10n/_About I10n.md +35 -0
- package/client/web/src/assets/l10n/_l10nconfig.json +7 -0
- package/client/web/src/assets/l10n/zh-CN.po +1941 -0
- package/client/web/src/assets/logo.png +0 -0
- package/client/web/src/assets/pathMap/LLOneBot.yaml +2 -0
- package/client/web/src/assets/pathMap/Lagrange.OneBot.yaml +180 -0
- package/client/web/src/assets/pathMap/NapCat.Onebot.yaml +224 -0
- package/client/web/src/assets/pathMap/SnowLuma.yaml +80 -0
- package/client/web/src/assets/qed.txt +1 -0
- package/client/web/src/components/AboutPan.vue +197 -0
- package/client/web/src/components/BulletinBody.vue +129 -0
- package/client/web/src/components/DepPan.vue +310 -0
- package/client/web/src/components/EmojiFace.vue +32 -0
- package/client/web/src/components/FacePan.vue +461 -0
- package/client/web/src/components/FileBody.vue +129 -0
- package/client/web/src/components/FileManager.vue +532 -0
- package/client/web/src/components/FriendBody.vue +54 -0
- package/client/web/src/components/GlobalSessionSearchBar.vue +301 -0
- package/client/web/src/components/History.vue +49 -0
- package/client/web/src/components/LazyLottie.vue +82 -0
- package/client/web/src/components/MergePan.vue +127 -0
- package/client/web/src/components/MsgBody.vue +1478 -0
- package/client/web/src/components/MusicPlayer.vue +549 -0
- package/client/web/src/components/NoticeBody.vue +168 -0
- package/client/web/src/components/QzonePermissionPan.vue +150 -0
- package/client/web/src/components/RawMsgRenderPreviewPan.vue +190 -0
- package/client/web/src/components/ThemeColorPickerPan.vue +420 -0
- package/client/web/src/components/TinySessionBody.vue +51 -0
- package/client/web/src/components/UmamiInfoPan.vue +1549 -0
- package/client/web/src/components/UpdatePan.vue +263 -0
- package/client/web/src/components/ViewerCom.vue +1360 -0
- package/client/web/src/components/VoiceMsg.vue +626 -0
- package/client/web/src/components/WelPan.vue +894 -0
- package/client/web/src/components/msg-body/.gitkeep +0 -0
- package/client/web/src/components/msg-component/JsonSegComp.vue +138 -0
- package/client/web/src/components/msg-component/XmlSegComp.vue +132 -0
- package/client/web/src/components/msg-component/jsonComp/AutoReply.vue +97 -0
- package/client/web/src/components/msg-component/jsonComp/Contact.lua.vue +129 -0
- package/client/web/src/components/msg-component/jsonComp/Feed.lua.vue +94 -0
- package/client/web/src/components/msg-component/jsonComp/Forum.vue +84 -0
- package/client/web/src/components/msg-component/jsonComp/Mannounce.vue +111 -0
- package/client/web/src/components/msg-component/jsonComp/Map.vue +52 -0
- package/client/web/src/components/msg-component/jsonComp/Miniapp.lua.vue +53 -0
- package/client/web/src/components/msg-component/jsonComp/Miniapp.vue +69 -0
- package/client/web/src/components/msg-component/jsonComp/Music.lua.vue +135 -0
- package/client/web/src/components/msg-component/jsonComp/Tuwen.lua.vue +56 -0
- package/client/web/src/components/notice-component/.gitkeep +0 -0
- package/client/web/src/components/notice-component/MealHungryPan.vue +119 -0
- package/client/web/src/components/tooltip/CustomFaceTooltip.vue +22 -0
- package/client/web/src/components/tooltip/Tooltip.vue +50 -0
- package/client/web/src/components/tooltip/Tooltips.vue +14 -0
- package/client/web/src/components/tooltip/UserInfoTooltip.vue +69 -0
- package/client/web/src/function/base.ts +238 -0
- package/client/web/src/function/connect.ts +2042 -0
- package/client/web/src/function/debug.ts +10 -0
- package/client/web/src/function/elements/information.ts +141 -0
- package/client/web/src/function/elements/system.ts +101 -0
- package/client/web/src/function/elements/vueComp.ts +62 -0
- package/client/web/src/function/favicon.ts +76 -0
- package/client/web/src/function/input.ts +69 -0
- package/client/web/src/function/model/emoji.ts +127 -0
- package/client/web/src/function/model/img.ts +150 -0
- package/client/web/src/function/model/msg-body.ts +51 -0
- package/client/web/src/function/msg.ts +2674 -0
- package/client/web/src/function/notify.ts +225 -0
- package/client/web/src/function/option.ts +749 -0
- package/client/web/src/function/satori-model.ts +818 -0
- package/client/web/src/function/satori.ts +325 -0
- package/client/web/src/function/sender.ts +178 -0
- package/client/web/src/function/tooltip.ts +49 -0
- package/client/web/src/function/utils/appUtil.ts +2288 -0
- package/client/web/src/function/utils/avatarUtil.ts +31 -0
- package/client/web/src/function/utils/backgroundUtil.ts +110 -0
- package/client/web/src/function/utils/linkViewUtil.ts +101 -0
- package/client/web/src/function/utils/localHistoryUtil.ts +517 -0
- package/client/web/src/function/utils/msgUtil.ts +1242 -0
- package/client/web/src/function/utils/pinyin.ts +141 -0
- package/client/web/src/function/utils/recordUtil.ts +187 -0
- package/client/web/src/function/utils/sessionUtil.ts +114 -0
- package/client/web/src/function/utils/systemUtil.ts +664 -0
- package/client/web/src/main.ts +91 -0
- package/client/web/src/pages/Chat.vue +3453 -0
- package/client/web/src/pages/Friends.vue +636 -0
- package/client/web/src/pages/Info.vue +717 -0
- package/client/web/src/pages/Messages.vue +875 -0
- package/client/web/src/pages/Options.vue +82 -0
- package/client/web/src/pages/Qzone.vue +1178 -0
- package/client/web/src/pages/chat-view/ChatDanmaku.vue +759 -0
- package/client/web/src/pages/chat-view/ChatGlagame.vue +642 -0
- package/client/web/src/pages/chat-view/ChatTerminal.vue +1044 -0
- package/client/web/src/pages/chat-view/SystemNotice.vue +171 -0
- package/client/web/src/pages/options/OptAccount.vue +107 -0
- package/client/web/src/pages/options/OptAddon.vue +185 -0
- package/client/web/src/pages/options/OptDev.vue +704 -0
- package/client/web/src/pages/options/OptFunction.vue +403 -0
- package/client/web/src/pages/options/OptInfo.vue +165 -0
- package/client/web/src/pages/options/OptView.vue +846 -0
- package/client/web/src/runtime/backend.ts +310 -0
- package/client/web/src/state/auth.ts +14 -0
- package/client/web/src/state/chat.ts +36 -0
- package/client/web/src/state/connection.ts +20 -0
- package/client/web/src/state/contact.ts +37 -0
- package/client/web/src/state/qzone.ts +18 -0
- package/client/web/src/state/sessionHistory.ts +25 -0
- package/client/web/src/state/settings.ts +18 -0
- package/client/web/src/state/sticker.ts +10 -0
- package/client/web/src/state/ui.ts +56 -0
- package/client/web/tsconfig.json +27 -0
- package/client/web/tsconfig.tsbuildinfo +1 -0
- package/client/web/vite.config.ts +33 -0
- package/dist/index.js +1 -12
- package/dist/style.css +1 -1
- package/lib/index.js +2070 -2077
- package/package.json +15 -2
- package/readme.md +0 -22
- package/src/bootstrap.ts +71 -0
- package/src/cache.ts +319 -0
- package/src/config.ts +23 -35
- package/src/database.ts +650 -0
- package/src/index.ts +27 -59
- package/src/media.ts +302 -0
- package/src/recorder.ts +175 -0
- package/src/self-message.ts +456 -0
- package/src/server.d.ts +26 -0
- package/src/types.ts +108 -48
- package/src/web.ts +712 -0
- package/client/vue/chat-logic.ts +0 -683
- package/client/vue/composables/useChatActions.ts +0 -61
- package/client/vue/composables/useChatData.ts +0 -185
- package/client/vue/composables/useImageCache.ts +0 -281
- package/client/vue/composables/useVideoCache.ts +0 -125
- package/client/vue/types.ts +0 -72
- package/lib/api-handlers.d.ts +0 -25
- package/lib/config.d.ts +0 -14
- package/lib/file-manager.d.ts +0 -124
- package/lib/index.d.ts +0 -17
- package/lib/logger.d.ts +0 -9
- package/lib/message-handler.d.ts +0 -35
- package/lib/types.d.ts +0 -57
- package/lib/utils.d.ts +0 -18
- package/src/api-handlers.ts +0 -646
- package/src/file-manager.ts +0 -1436
- package/src/message-handler.ts +0 -507
- package/src/utils.ts +0 -189
|
@@ -0,0 +1,3419 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "chat-patch-web",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"lockfileVersion": 3,
|
|
5
|
+
"requires": true,
|
|
6
|
+
"packages": {
|
|
7
|
+
"": {
|
|
8
|
+
"name": "chat-patch-web",
|
|
9
|
+
"version": "1.0.0",
|
|
10
|
+
"dependencies": {
|
|
11
|
+
"@ai-sdk/openai-compatible": "^2.0.38",
|
|
12
|
+
"@capacitor/core": "^8.0.0",
|
|
13
|
+
"@capacitor/keyboard": "^8.0.0",
|
|
14
|
+
"@capacitor/local-notifications": "^8.0.0",
|
|
15
|
+
"@electron-toolkit/preload": "^3.0.0",
|
|
16
|
+
"@fortawesome/fontawesome-svg-core": "^6.7.0",
|
|
17
|
+
"@fortawesome/free-regular-svg-icons": "^6.7.0",
|
|
18
|
+
"@fortawesome/free-solid-svg-icons": "^6.7.0",
|
|
19
|
+
"@fortawesome/vue-fontawesome": "^3.0.8",
|
|
20
|
+
"@stapxs/umami-logger-typescript": "^1.0.15",
|
|
21
|
+
"@tauri-apps/api": "~2.11.1",
|
|
22
|
+
"@tauri-apps/plugin-clipboard-manager": "^2.3.0",
|
|
23
|
+
"@vuemap/vue-amap": "^2.1.17",
|
|
24
|
+
"ai": "^6.0.145",
|
|
25
|
+
"animejs": "^3.2.2",
|
|
26
|
+
"browser-image-compression": "^2.0.2",
|
|
27
|
+
"detect-browser": "^5.3.0",
|
|
28
|
+
"echarts": "^5.5.1",
|
|
29
|
+
"js-file-downloader": "^1.1.25",
|
|
30
|
+
"jsonpath": "^1.1.1",
|
|
31
|
+
"markdown-it": "^14.1.1",
|
|
32
|
+
"pinia": "^3.0.3",
|
|
33
|
+
"pofile": "^1.1.4",
|
|
34
|
+
"querystring": "^0.2.1",
|
|
35
|
+
"spacingjs": "^1.0.8",
|
|
36
|
+
"vconsole": "^3.15.1",
|
|
37
|
+
"vue": "^3.5.13",
|
|
38
|
+
"vue-clipboard2": "^0.3.3",
|
|
39
|
+
"vue-echarts": "^7.0.3",
|
|
40
|
+
"vue-i18n": "^10.0.7",
|
|
41
|
+
"vue-virtual-scroller": "^2.0.0-beta.8",
|
|
42
|
+
"vue3-bcui": "^0.3.0",
|
|
43
|
+
"vue3-danmaku": "^1.6.1",
|
|
44
|
+
"vue3-lottie": "^3.3.1",
|
|
45
|
+
"xss": "^1.0.15",
|
|
46
|
+
"zod": "^4.3.6"
|
|
47
|
+
},
|
|
48
|
+
"devDependencies": {
|
|
49
|
+
"@modyfi/vite-plugin-yaml": "^1.1.0",
|
|
50
|
+
"@types/jsonpath": "^0.2.4",
|
|
51
|
+
"@types/markdown-it": "^14.1.2",
|
|
52
|
+
"@types/node": "^25.2.3",
|
|
53
|
+
"@vitejs/plugin-vue": "^5.2.4",
|
|
54
|
+
"rollup-plugin-node-polyfills": "^0.2.1",
|
|
55
|
+
"typescript": "^5.8.3",
|
|
56
|
+
"vite": "^6.3.5",
|
|
57
|
+
"vue-tsc": "^2.2.12"
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
"node_modules/@ai-sdk/gateway": {
|
|
61
|
+
"version": "3.0.184",
|
|
62
|
+
"resolved": "https://registry.npmjs.org/@ai-sdk/gateway/-/gateway-3.0.184.tgz",
|
|
63
|
+
"integrity": "sha512-7SuKsT4RS9lm6ShODj0vzS+S1ZKw5GukA7x3gg3t/gVwk0bu7l3XXC3sdEdBsBlTP97KklMYdZHmjcJoOVt67Q==",
|
|
64
|
+
"license": "Apache-2.0",
|
|
65
|
+
"dependencies": {
|
|
66
|
+
"@ai-sdk/provider": "3.0.15",
|
|
67
|
+
"@ai-sdk/provider-utils": "4.0.49",
|
|
68
|
+
"@vercel/oidc": "3.2.0"
|
|
69
|
+
},
|
|
70
|
+
"engines": {
|
|
71
|
+
"node": ">=18"
|
|
72
|
+
},
|
|
73
|
+
"peerDependencies": {
|
|
74
|
+
"zod": "^3.25.76 || ^4.1.8"
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
"node_modules/@ai-sdk/openai-compatible": {
|
|
78
|
+
"version": "2.0.73",
|
|
79
|
+
"resolved": "https://registry.npmjs.org/@ai-sdk/openai-compatible/-/openai-compatible-2.0.73.tgz",
|
|
80
|
+
"integrity": "sha512-nScN1KXSarMnBMUCxMRFTwTKx+Yd+rwtve1/upYGuxVI5XefaGAQ3QwGwQL5T0KuHVDIaddIxQCFeh1AKHMhUg==",
|
|
81
|
+
"license": "Apache-2.0",
|
|
82
|
+
"dependencies": {
|
|
83
|
+
"@ai-sdk/provider": "3.0.15",
|
|
84
|
+
"@ai-sdk/provider-utils": "4.0.49"
|
|
85
|
+
},
|
|
86
|
+
"engines": {
|
|
87
|
+
"node": ">=18"
|
|
88
|
+
},
|
|
89
|
+
"peerDependencies": {
|
|
90
|
+
"zod": "^3.25.76 || ^4.1.8"
|
|
91
|
+
}
|
|
92
|
+
},
|
|
93
|
+
"node_modules/@ai-sdk/provider": {
|
|
94
|
+
"version": "3.0.15",
|
|
95
|
+
"resolved": "https://registry.npmjs.org/@ai-sdk/provider/-/provider-3.0.15.tgz",
|
|
96
|
+
"integrity": "sha512-XeZW1CcDF2GMbH4wejW6xBRI2QCOgnkVYUnxoeDadB1mf85riL2bMUeDoh+6gJ/r4mjNfzUPW8OjLjvwTP0u1Q==",
|
|
97
|
+
"license": "Apache-2.0",
|
|
98
|
+
"dependencies": {
|
|
99
|
+
"json-schema": "^0.4.0"
|
|
100
|
+
},
|
|
101
|
+
"engines": {
|
|
102
|
+
"node": ">=18"
|
|
103
|
+
}
|
|
104
|
+
},
|
|
105
|
+
"node_modules/@ai-sdk/provider-utils": {
|
|
106
|
+
"version": "4.0.49",
|
|
107
|
+
"resolved": "https://registry.npmjs.org/@ai-sdk/provider-utils/-/provider-utils-4.0.49.tgz",
|
|
108
|
+
"integrity": "sha512-8e7pd+82bobqrFOaD5dG/PiEuvLYr5olaE3I56ch0jipR0H7sGD6ohwTUynv6k8O8QidWiyIbEsZCtr/2dyXIA==",
|
|
109
|
+
"license": "Apache-2.0",
|
|
110
|
+
"dependencies": {
|
|
111
|
+
"@ai-sdk/provider": "3.0.15",
|
|
112
|
+
"@standard-schema/spec": "^1.1.0",
|
|
113
|
+
"eventsource-parser": "^3.0.8",
|
|
114
|
+
"undici": "^6.28.0"
|
|
115
|
+
},
|
|
116
|
+
"engines": {
|
|
117
|
+
"node": ">=18.17"
|
|
118
|
+
},
|
|
119
|
+
"peerDependencies": {
|
|
120
|
+
"zod": "^3.25.76 || ^4.1.8"
|
|
121
|
+
}
|
|
122
|
+
},
|
|
123
|
+
"node_modules/@babel/helper-string-parser": {
|
|
124
|
+
"version": "7.29.7",
|
|
125
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.29.7.tgz",
|
|
126
|
+
"integrity": "sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==",
|
|
127
|
+
"license": "MIT",
|
|
128
|
+
"engines": {
|
|
129
|
+
"node": ">=6.9.0"
|
|
130
|
+
}
|
|
131
|
+
},
|
|
132
|
+
"node_modules/@babel/helper-validator-identifier": {
|
|
133
|
+
"version": "7.29.7",
|
|
134
|
+
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.29.7.tgz",
|
|
135
|
+
"integrity": "sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==",
|
|
136
|
+
"license": "MIT",
|
|
137
|
+
"engines": {
|
|
138
|
+
"node": ">=6.9.0"
|
|
139
|
+
}
|
|
140
|
+
},
|
|
141
|
+
"node_modules/@babel/parser": {
|
|
142
|
+
"version": "7.29.8",
|
|
143
|
+
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.8.tgz",
|
|
144
|
+
"integrity": "sha512-E8lTAYNB1KW+FH+VGJuZM1ioAx2E6oVlvQFRrf5P8ZZmsiJXYAD9vTFV7yyEURNzgh1dFqMZuO6tUwcARbqFCA==",
|
|
145
|
+
"license": "MIT",
|
|
146
|
+
"dependencies": {
|
|
147
|
+
"@babel/types": "^7.29.8"
|
|
148
|
+
},
|
|
149
|
+
"bin": {
|
|
150
|
+
"parser": "bin/babel-parser.js"
|
|
151
|
+
},
|
|
152
|
+
"engines": {
|
|
153
|
+
"node": ">=6.0.0"
|
|
154
|
+
}
|
|
155
|
+
},
|
|
156
|
+
"node_modules/@babel/runtime": {
|
|
157
|
+
"version": "7.29.7",
|
|
158
|
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.29.7.tgz",
|
|
159
|
+
"integrity": "sha512-Nq8OhGWiZIZGV6hLHoyAKLLcJihP/xFeBMGJoUrxTX2psI8dCifzLhZISFb+VWS3wFMRDmCGw5R+dOySCqPLhw==",
|
|
160
|
+
"license": "MIT",
|
|
161
|
+
"engines": {
|
|
162
|
+
"node": ">=6.9.0"
|
|
163
|
+
}
|
|
164
|
+
},
|
|
165
|
+
"node_modules/@babel/types": {
|
|
166
|
+
"version": "7.29.8",
|
|
167
|
+
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.8.tgz",
|
|
168
|
+
"integrity": "sha512-Vj1jF3cPfxg7OAfoI7QnVKLoILlm2JF9pnVHrX8qx7AHMiYWT+NDAA7jChlNgRS4WTLc/fD1lXLmPixluj+3Gg==",
|
|
169
|
+
"license": "MIT",
|
|
170
|
+
"dependencies": {
|
|
171
|
+
"@babel/helper-string-parser": "^7.29.7",
|
|
172
|
+
"@babel/helper-validator-identifier": "^7.29.7"
|
|
173
|
+
},
|
|
174
|
+
"engines": {
|
|
175
|
+
"node": ">=6.9.0"
|
|
176
|
+
}
|
|
177
|
+
},
|
|
178
|
+
"node_modules/@capacitor/core": {
|
|
179
|
+
"version": "8.5.0",
|
|
180
|
+
"resolved": "https://registry.npmjs.org/@capacitor/core/-/core-8.5.0.tgz",
|
|
181
|
+
"integrity": "sha512-Ca4krtqH1hothjtBIwf2J2TW7IhYq1ujp8QeItTiJohNsqij8ja2DYYH3DU0l8RmxCWaBAFTGA2TgOgOMCSNsQ==",
|
|
182
|
+
"license": "MIT",
|
|
183
|
+
"dependencies": {
|
|
184
|
+
"tslib": "^2.1.0"
|
|
185
|
+
}
|
|
186
|
+
},
|
|
187
|
+
"node_modules/@capacitor/keyboard": {
|
|
188
|
+
"version": "8.0.5",
|
|
189
|
+
"resolved": "https://registry.npmjs.org/@capacitor/keyboard/-/keyboard-8.0.5.tgz",
|
|
190
|
+
"integrity": "sha512-oFXygC4eKYA5l2MdpTR06L2M/4x6e2SLD5yS1T9+UBDKTkzyvhWKEhbYLUaTIBPpLKqlfGudJw1X73S1H9eUzQ==",
|
|
191
|
+
"license": "MIT",
|
|
192
|
+
"peerDependencies": {
|
|
193
|
+
"@capacitor/core": ">=8.0.0"
|
|
194
|
+
}
|
|
195
|
+
},
|
|
196
|
+
"node_modules/@capacitor/local-notifications": {
|
|
197
|
+
"version": "8.3.1",
|
|
198
|
+
"resolved": "https://registry.npmjs.org/@capacitor/local-notifications/-/local-notifications-8.3.1.tgz",
|
|
199
|
+
"integrity": "sha512-F7zu/+p/mIR958YP4axOkeI5hBKRaXDyYjbNPrAil2wWfd7OxScPSTvP9t85NpQ0eULVRu0/sntoxOg6ck477A==",
|
|
200
|
+
"license": "MIT",
|
|
201
|
+
"peerDependencies": {
|
|
202
|
+
"@capacitor/core": ">=8.0.0"
|
|
203
|
+
}
|
|
204
|
+
},
|
|
205
|
+
"node_modules/@electron-internal/extract-zip": {
|
|
206
|
+
"version": "1.0.5",
|
|
207
|
+
"resolved": "https://registry.npmjs.org/@electron-internal/extract-zip/-/extract-zip-1.0.5.tgz",
|
|
208
|
+
"integrity": "sha512-+bqFCP98pLI0Tt0XQo1TmlXtwjWchISndDOxCkEcIuUgXWpBnLyRI+2DU+mesvnMMX6L1XDqYNA0lXNDHd/yiA==",
|
|
209
|
+
"license": "BSD-2-Clause",
|
|
210
|
+
"peer": true,
|
|
211
|
+
"engines": {
|
|
212
|
+
"node": ">=22.12.0"
|
|
213
|
+
}
|
|
214
|
+
},
|
|
215
|
+
"node_modules/@electron-toolkit/preload": {
|
|
216
|
+
"version": "3.0.2",
|
|
217
|
+
"resolved": "https://registry.npmjs.org/@electron-toolkit/preload/-/preload-3.0.2.tgz",
|
|
218
|
+
"integrity": "sha512-TWWPToXd8qPRfSXwzf5KVhpXMfONaUuRAZJHsKthKgZR/+LqX1dZVSSClQ8OTAEduvLGdecljCsoT2jSshfoUg==",
|
|
219
|
+
"license": "MIT",
|
|
220
|
+
"peerDependencies": {
|
|
221
|
+
"electron": ">=13.0.0"
|
|
222
|
+
}
|
|
223
|
+
},
|
|
224
|
+
"node_modules/@electron/get": {
|
|
225
|
+
"version": "5.1.0",
|
|
226
|
+
"resolved": "https://registry.npmjs.org/@electron/get/-/get-5.1.0.tgz",
|
|
227
|
+
"integrity": "sha512-3kSBtG8ObcTVfXanm5vVJ6UnBLEVmVsRk1M+vGqCuMBV+XLCbJYuWQful+yIy0GQDsSlK0kHEriEHn7SPk4EnA==",
|
|
228
|
+
"license": "MIT",
|
|
229
|
+
"peer": true,
|
|
230
|
+
"dependencies": {
|
|
231
|
+
"debug": "^4.1.1",
|
|
232
|
+
"env-paths": "^3.0.0",
|
|
233
|
+
"graceful-fs": "^4.2.11",
|
|
234
|
+
"progress": "^2.0.3",
|
|
235
|
+
"semver": "^7.6.3",
|
|
236
|
+
"sumchecker": "^3.0.1"
|
|
237
|
+
},
|
|
238
|
+
"engines": {
|
|
239
|
+
"node": ">=22.12.0"
|
|
240
|
+
},
|
|
241
|
+
"optionalDependencies": {
|
|
242
|
+
"undici": "^7.24.4"
|
|
243
|
+
}
|
|
244
|
+
},
|
|
245
|
+
"node_modules/@electron/get/node_modules/undici": {
|
|
246
|
+
"version": "7.29.0",
|
|
247
|
+
"resolved": "https://registry.npmjs.org/undici/-/undici-7.29.0.tgz",
|
|
248
|
+
"integrity": "sha512-IDxfleLmmbSskfWSUATiN1nfn2rDuvnMOqb5CWR92iIfojA0Ud+ulOAAEQ57LPr9rWmsreUyf5lwyao+7GNNVw==",
|
|
249
|
+
"license": "MIT",
|
|
250
|
+
"optional": true,
|
|
251
|
+
"peer": true,
|
|
252
|
+
"engines": {
|
|
253
|
+
"node": ">=20.18.1"
|
|
254
|
+
}
|
|
255
|
+
},
|
|
256
|
+
"node_modules/@esbuild/aix-ppc64": {
|
|
257
|
+
"version": "0.25.12",
|
|
258
|
+
"resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.12.tgz",
|
|
259
|
+
"integrity": "sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==",
|
|
260
|
+
"cpu": [
|
|
261
|
+
"ppc64"
|
|
262
|
+
],
|
|
263
|
+
"dev": true,
|
|
264
|
+
"license": "MIT",
|
|
265
|
+
"optional": true,
|
|
266
|
+
"os": [
|
|
267
|
+
"aix"
|
|
268
|
+
],
|
|
269
|
+
"engines": {
|
|
270
|
+
"node": ">=18"
|
|
271
|
+
}
|
|
272
|
+
},
|
|
273
|
+
"node_modules/@esbuild/android-arm": {
|
|
274
|
+
"version": "0.25.12",
|
|
275
|
+
"resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.12.tgz",
|
|
276
|
+
"integrity": "sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==",
|
|
277
|
+
"cpu": [
|
|
278
|
+
"arm"
|
|
279
|
+
],
|
|
280
|
+
"dev": true,
|
|
281
|
+
"license": "MIT",
|
|
282
|
+
"optional": true,
|
|
283
|
+
"os": [
|
|
284
|
+
"android"
|
|
285
|
+
],
|
|
286
|
+
"engines": {
|
|
287
|
+
"node": ">=18"
|
|
288
|
+
}
|
|
289
|
+
},
|
|
290
|
+
"node_modules/@esbuild/android-arm64": {
|
|
291
|
+
"version": "0.25.12",
|
|
292
|
+
"resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.12.tgz",
|
|
293
|
+
"integrity": "sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==",
|
|
294
|
+
"cpu": [
|
|
295
|
+
"arm64"
|
|
296
|
+
],
|
|
297
|
+
"dev": true,
|
|
298
|
+
"license": "MIT",
|
|
299
|
+
"optional": true,
|
|
300
|
+
"os": [
|
|
301
|
+
"android"
|
|
302
|
+
],
|
|
303
|
+
"engines": {
|
|
304
|
+
"node": ">=18"
|
|
305
|
+
}
|
|
306
|
+
},
|
|
307
|
+
"node_modules/@esbuild/android-x64": {
|
|
308
|
+
"version": "0.25.12",
|
|
309
|
+
"resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.12.tgz",
|
|
310
|
+
"integrity": "sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==",
|
|
311
|
+
"cpu": [
|
|
312
|
+
"x64"
|
|
313
|
+
],
|
|
314
|
+
"dev": true,
|
|
315
|
+
"license": "MIT",
|
|
316
|
+
"optional": true,
|
|
317
|
+
"os": [
|
|
318
|
+
"android"
|
|
319
|
+
],
|
|
320
|
+
"engines": {
|
|
321
|
+
"node": ">=18"
|
|
322
|
+
}
|
|
323
|
+
},
|
|
324
|
+
"node_modules/@esbuild/darwin-arm64": {
|
|
325
|
+
"version": "0.25.12",
|
|
326
|
+
"resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.12.tgz",
|
|
327
|
+
"integrity": "sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==",
|
|
328
|
+
"cpu": [
|
|
329
|
+
"arm64"
|
|
330
|
+
],
|
|
331
|
+
"dev": true,
|
|
332
|
+
"license": "MIT",
|
|
333
|
+
"optional": true,
|
|
334
|
+
"os": [
|
|
335
|
+
"darwin"
|
|
336
|
+
],
|
|
337
|
+
"engines": {
|
|
338
|
+
"node": ">=18"
|
|
339
|
+
}
|
|
340
|
+
},
|
|
341
|
+
"node_modules/@esbuild/darwin-x64": {
|
|
342
|
+
"version": "0.25.12",
|
|
343
|
+
"resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.12.tgz",
|
|
344
|
+
"integrity": "sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==",
|
|
345
|
+
"cpu": [
|
|
346
|
+
"x64"
|
|
347
|
+
],
|
|
348
|
+
"dev": true,
|
|
349
|
+
"license": "MIT",
|
|
350
|
+
"optional": true,
|
|
351
|
+
"os": [
|
|
352
|
+
"darwin"
|
|
353
|
+
],
|
|
354
|
+
"engines": {
|
|
355
|
+
"node": ">=18"
|
|
356
|
+
}
|
|
357
|
+
},
|
|
358
|
+
"node_modules/@esbuild/freebsd-arm64": {
|
|
359
|
+
"version": "0.25.12",
|
|
360
|
+
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.12.tgz",
|
|
361
|
+
"integrity": "sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==",
|
|
362
|
+
"cpu": [
|
|
363
|
+
"arm64"
|
|
364
|
+
],
|
|
365
|
+
"dev": true,
|
|
366
|
+
"license": "MIT",
|
|
367
|
+
"optional": true,
|
|
368
|
+
"os": [
|
|
369
|
+
"freebsd"
|
|
370
|
+
],
|
|
371
|
+
"engines": {
|
|
372
|
+
"node": ">=18"
|
|
373
|
+
}
|
|
374
|
+
},
|
|
375
|
+
"node_modules/@esbuild/freebsd-x64": {
|
|
376
|
+
"version": "0.25.12",
|
|
377
|
+
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.12.tgz",
|
|
378
|
+
"integrity": "sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==",
|
|
379
|
+
"cpu": [
|
|
380
|
+
"x64"
|
|
381
|
+
],
|
|
382
|
+
"dev": true,
|
|
383
|
+
"license": "MIT",
|
|
384
|
+
"optional": true,
|
|
385
|
+
"os": [
|
|
386
|
+
"freebsd"
|
|
387
|
+
],
|
|
388
|
+
"engines": {
|
|
389
|
+
"node": ">=18"
|
|
390
|
+
}
|
|
391
|
+
},
|
|
392
|
+
"node_modules/@esbuild/linux-arm": {
|
|
393
|
+
"version": "0.25.12",
|
|
394
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.12.tgz",
|
|
395
|
+
"integrity": "sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==",
|
|
396
|
+
"cpu": [
|
|
397
|
+
"arm"
|
|
398
|
+
],
|
|
399
|
+
"dev": true,
|
|
400
|
+
"license": "MIT",
|
|
401
|
+
"optional": true,
|
|
402
|
+
"os": [
|
|
403
|
+
"linux"
|
|
404
|
+
],
|
|
405
|
+
"engines": {
|
|
406
|
+
"node": ">=18"
|
|
407
|
+
}
|
|
408
|
+
},
|
|
409
|
+
"node_modules/@esbuild/linux-arm64": {
|
|
410
|
+
"version": "0.25.12",
|
|
411
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.12.tgz",
|
|
412
|
+
"integrity": "sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==",
|
|
413
|
+
"cpu": [
|
|
414
|
+
"arm64"
|
|
415
|
+
],
|
|
416
|
+
"dev": true,
|
|
417
|
+
"license": "MIT",
|
|
418
|
+
"optional": true,
|
|
419
|
+
"os": [
|
|
420
|
+
"linux"
|
|
421
|
+
],
|
|
422
|
+
"engines": {
|
|
423
|
+
"node": ">=18"
|
|
424
|
+
}
|
|
425
|
+
},
|
|
426
|
+
"node_modules/@esbuild/linux-ia32": {
|
|
427
|
+
"version": "0.25.12",
|
|
428
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.12.tgz",
|
|
429
|
+
"integrity": "sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==",
|
|
430
|
+
"cpu": [
|
|
431
|
+
"ia32"
|
|
432
|
+
],
|
|
433
|
+
"dev": true,
|
|
434
|
+
"license": "MIT",
|
|
435
|
+
"optional": true,
|
|
436
|
+
"os": [
|
|
437
|
+
"linux"
|
|
438
|
+
],
|
|
439
|
+
"engines": {
|
|
440
|
+
"node": ">=18"
|
|
441
|
+
}
|
|
442
|
+
},
|
|
443
|
+
"node_modules/@esbuild/linux-loong64": {
|
|
444
|
+
"version": "0.25.12",
|
|
445
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.12.tgz",
|
|
446
|
+
"integrity": "sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==",
|
|
447
|
+
"cpu": [
|
|
448
|
+
"loong64"
|
|
449
|
+
],
|
|
450
|
+
"dev": true,
|
|
451
|
+
"license": "MIT",
|
|
452
|
+
"optional": true,
|
|
453
|
+
"os": [
|
|
454
|
+
"linux"
|
|
455
|
+
],
|
|
456
|
+
"engines": {
|
|
457
|
+
"node": ">=18"
|
|
458
|
+
}
|
|
459
|
+
},
|
|
460
|
+
"node_modules/@esbuild/linux-mips64el": {
|
|
461
|
+
"version": "0.25.12",
|
|
462
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.12.tgz",
|
|
463
|
+
"integrity": "sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==",
|
|
464
|
+
"cpu": [
|
|
465
|
+
"mips64el"
|
|
466
|
+
],
|
|
467
|
+
"dev": true,
|
|
468
|
+
"license": "MIT",
|
|
469
|
+
"optional": true,
|
|
470
|
+
"os": [
|
|
471
|
+
"linux"
|
|
472
|
+
],
|
|
473
|
+
"engines": {
|
|
474
|
+
"node": ">=18"
|
|
475
|
+
}
|
|
476
|
+
},
|
|
477
|
+
"node_modules/@esbuild/linux-ppc64": {
|
|
478
|
+
"version": "0.25.12",
|
|
479
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.12.tgz",
|
|
480
|
+
"integrity": "sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==",
|
|
481
|
+
"cpu": [
|
|
482
|
+
"ppc64"
|
|
483
|
+
],
|
|
484
|
+
"dev": true,
|
|
485
|
+
"license": "MIT",
|
|
486
|
+
"optional": true,
|
|
487
|
+
"os": [
|
|
488
|
+
"linux"
|
|
489
|
+
],
|
|
490
|
+
"engines": {
|
|
491
|
+
"node": ">=18"
|
|
492
|
+
}
|
|
493
|
+
},
|
|
494
|
+
"node_modules/@esbuild/linux-riscv64": {
|
|
495
|
+
"version": "0.25.12",
|
|
496
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.12.tgz",
|
|
497
|
+
"integrity": "sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==",
|
|
498
|
+
"cpu": [
|
|
499
|
+
"riscv64"
|
|
500
|
+
],
|
|
501
|
+
"dev": true,
|
|
502
|
+
"license": "MIT",
|
|
503
|
+
"optional": true,
|
|
504
|
+
"os": [
|
|
505
|
+
"linux"
|
|
506
|
+
],
|
|
507
|
+
"engines": {
|
|
508
|
+
"node": ">=18"
|
|
509
|
+
}
|
|
510
|
+
},
|
|
511
|
+
"node_modules/@esbuild/linux-s390x": {
|
|
512
|
+
"version": "0.25.12",
|
|
513
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.12.tgz",
|
|
514
|
+
"integrity": "sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==",
|
|
515
|
+
"cpu": [
|
|
516
|
+
"s390x"
|
|
517
|
+
],
|
|
518
|
+
"dev": true,
|
|
519
|
+
"license": "MIT",
|
|
520
|
+
"optional": true,
|
|
521
|
+
"os": [
|
|
522
|
+
"linux"
|
|
523
|
+
],
|
|
524
|
+
"engines": {
|
|
525
|
+
"node": ">=18"
|
|
526
|
+
}
|
|
527
|
+
},
|
|
528
|
+
"node_modules/@esbuild/linux-x64": {
|
|
529
|
+
"version": "0.25.12",
|
|
530
|
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.12.tgz",
|
|
531
|
+
"integrity": "sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==",
|
|
532
|
+
"cpu": [
|
|
533
|
+
"x64"
|
|
534
|
+
],
|
|
535
|
+
"dev": true,
|
|
536
|
+
"license": "MIT",
|
|
537
|
+
"optional": true,
|
|
538
|
+
"os": [
|
|
539
|
+
"linux"
|
|
540
|
+
],
|
|
541
|
+
"engines": {
|
|
542
|
+
"node": ">=18"
|
|
543
|
+
}
|
|
544
|
+
},
|
|
545
|
+
"node_modules/@esbuild/netbsd-arm64": {
|
|
546
|
+
"version": "0.25.12",
|
|
547
|
+
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.12.tgz",
|
|
548
|
+
"integrity": "sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==",
|
|
549
|
+
"cpu": [
|
|
550
|
+
"arm64"
|
|
551
|
+
],
|
|
552
|
+
"dev": true,
|
|
553
|
+
"license": "MIT",
|
|
554
|
+
"optional": true,
|
|
555
|
+
"os": [
|
|
556
|
+
"netbsd"
|
|
557
|
+
],
|
|
558
|
+
"engines": {
|
|
559
|
+
"node": ">=18"
|
|
560
|
+
}
|
|
561
|
+
},
|
|
562
|
+
"node_modules/@esbuild/netbsd-x64": {
|
|
563
|
+
"version": "0.25.12",
|
|
564
|
+
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.12.tgz",
|
|
565
|
+
"integrity": "sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==",
|
|
566
|
+
"cpu": [
|
|
567
|
+
"x64"
|
|
568
|
+
],
|
|
569
|
+
"dev": true,
|
|
570
|
+
"license": "MIT",
|
|
571
|
+
"optional": true,
|
|
572
|
+
"os": [
|
|
573
|
+
"netbsd"
|
|
574
|
+
],
|
|
575
|
+
"engines": {
|
|
576
|
+
"node": ">=18"
|
|
577
|
+
}
|
|
578
|
+
},
|
|
579
|
+
"node_modules/@esbuild/openbsd-arm64": {
|
|
580
|
+
"version": "0.25.12",
|
|
581
|
+
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.12.tgz",
|
|
582
|
+
"integrity": "sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==",
|
|
583
|
+
"cpu": [
|
|
584
|
+
"arm64"
|
|
585
|
+
],
|
|
586
|
+
"dev": true,
|
|
587
|
+
"license": "MIT",
|
|
588
|
+
"optional": true,
|
|
589
|
+
"os": [
|
|
590
|
+
"openbsd"
|
|
591
|
+
],
|
|
592
|
+
"engines": {
|
|
593
|
+
"node": ">=18"
|
|
594
|
+
}
|
|
595
|
+
},
|
|
596
|
+
"node_modules/@esbuild/openbsd-x64": {
|
|
597
|
+
"version": "0.25.12",
|
|
598
|
+
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.12.tgz",
|
|
599
|
+
"integrity": "sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==",
|
|
600
|
+
"cpu": [
|
|
601
|
+
"x64"
|
|
602
|
+
],
|
|
603
|
+
"dev": true,
|
|
604
|
+
"license": "MIT",
|
|
605
|
+
"optional": true,
|
|
606
|
+
"os": [
|
|
607
|
+
"openbsd"
|
|
608
|
+
],
|
|
609
|
+
"engines": {
|
|
610
|
+
"node": ">=18"
|
|
611
|
+
}
|
|
612
|
+
},
|
|
613
|
+
"node_modules/@esbuild/openharmony-arm64": {
|
|
614
|
+
"version": "0.25.12",
|
|
615
|
+
"resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.12.tgz",
|
|
616
|
+
"integrity": "sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==",
|
|
617
|
+
"cpu": [
|
|
618
|
+
"arm64"
|
|
619
|
+
],
|
|
620
|
+
"dev": true,
|
|
621
|
+
"license": "MIT",
|
|
622
|
+
"optional": true,
|
|
623
|
+
"os": [
|
|
624
|
+
"openharmony"
|
|
625
|
+
],
|
|
626
|
+
"engines": {
|
|
627
|
+
"node": ">=18"
|
|
628
|
+
}
|
|
629
|
+
},
|
|
630
|
+
"node_modules/@esbuild/sunos-x64": {
|
|
631
|
+
"version": "0.25.12",
|
|
632
|
+
"resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.12.tgz",
|
|
633
|
+
"integrity": "sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==",
|
|
634
|
+
"cpu": [
|
|
635
|
+
"x64"
|
|
636
|
+
],
|
|
637
|
+
"dev": true,
|
|
638
|
+
"license": "MIT",
|
|
639
|
+
"optional": true,
|
|
640
|
+
"os": [
|
|
641
|
+
"sunos"
|
|
642
|
+
],
|
|
643
|
+
"engines": {
|
|
644
|
+
"node": ">=18"
|
|
645
|
+
}
|
|
646
|
+
},
|
|
647
|
+
"node_modules/@esbuild/win32-arm64": {
|
|
648
|
+
"version": "0.25.12",
|
|
649
|
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.12.tgz",
|
|
650
|
+
"integrity": "sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==",
|
|
651
|
+
"cpu": [
|
|
652
|
+
"arm64"
|
|
653
|
+
],
|
|
654
|
+
"dev": true,
|
|
655
|
+
"license": "MIT",
|
|
656
|
+
"optional": true,
|
|
657
|
+
"os": [
|
|
658
|
+
"win32"
|
|
659
|
+
],
|
|
660
|
+
"engines": {
|
|
661
|
+
"node": ">=18"
|
|
662
|
+
}
|
|
663
|
+
},
|
|
664
|
+
"node_modules/@esbuild/win32-ia32": {
|
|
665
|
+
"version": "0.25.12",
|
|
666
|
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.12.tgz",
|
|
667
|
+
"integrity": "sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==",
|
|
668
|
+
"cpu": [
|
|
669
|
+
"ia32"
|
|
670
|
+
],
|
|
671
|
+
"dev": true,
|
|
672
|
+
"license": "MIT",
|
|
673
|
+
"optional": true,
|
|
674
|
+
"os": [
|
|
675
|
+
"win32"
|
|
676
|
+
],
|
|
677
|
+
"engines": {
|
|
678
|
+
"node": ">=18"
|
|
679
|
+
}
|
|
680
|
+
},
|
|
681
|
+
"node_modules/@esbuild/win32-x64": {
|
|
682
|
+
"version": "0.25.12",
|
|
683
|
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.12.tgz",
|
|
684
|
+
"integrity": "sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==",
|
|
685
|
+
"cpu": [
|
|
686
|
+
"x64"
|
|
687
|
+
],
|
|
688
|
+
"dev": true,
|
|
689
|
+
"license": "MIT",
|
|
690
|
+
"optional": true,
|
|
691
|
+
"os": [
|
|
692
|
+
"win32"
|
|
693
|
+
],
|
|
694
|
+
"engines": {
|
|
695
|
+
"node": ">=18"
|
|
696
|
+
}
|
|
697
|
+
},
|
|
698
|
+
"node_modules/@fortawesome/fontawesome-common-types": {
|
|
699
|
+
"version": "6.7.2",
|
|
700
|
+
"resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-6.7.2.tgz",
|
|
701
|
+
"integrity": "sha512-Zs+YeHUC5fkt7Mg1l6XTniei3k4bwG/yo3iFUtZWd/pMx9g3fdvkSK9E0FOC+++phXOka78uJcYb8JaFkW52Xg==",
|
|
702
|
+
"license": "MIT",
|
|
703
|
+
"engines": {
|
|
704
|
+
"node": ">=6"
|
|
705
|
+
}
|
|
706
|
+
},
|
|
707
|
+
"node_modules/@fortawesome/fontawesome-svg-core": {
|
|
708
|
+
"version": "6.7.2",
|
|
709
|
+
"resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-svg-core/-/fontawesome-svg-core-6.7.2.tgz",
|
|
710
|
+
"integrity": "sha512-yxtOBWDrdi5DD5o1pmVdq3WMCvnobT0LU6R8RyyVXPvFRd2o79/0NCuQoCjNTeZz9EzA9xS3JxNWfv54RIHFEA==",
|
|
711
|
+
"license": "MIT",
|
|
712
|
+
"dependencies": {
|
|
713
|
+
"@fortawesome/fontawesome-common-types": "6.7.2"
|
|
714
|
+
},
|
|
715
|
+
"engines": {
|
|
716
|
+
"node": ">=6"
|
|
717
|
+
}
|
|
718
|
+
},
|
|
719
|
+
"node_modules/@fortawesome/free-regular-svg-icons": {
|
|
720
|
+
"version": "6.7.2",
|
|
721
|
+
"resolved": "https://registry.npmjs.org/@fortawesome/free-regular-svg-icons/-/free-regular-svg-icons-6.7.2.tgz",
|
|
722
|
+
"integrity": "sha512-7Z/ur0gvCMW8G93dXIQOkQqHo2M5HLhYrRVC0//fakJXxcF1VmMPsxnG6Ee8qEylA8b8Q3peQXWMNZ62lYF28g==",
|
|
723
|
+
"license": "(CC-BY-4.0 AND MIT)",
|
|
724
|
+
"dependencies": {
|
|
725
|
+
"@fortawesome/fontawesome-common-types": "6.7.2"
|
|
726
|
+
},
|
|
727
|
+
"engines": {
|
|
728
|
+
"node": ">=6"
|
|
729
|
+
}
|
|
730
|
+
},
|
|
731
|
+
"node_modules/@fortawesome/free-solid-svg-icons": {
|
|
732
|
+
"version": "6.7.2",
|
|
733
|
+
"resolved": "https://registry.npmjs.org/@fortawesome/free-solid-svg-icons/-/free-solid-svg-icons-6.7.2.tgz",
|
|
734
|
+
"integrity": "sha512-GsBrnOzU8uj0LECDfD5zomZJIjrPhIlWU82AHwa2s40FKH+kcxQaBvBo3Z4TxyZHIyX8XTDxsyA33/Vx9eFuQA==",
|
|
735
|
+
"license": "(CC-BY-4.0 AND MIT)",
|
|
736
|
+
"dependencies": {
|
|
737
|
+
"@fortawesome/fontawesome-common-types": "6.7.2"
|
|
738
|
+
},
|
|
739
|
+
"engines": {
|
|
740
|
+
"node": ">=6"
|
|
741
|
+
}
|
|
742
|
+
},
|
|
743
|
+
"node_modules/@fortawesome/vue-fontawesome": {
|
|
744
|
+
"version": "3.3.3",
|
|
745
|
+
"resolved": "https://registry.npmjs.org/@fortawesome/vue-fontawesome/-/vue-fontawesome-3.3.3.tgz",
|
|
746
|
+
"integrity": "sha512-Jbjze98gGcVBSdkscLbnDlHECumMAFVWDarMtycctn9qL3p92ApnV36VW4PwVrcm9IWrHnnE6ZL9x7MXStSCfA==",
|
|
747
|
+
"license": "MIT",
|
|
748
|
+
"peerDependencies": {
|
|
749
|
+
"@fortawesome/fontawesome-svg-core": "~1 || ~6 || ~7",
|
|
750
|
+
"vue": ">= 3.0.0 < 4"
|
|
751
|
+
}
|
|
752
|
+
},
|
|
753
|
+
"node_modules/@intlify/core-base": {
|
|
754
|
+
"version": "10.0.8",
|
|
755
|
+
"resolved": "https://registry.npmjs.org/@intlify/core-base/-/core-base-10.0.8.tgz",
|
|
756
|
+
"integrity": "sha512-FoHslNWSoHjdUBLy35bpm9PV/0LVI/DSv9L6Km6J2ad8r/mm0VaGg06C40FqlE8u2ADcGUM60lyoU7Myo4WNZQ==",
|
|
757
|
+
"license": "MIT",
|
|
758
|
+
"dependencies": {
|
|
759
|
+
"@intlify/message-compiler": "10.0.8",
|
|
760
|
+
"@intlify/shared": "10.0.8"
|
|
761
|
+
},
|
|
762
|
+
"engines": {
|
|
763
|
+
"node": ">= 16"
|
|
764
|
+
},
|
|
765
|
+
"funding": {
|
|
766
|
+
"url": "https://github.com/sponsors/kazupon"
|
|
767
|
+
}
|
|
768
|
+
},
|
|
769
|
+
"node_modules/@intlify/message-compiler": {
|
|
770
|
+
"version": "10.0.8",
|
|
771
|
+
"resolved": "https://registry.npmjs.org/@intlify/message-compiler/-/message-compiler-10.0.8.tgz",
|
|
772
|
+
"integrity": "sha512-DV+sYXIkHVd5yVb2mL7br/NEUwzUoLBsMkV3H0InefWgmYa34NLZUvMCGi5oWX+Hqr2Y2qUxnVrnOWF4aBlgWg==",
|
|
773
|
+
"license": "MIT",
|
|
774
|
+
"dependencies": {
|
|
775
|
+
"@intlify/shared": "10.0.8",
|
|
776
|
+
"source-map-js": "^1.0.2"
|
|
777
|
+
},
|
|
778
|
+
"engines": {
|
|
779
|
+
"node": ">= 16"
|
|
780
|
+
},
|
|
781
|
+
"funding": {
|
|
782
|
+
"url": "https://github.com/sponsors/kazupon"
|
|
783
|
+
}
|
|
784
|
+
},
|
|
785
|
+
"node_modules/@intlify/shared": {
|
|
786
|
+
"version": "10.0.8",
|
|
787
|
+
"resolved": "https://registry.npmjs.org/@intlify/shared/-/shared-10.0.8.tgz",
|
|
788
|
+
"integrity": "sha512-BcmHpb5bQyeVNrptC3UhzpBZB/YHHDoEREOUERrmF2BRxsyOEuRrq+Z96C/D4+2KJb8kuHiouzAei7BXlG0YYw==",
|
|
789
|
+
"license": "MIT",
|
|
790
|
+
"engines": {
|
|
791
|
+
"node": ">= 16"
|
|
792
|
+
},
|
|
793
|
+
"funding": {
|
|
794
|
+
"url": "https://github.com/sponsors/kazupon"
|
|
795
|
+
}
|
|
796
|
+
},
|
|
797
|
+
"node_modules/@jridgewell/sourcemap-codec": {
|
|
798
|
+
"version": "1.5.5",
|
|
799
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
|
|
800
|
+
"integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
|
|
801
|
+
"license": "MIT"
|
|
802
|
+
},
|
|
803
|
+
"node_modules/@math.gl/core": {
|
|
804
|
+
"version": "3.6.3",
|
|
805
|
+
"resolved": "https://registry.npmjs.org/@math.gl/core/-/core-3.6.3.tgz",
|
|
806
|
+
"integrity": "sha512-jBABmDkj5uuuE0dTDmwwss7Cup5ZwQ6Qb7h1pgvtkEutTrhkcv8SuItQNXmF45494yIHeoGue08NlyeY6wxq2A==",
|
|
807
|
+
"license": "MIT",
|
|
808
|
+
"dependencies": {
|
|
809
|
+
"@babel/runtime": "^7.12.0",
|
|
810
|
+
"@math.gl/types": "3.6.3",
|
|
811
|
+
"gl-matrix": "^3.4.0"
|
|
812
|
+
}
|
|
813
|
+
},
|
|
814
|
+
"node_modules/@math.gl/types": {
|
|
815
|
+
"version": "3.6.3",
|
|
816
|
+
"resolved": "https://registry.npmjs.org/@math.gl/types/-/types-3.6.3.tgz",
|
|
817
|
+
"integrity": "sha512-3uWLVXHY3jQxsXCr/UCNPSc2BG0hNUljhmOBt9l+lNFDp7zHgm0cK2Tw4kj2XfkJy4TgwZTBGwRDQgWEbLbdTA==",
|
|
818
|
+
"license": "MIT"
|
|
819
|
+
},
|
|
820
|
+
"node_modules/@modyfi/vite-plugin-yaml": {
|
|
821
|
+
"version": "1.1.1",
|
|
822
|
+
"resolved": "https://registry.npmjs.org/@modyfi/vite-plugin-yaml/-/vite-plugin-yaml-1.1.1.tgz",
|
|
823
|
+
"integrity": "sha512-rEbfFNlMGLKpAYs2RsfLAhxCHFa6M4QKHHk0A4EYcCJAUwFtFO6qiEdLjUGUTtnRUxAC7GxxCa+ZbeUILSDvqQ==",
|
|
824
|
+
"dev": true,
|
|
825
|
+
"license": "MIT",
|
|
826
|
+
"dependencies": {
|
|
827
|
+
"@rollup/pluginutils": "5.1.0",
|
|
828
|
+
"js-yaml": "4.1.0",
|
|
829
|
+
"tosource": "2.0.0-alpha.3"
|
|
830
|
+
},
|
|
831
|
+
"peerDependencies": {
|
|
832
|
+
"vite": ">=3.2.7"
|
|
833
|
+
}
|
|
834
|
+
},
|
|
835
|
+
"node_modules/@napi-rs/lzma-linux-x64-gnu": {
|
|
836
|
+
"version": "1.5.1",
|
|
837
|
+
"resolved": "https://registry.npmjs.org/@napi-rs/lzma-linux-x64-gnu/-/lzma-linux-x64-gnu-1.5.1.tgz",
|
|
838
|
+
"integrity": "sha512-oTXEIha4SsuXdTA4Iyskj0kpdx2yVXdhd75c2v3xGrHFfVMsbhTPZU/nMPL4sWKo4pBHm3aucLaqGlF696dTyQ==",
|
|
839
|
+
"cpu": [
|
|
840
|
+
"x64"
|
|
841
|
+
],
|
|
842
|
+
"dev": true,
|
|
843
|
+
"libc": [
|
|
844
|
+
"glibc"
|
|
845
|
+
],
|
|
846
|
+
"license": "MIT",
|
|
847
|
+
"optional": true,
|
|
848
|
+
"os": [
|
|
849
|
+
"linux"
|
|
850
|
+
],
|
|
851
|
+
"engines": {
|
|
852
|
+
"node": "^22.20 || ^24.12 || >=25"
|
|
853
|
+
}
|
|
854
|
+
},
|
|
855
|
+
"node_modules/@opentelemetry/api": {
|
|
856
|
+
"version": "1.9.1",
|
|
857
|
+
"resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-1.9.1.tgz",
|
|
858
|
+
"integrity": "sha512-gLyJlPHPZYdAk1JENA9LeHejZe1Ti77/pTeFm/nMXmQH/HFZlcS/O2XJB+L8fkbrNSqhdtlvjBVjxwUYanNH5Q==",
|
|
859
|
+
"license": "Apache-2.0",
|
|
860
|
+
"engines": {
|
|
861
|
+
"node": ">=8.0.0"
|
|
862
|
+
}
|
|
863
|
+
},
|
|
864
|
+
"node_modules/@rollup/pluginutils": {
|
|
865
|
+
"version": "5.1.0",
|
|
866
|
+
"resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.1.0.tgz",
|
|
867
|
+
"integrity": "sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==",
|
|
868
|
+
"dev": true,
|
|
869
|
+
"license": "MIT",
|
|
870
|
+
"dependencies": {
|
|
871
|
+
"@types/estree": "^1.0.0",
|
|
872
|
+
"estree-walker": "^2.0.2",
|
|
873
|
+
"picomatch": "^2.3.1"
|
|
874
|
+
},
|
|
875
|
+
"engines": {
|
|
876
|
+
"node": ">=14.0.0"
|
|
877
|
+
},
|
|
878
|
+
"peerDependencies": {
|
|
879
|
+
"rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0"
|
|
880
|
+
},
|
|
881
|
+
"peerDependenciesMeta": {
|
|
882
|
+
"rollup": {
|
|
883
|
+
"optional": true
|
|
884
|
+
}
|
|
885
|
+
}
|
|
886
|
+
},
|
|
887
|
+
"node_modules/@rollup/rollup-android-arm-eabi": {
|
|
888
|
+
"version": "4.63.0",
|
|
889
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.63.0.tgz",
|
|
890
|
+
"integrity": "sha512-70TeIFezKKy65LgAVyQh+w94/gjWhvPWaLaGGeMEgVrPkQhuj/M5bAYYZzIFUj9Y69oHyTm5Um/R6gcLh4A8JA==",
|
|
891
|
+
"cpu": [
|
|
892
|
+
"arm"
|
|
893
|
+
],
|
|
894
|
+
"dev": true,
|
|
895
|
+
"license": "MIT",
|
|
896
|
+
"optional": true,
|
|
897
|
+
"os": [
|
|
898
|
+
"android"
|
|
899
|
+
]
|
|
900
|
+
},
|
|
901
|
+
"node_modules/@rollup/rollup-android-arm64": {
|
|
902
|
+
"version": "4.63.0",
|
|
903
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.63.0.tgz",
|
|
904
|
+
"integrity": "sha512-YC86tYIHK6M1IV+wbzO+Bxk8RCBr6ZyWYgWxUCzaZD8mc8rrFoIJDNzDrkHBYRc/wKdrsIXmm6/F7NzrAO+OrA==",
|
|
905
|
+
"cpu": [
|
|
906
|
+
"arm64"
|
|
907
|
+
],
|
|
908
|
+
"dev": true,
|
|
909
|
+
"license": "MIT",
|
|
910
|
+
"optional": true,
|
|
911
|
+
"os": [
|
|
912
|
+
"android"
|
|
913
|
+
]
|
|
914
|
+
},
|
|
915
|
+
"node_modules/@rollup/rollup-darwin-arm64": {
|
|
916
|
+
"version": "4.63.0",
|
|
917
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.63.0.tgz",
|
|
918
|
+
"integrity": "sha512-oI+ECtUcli0y0fi4xpW82GdPIXdTkI8G8DSjG2LRuw09fPAGykaWYH/hXxiKuTxiAjiPSTIIuYUqof5Z2hShWw==",
|
|
919
|
+
"cpu": [
|
|
920
|
+
"arm64"
|
|
921
|
+
],
|
|
922
|
+
"dev": true,
|
|
923
|
+
"license": "MIT",
|
|
924
|
+
"optional": true,
|
|
925
|
+
"os": [
|
|
926
|
+
"darwin"
|
|
927
|
+
]
|
|
928
|
+
},
|
|
929
|
+
"node_modules/@rollup/rollup-darwin-x64": {
|
|
930
|
+
"version": "4.63.0",
|
|
931
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.63.0.tgz",
|
|
932
|
+
"integrity": "sha512-NwV+1s7TiKrMe4owHyKB/dTLD7ZJD0YEBEhIz+hvav1Cu1GReJjF+rsdNwjzENQeIAbE/CoNiaAc5Vz2h5DPAA==",
|
|
933
|
+
"cpu": [
|
|
934
|
+
"x64"
|
|
935
|
+
],
|
|
936
|
+
"dev": true,
|
|
937
|
+
"license": "MIT",
|
|
938
|
+
"optional": true,
|
|
939
|
+
"os": [
|
|
940
|
+
"darwin"
|
|
941
|
+
]
|
|
942
|
+
},
|
|
943
|
+
"node_modules/@rollup/rollup-freebsd-arm64": {
|
|
944
|
+
"version": "4.63.0",
|
|
945
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.63.0.tgz",
|
|
946
|
+
"integrity": "sha512-tWtHBTu5gOPK4u4Urtk4qAHW3zZ9rQAmbssO8gp7ELvGTGI3aCiq6NqyTQ0PCIg7KbHJF2UkGDDs77YZGxfjCA==",
|
|
947
|
+
"cpu": [
|
|
948
|
+
"arm64"
|
|
949
|
+
],
|
|
950
|
+
"dev": true,
|
|
951
|
+
"license": "MIT",
|
|
952
|
+
"optional": true,
|
|
953
|
+
"os": [
|
|
954
|
+
"freebsd"
|
|
955
|
+
]
|
|
956
|
+
},
|
|
957
|
+
"node_modules/@rollup/rollup-freebsd-x64": {
|
|
958
|
+
"version": "4.63.0",
|
|
959
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.63.0.tgz",
|
|
960
|
+
"integrity": "sha512-2qPoJiwTvtHQ27NnYvTnsgk8laXWYuVmNESG8WFZBcEPKLfZ3I27qBJarjVRQtwGeYyRfq5ZowHXih9lm2BItw==",
|
|
961
|
+
"cpu": [
|
|
962
|
+
"x64"
|
|
963
|
+
],
|
|
964
|
+
"dev": true,
|
|
965
|
+
"license": "MIT",
|
|
966
|
+
"optional": true,
|
|
967
|
+
"os": [
|
|
968
|
+
"freebsd"
|
|
969
|
+
]
|
|
970
|
+
},
|
|
971
|
+
"node_modules/@rollup/rollup-linux-arm-gnueabihf": {
|
|
972
|
+
"version": "4.63.0",
|
|
973
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.63.0.tgz",
|
|
974
|
+
"integrity": "sha512-FQwsTRvLNuHoTdICABJQfbPUSEueISGmnpT06tXTMpfprf5NiKLSXKA0A+w45wJnCmZAnzgqBwbt6ARFuyOi5w==",
|
|
975
|
+
"cpu": [
|
|
976
|
+
"arm"
|
|
977
|
+
],
|
|
978
|
+
"dev": true,
|
|
979
|
+
"libc": [
|
|
980
|
+
"glibc"
|
|
981
|
+
],
|
|
982
|
+
"license": "MIT",
|
|
983
|
+
"optional": true,
|
|
984
|
+
"os": [
|
|
985
|
+
"linux"
|
|
986
|
+
]
|
|
987
|
+
},
|
|
988
|
+
"node_modules/@rollup/rollup-linux-arm-musleabihf": {
|
|
989
|
+
"version": "4.63.0",
|
|
990
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.63.0.tgz",
|
|
991
|
+
"integrity": "sha512-BBVTXziw8mY1a4ZbWME9tZyfzqXCDPqaC7Z3heQ29p5dkvXzwL0NwelO8zLa8c3RBKvl3YTuSnBgsBhYBtwjIw==",
|
|
992
|
+
"cpu": [
|
|
993
|
+
"arm"
|
|
994
|
+
],
|
|
995
|
+
"dev": true,
|
|
996
|
+
"libc": [
|
|
997
|
+
"musl"
|
|
998
|
+
],
|
|
999
|
+
"license": "MIT",
|
|
1000
|
+
"optional": true,
|
|
1001
|
+
"os": [
|
|
1002
|
+
"linux"
|
|
1003
|
+
]
|
|
1004
|
+
},
|
|
1005
|
+
"node_modules/@rollup/rollup-linux-arm64-gnu": {
|
|
1006
|
+
"version": "4.63.0",
|
|
1007
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.63.0.tgz",
|
|
1008
|
+
"integrity": "sha512-w2Iyy9+RqKwx3d9qWMKsJg0FfRBsY0/pXNv0mCQ3ueRvJI6+QAScfD4nrMlzFLs2HNVW6Ew+mtZfDl9b7Ew5/Q==",
|
|
1009
|
+
"cpu": [
|
|
1010
|
+
"arm64"
|
|
1011
|
+
],
|
|
1012
|
+
"dev": true,
|
|
1013
|
+
"libc": [
|
|
1014
|
+
"glibc"
|
|
1015
|
+
],
|
|
1016
|
+
"license": "MIT",
|
|
1017
|
+
"optional": true,
|
|
1018
|
+
"os": [
|
|
1019
|
+
"linux"
|
|
1020
|
+
]
|
|
1021
|
+
},
|
|
1022
|
+
"node_modules/@rollup/rollup-linux-arm64-musl": {
|
|
1023
|
+
"version": "4.63.0",
|
|
1024
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.63.0.tgz",
|
|
1025
|
+
"integrity": "sha512-YK++KtrFRHYE0P6/RtYEAy9t8F37znP+K03RrIuLPYOL6SVlObRumf/0OE4V/h63xL9DwkWbNssZfmA9hawuDA==",
|
|
1026
|
+
"cpu": [
|
|
1027
|
+
"arm64"
|
|
1028
|
+
],
|
|
1029
|
+
"dev": true,
|
|
1030
|
+
"libc": [
|
|
1031
|
+
"musl"
|
|
1032
|
+
],
|
|
1033
|
+
"license": "MIT",
|
|
1034
|
+
"optional": true,
|
|
1035
|
+
"os": [
|
|
1036
|
+
"linux"
|
|
1037
|
+
]
|
|
1038
|
+
},
|
|
1039
|
+
"node_modules/@rollup/rollup-linux-loong64-gnu": {
|
|
1040
|
+
"version": "4.63.0",
|
|
1041
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.63.0.tgz",
|
|
1042
|
+
"integrity": "sha512-aBfOG6fP7YkkPmTqPwufRJeFyz7WPpECv9XNbnsk9+vg7rxdih0lbtEel7jcRng4LZrrmU3FfitCFyEj4BWDWg==",
|
|
1043
|
+
"cpu": [
|
|
1044
|
+
"loong64"
|
|
1045
|
+
],
|
|
1046
|
+
"dev": true,
|
|
1047
|
+
"libc": [
|
|
1048
|
+
"glibc"
|
|
1049
|
+
],
|
|
1050
|
+
"license": "MIT",
|
|
1051
|
+
"optional": true,
|
|
1052
|
+
"os": [
|
|
1053
|
+
"linux"
|
|
1054
|
+
]
|
|
1055
|
+
},
|
|
1056
|
+
"node_modules/@rollup/rollup-linux-loong64-musl": {
|
|
1057
|
+
"version": "4.63.0",
|
|
1058
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.63.0.tgz",
|
|
1059
|
+
"integrity": "sha512-LGaHEOeHNAag9VuS1Crs5DFg4RrU9MPi2nVnNJk9DTePx/B6RRYKVmrIXt2h7YOJlwjaFJ6lwtFDliZxScTLrQ==",
|
|
1060
|
+
"cpu": [
|
|
1061
|
+
"loong64"
|
|
1062
|
+
],
|
|
1063
|
+
"dev": true,
|
|
1064
|
+
"libc": [
|
|
1065
|
+
"musl"
|
|
1066
|
+
],
|
|
1067
|
+
"license": "MIT",
|
|
1068
|
+
"optional": true,
|
|
1069
|
+
"os": [
|
|
1070
|
+
"linux"
|
|
1071
|
+
]
|
|
1072
|
+
},
|
|
1073
|
+
"node_modules/@rollup/rollup-linux-ppc64-gnu": {
|
|
1074
|
+
"version": "4.63.0",
|
|
1075
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.63.0.tgz",
|
|
1076
|
+
"integrity": "sha512-jClvk+J0FC3b7Udvegiw5/4hErbHtmsNsQgENnKXDWtNCJXsJYZH5WURvu7imDOO38xYml24eeh5x3A04ppwCw==",
|
|
1077
|
+
"cpu": [
|
|
1078
|
+
"ppc64"
|
|
1079
|
+
],
|
|
1080
|
+
"dev": true,
|
|
1081
|
+
"libc": [
|
|
1082
|
+
"glibc"
|
|
1083
|
+
],
|
|
1084
|
+
"license": "MIT",
|
|
1085
|
+
"optional": true,
|
|
1086
|
+
"os": [
|
|
1087
|
+
"linux"
|
|
1088
|
+
]
|
|
1089
|
+
},
|
|
1090
|
+
"node_modules/@rollup/rollup-linux-ppc64-musl": {
|
|
1091
|
+
"version": "4.63.0",
|
|
1092
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.63.0.tgz",
|
|
1093
|
+
"integrity": "sha512-0OJlaGK+8+B777Ql5okIpD7ua5Ro9+VB9Ve0OKa28OQJZ1RbuUBVNHK/e3pr4BROqsyPl1JrPO1ZxJseCNffcA==",
|
|
1094
|
+
"cpu": [
|
|
1095
|
+
"ppc64"
|
|
1096
|
+
],
|
|
1097
|
+
"dev": true,
|
|
1098
|
+
"libc": [
|
|
1099
|
+
"musl"
|
|
1100
|
+
],
|
|
1101
|
+
"license": "MIT",
|
|
1102
|
+
"optional": true,
|
|
1103
|
+
"os": [
|
|
1104
|
+
"linux"
|
|
1105
|
+
]
|
|
1106
|
+
},
|
|
1107
|
+
"node_modules/@rollup/rollup-linux-riscv64-gnu": {
|
|
1108
|
+
"version": "4.63.0",
|
|
1109
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.63.0.tgz",
|
|
1110
|
+
"integrity": "sha512-Ygsx+HoNH7afwi1bTIXbnTvVnsO+zurPLSYxybV1hHFVU72OWOCl6v05ql/z0hkpAPx+DK7Kn9Bi7MayCcjLTA==",
|
|
1111
|
+
"cpu": [
|
|
1112
|
+
"riscv64"
|
|
1113
|
+
],
|
|
1114
|
+
"dev": true,
|
|
1115
|
+
"libc": [
|
|
1116
|
+
"glibc"
|
|
1117
|
+
],
|
|
1118
|
+
"license": "MIT",
|
|
1119
|
+
"optional": true,
|
|
1120
|
+
"os": [
|
|
1121
|
+
"linux"
|
|
1122
|
+
]
|
|
1123
|
+
},
|
|
1124
|
+
"node_modules/@rollup/rollup-linux-riscv64-musl": {
|
|
1125
|
+
"version": "4.63.0",
|
|
1126
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.63.0.tgz",
|
|
1127
|
+
"integrity": "sha512-pDQxtMGb+OvG3fLwR2OkZlSd47hW+kWg4BYMG/++sR6RqorQccwPTDsxda5hPwiIeIErAnCF9ma3SAU06bdQtQ==",
|
|
1128
|
+
"cpu": [
|
|
1129
|
+
"riscv64"
|
|
1130
|
+
],
|
|
1131
|
+
"dev": true,
|
|
1132
|
+
"libc": [
|
|
1133
|
+
"musl"
|
|
1134
|
+
],
|
|
1135
|
+
"license": "MIT",
|
|
1136
|
+
"optional": true,
|
|
1137
|
+
"os": [
|
|
1138
|
+
"linux"
|
|
1139
|
+
]
|
|
1140
|
+
},
|
|
1141
|
+
"node_modules/@rollup/rollup-linux-s390x-gnu": {
|
|
1142
|
+
"version": "4.63.0",
|
|
1143
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.63.0.tgz",
|
|
1144
|
+
"integrity": "sha512-0BnUG9mS8I4SSHr3XsxVhuCMEiu+rX61xxZF5vujso4LaiAGFZFxvDjg6Xn6tLPNTUAfuCvQYas4LMQMVsKRSQ==",
|
|
1145
|
+
"cpu": [
|
|
1146
|
+
"s390x"
|
|
1147
|
+
],
|
|
1148
|
+
"dev": true,
|
|
1149
|
+
"libc": [
|
|
1150
|
+
"glibc"
|
|
1151
|
+
],
|
|
1152
|
+
"license": "MIT",
|
|
1153
|
+
"optional": true,
|
|
1154
|
+
"os": [
|
|
1155
|
+
"linux"
|
|
1156
|
+
]
|
|
1157
|
+
},
|
|
1158
|
+
"node_modules/@rollup/rollup-linux-x64-gnu": {
|
|
1159
|
+
"version": "4.63.0",
|
|
1160
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.63.0.tgz",
|
|
1161
|
+
"integrity": "sha512-Adu/VttB1dpPNW+FEacrZ+xVm9tFty84+RrFzsqlFaPxoJB+9XXyDGtp5dCOoBwGBIEVH0To7lExFXEx0BIF4A==",
|
|
1162
|
+
"cpu": [
|
|
1163
|
+
"x64"
|
|
1164
|
+
],
|
|
1165
|
+
"dev": true,
|
|
1166
|
+
"libc": [
|
|
1167
|
+
"glibc"
|
|
1168
|
+
],
|
|
1169
|
+
"license": "MIT",
|
|
1170
|
+
"optional": true,
|
|
1171
|
+
"os": [
|
|
1172
|
+
"linux"
|
|
1173
|
+
]
|
|
1174
|
+
},
|
|
1175
|
+
"node_modules/@rollup/rollup-linux-x64-musl": {
|
|
1176
|
+
"version": "4.63.0",
|
|
1177
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.63.0.tgz",
|
|
1178
|
+
"integrity": "sha512-NQ3bDvjUbFKmP23671xUlXtKmqVsUBd6M4PQCvbmNtOy06hnQIdKHy8oG/6S3R/S6He1JgPk6A5VT+prAJMYEw==",
|
|
1179
|
+
"cpu": [
|
|
1180
|
+
"x64"
|
|
1181
|
+
],
|
|
1182
|
+
"dev": true,
|
|
1183
|
+
"libc": [
|
|
1184
|
+
"musl"
|
|
1185
|
+
],
|
|
1186
|
+
"license": "MIT",
|
|
1187
|
+
"optional": true,
|
|
1188
|
+
"os": [
|
|
1189
|
+
"linux"
|
|
1190
|
+
]
|
|
1191
|
+
},
|
|
1192
|
+
"node_modules/@rollup/rollup-openbsd-x64": {
|
|
1193
|
+
"version": "4.63.0",
|
|
1194
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.63.0.tgz",
|
|
1195
|
+
"integrity": "sha512-u2eDAl4+0aFvA13GxlGBtTI3SS3sdgwgtV0HyjZ0QaQVCgNE+jqNGey+GtxWiq+wxr/UycAx/OnfJzApCFamvA==",
|
|
1196
|
+
"cpu": [
|
|
1197
|
+
"x64"
|
|
1198
|
+
],
|
|
1199
|
+
"dev": true,
|
|
1200
|
+
"license": "MIT",
|
|
1201
|
+
"optional": true,
|
|
1202
|
+
"os": [
|
|
1203
|
+
"openbsd"
|
|
1204
|
+
]
|
|
1205
|
+
},
|
|
1206
|
+
"node_modules/@rollup/rollup-openharmony-arm64": {
|
|
1207
|
+
"version": "4.63.0",
|
|
1208
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.63.0.tgz",
|
|
1209
|
+
"integrity": "sha512-XvRb5vfW3wAZQ+ZUG21AnHHDKtNcw99eigzEhjr//NZ3u7SoBaPP0seSc7FgP7p1epAEdAoZckMW9WY/+4w70w==",
|
|
1210
|
+
"cpu": [
|
|
1211
|
+
"arm64"
|
|
1212
|
+
],
|
|
1213
|
+
"dev": true,
|
|
1214
|
+
"license": "MIT",
|
|
1215
|
+
"optional": true,
|
|
1216
|
+
"os": [
|
|
1217
|
+
"openharmony"
|
|
1218
|
+
]
|
|
1219
|
+
},
|
|
1220
|
+
"node_modules/@rollup/rollup-win32-arm64-msvc": {
|
|
1221
|
+
"version": "4.63.0",
|
|
1222
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.63.0.tgz",
|
|
1223
|
+
"integrity": "sha512-iZPmniy4kNBf5yo2RezbkYNNK5HPbXE9+g+twnbqSng7dtLEJy1SKoxiE/ni4FDacjyuZpEeb9U054N4EoKHYw==",
|
|
1224
|
+
"cpu": [
|
|
1225
|
+
"arm64"
|
|
1226
|
+
],
|
|
1227
|
+
"dev": true,
|
|
1228
|
+
"license": "MIT",
|
|
1229
|
+
"optional": true,
|
|
1230
|
+
"os": [
|
|
1231
|
+
"win32"
|
|
1232
|
+
]
|
|
1233
|
+
},
|
|
1234
|
+
"node_modules/@rollup/rollup-win32-ia32-msvc": {
|
|
1235
|
+
"version": "4.63.0",
|
|
1236
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.63.0.tgz",
|
|
1237
|
+
"integrity": "sha512-mFBBd+LF37fnE8JnYUOH+imj0aPFPK30vpar4ehJkgnLj9sZn8ZxiRENmLtgIwxK7TC8klF6N57fxdNBwQoqOA==",
|
|
1238
|
+
"cpu": [
|
|
1239
|
+
"ia32"
|
|
1240
|
+
],
|
|
1241
|
+
"dev": true,
|
|
1242
|
+
"license": "MIT",
|
|
1243
|
+
"optional": true,
|
|
1244
|
+
"os": [
|
|
1245
|
+
"win32"
|
|
1246
|
+
]
|
|
1247
|
+
},
|
|
1248
|
+
"node_modules/@rollup/rollup-win32-x64-gnu": {
|
|
1249
|
+
"version": "4.63.0",
|
|
1250
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.63.0.tgz",
|
|
1251
|
+
"integrity": "sha512-ujeqEY3B+zbGn3Z4Q03cUBG/LGWnBJncVT36WER31LcOsQk9+1dmINKKtvmmfChUvRbK1G0R8OhMWFgHgaZtAw==",
|
|
1252
|
+
"cpu": [
|
|
1253
|
+
"x64"
|
|
1254
|
+
],
|
|
1255
|
+
"dev": true,
|
|
1256
|
+
"license": "MIT",
|
|
1257
|
+
"optional": true,
|
|
1258
|
+
"os": [
|
|
1259
|
+
"win32"
|
|
1260
|
+
]
|
|
1261
|
+
},
|
|
1262
|
+
"node_modules/@rollup/rollup-win32-x64-msvc": {
|
|
1263
|
+
"version": "4.63.0",
|
|
1264
|
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.63.0.tgz",
|
|
1265
|
+
"integrity": "sha512-hncn90N4sOky0L2LKE5oESKLbxCPeVo4eLA2LSMoDzM+879ml4WSr+Rr4DWknNIVVvS1Hirkc9hx02W6YxS8rQ==",
|
|
1266
|
+
"cpu": [
|
|
1267
|
+
"x64"
|
|
1268
|
+
],
|
|
1269
|
+
"dev": true,
|
|
1270
|
+
"license": "MIT",
|
|
1271
|
+
"optional": true,
|
|
1272
|
+
"os": [
|
|
1273
|
+
"win32"
|
|
1274
|
+
]
|
|
1275
|
+
},
|
|
1276
|
+
"node_modules/@standard-schema/spec": {
|
|
1277
|
+
"version": "1.1.0",
|
|
1278
|
+
"resolved": "https://registry.npmjs.org/@standard-schema/spec/-/spec-1.1.0.tgz",
|
|
1279
|
+
"integrity": "sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==",
|
|
1280
|
+
"license": "MIT"
|
|
1281
|
+
},
|
|
1282
|
+
"node_modules/@stapxs/umami-logger-typescript": {
|
|
1283
|
+
"version": "1.0.15",
|
|
1284
|
+
"resolved": "https://registry.npmjs.org/@stapxs/umami-logger-typescript/-/umami-logger-typescript-1.0.15.tgz",
|
|
1285
|
+
"integrity": "sha512-Vp1eADKra6JIebXmrPhRarUeyAph9nKoJuuTcM/39LvFiIQS2ZfC7f+4V71T9qMU4svqIvYuYAJgYzOoo3wpUQ==",
|
|
1286
|
+
"license": "MIT",
|
|
1287
|
+
"dependencies": {
|
|
1288
|
+
"axios": "^1.8.3"
|
|
1289
|
+
}
|
|
1290
|
+
},
|
|
1291
|
+
"node_modules/@tauri-apps/api": {
|
|
1292
|
+
"version": "2.11.1",
|
|
1293
|
+
"resolved": "https://registry.npmjs.org/@tauri-apps/api/-/api-2.11.1.tgz",
|
|
1294
|
+
"integrity": "sha512-M2FPuYND2m+wh5hfW9ZpSdxMPdEJovPBWwoHJmwUpysTYNHaOkVFN419m/K0LIgjb/7KU2vBgsUepJWugQCvAA==",
|
|
1295
|
+
"license": "Apache-2.0 OR MIT",
|
|
1296
|
+
"funding": {
|
|
1297
|
+
"type": "opencollective",
|
|
1298
|
+
"url": "https://opencollective.com/tauri"
|
|
1299
|
+
}
|
|
1300
|
+
},
|
|
1301
|
+
"node_modules/@tauri-apps/plugin-clipboard-manager": {
|
|
1302
|
+
"version": "2.3.2",
|
|
1303
|
+
"resolved": "https://registry.npmjs.org/@tauri-apps/plugin-clipboard-manager/-/plugin-clipboard-manager-2.3.2.tgz",
|
|
1304
|
+
"integrity": "sha512-CUlb5Hqi2oZbcZf4VUyUH53XWPPdtpw43EUpCza5HWZJwxEoDowFzNUDt1tRUXA8Uq+XPn17Ysfptip33sG4eQ==",
|
|
1305
|
+
"license": "MIT OR Apache-2.0",
|
|
1306
|
+
"dependencies": {
|
|
1307
|
+
"@tauri-apps/api": "^2.8.0"
|
|
1308
|
+
}
|
|
1309
|
+
},
|
|
1310
|
+
"node_modules/@turf/helpers": {
|
|
1311
|
+
"version": "6.5.0",
|
|
1312
|
+
"resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz",
|
|
1313
|
+
"integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==",
|
|
1314
|
+
"license": "MIT",
|
|
1315
|
+
"funding": {
|
|
1316
|
+
"url": "https://opencollective.com/turf"
|
|
1317
|
+
}
|
|
1318
|
+
},
|
|
1319
|
+
"node_modules/@turf/intersect": {
|
|
1320
|
+
"version": "6.5.0",
|
|
1321
|
+
"resolved": "https://registry.npmjs.org/@turf/intersect/-/intersect-6.5.0.tgz",
|
|
1322
|
+
"integrity": "sha512-2legGJeKrfFkzntcd4GouPugoqPUjexPZnOvfez+3SfIMrHvulw8qV8u7pfVyn2Yqs53yoVCEjS5sEpvQ5YRQg==",
|
|
1323
|
+
"license": "MIT",
|
|
1324
|
+
"dependencies": {
|
|
1325
|
+
"@turf/helpers": "^6.5.0",
|
|
1326
|
+
"@turf/invariant": "^6.5.0",
|
|
1327
|
+
"polygon-clipping": "^0.15.3"
|
|
1328
|
+
},
|
|
1329
|
+
"funding": {
|
|
1330
|
+
"url": "https://opencollective.com/turf"
|
|
1331
|
+
}
|
|
1332
|
+
},
|
|
1333
|
+
"node_modules/@turf/invariant": {
|
|
1334
|
+
"version": "6.5.0",
|
|
1335
|
+
"resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz",
|
|
1336
|
+
"integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==",
|
|
1337
|
+
"license": "MIT",
|
|
1338
|
+
"dependencies": {
|
|
1339
|
+
"@turf/helpers": "^6.5.0"
|
|
1340
|
+
},
|
|
1341
|
+
"funding": {
|
|
1342
|
+
"url": "https://opencollective.com/turf"
|
|
1343
|
+
}
|
|
1344
|
+
},
|
|
1345
|
+
"node_modules/@types/estree": {
|
|
1346
|
+
"version": "1.0.9",
|
|
1347
|
+
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.9.tgz",
|
|
1348
|
+
"integrity": "sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==",
|
|
1349
|
+
"dev": true,
|
|
1350
|
+
"license": "MIT"
|
|
1351
|
+
},
|
|
1352
|
+
"node_modules/@types/jsonpath": {
|
|
1353
|
+
"version": "0.2.4",
|
|
1354
|
+
"resolved": "https://registry.npmjs.org/@types/jsonpath/-/jsonpath-0.2.4.tgz",
|
|
1355
|
+
"integrity": "sha512-K3hxB8Blw0qgW6ExKgMbXQv2UPZBoE2GqLpVY+yr7nMD2Pq86lsuIzyAaiQ7eMqFL5B6di6pxSkogLJEyEHoGA==",
|
|
1356
|
+
"dev": true,
|
|
1357
|
+
"license": "MIT"
|
|
1358
|
+
},
|
|
1359
|
+
"node_modules/@types/linkify-it": {
|
|
1360
|
+
"version": "5.0.0",
|
|
1361
|
+
"resolved": "https://registry.npmjs.org/@types/linkify-it/-/linkify-it-5.0.0.tgz",
|
|
1362
|
+
"integrity": "sha512-sVDA58zAw4eWAffKOaQH5/5j3XeayukzDk+ewSsnv3p4yJEZHCCzMDiZM8e0OUrRvmpGZ85jf4yDHkHsgBNr9Q==",
|
|
1363
|
+
"dev": true,
|
|
1364
|
+
"license": "MIT"
|
|
1365
|
+
},
|
|
1366
|
+
"node_modules/@types/markdown-it": {
|
|
1367
|
+
"version": "14.2.0",
|
|
1368
|
+
"resolved": "https://registry.npmjs.org/@types/markdown-it/-/markdown-it-14.2.0.tgz",
|
|
1369
|
+
"integrity": "sha512-NoQ2yGlLWj4wpxMs+TYmRKk3thDrQ97agr7sFqfLsAlvoS8SNQuTrlObhFqG9iugdTtgOE9jpJ6FNM4ZGsa5xQ==",
|
|
1370
|
+
"dev": true,
|
|
1371
|
+
"license": "MIT",
|
|
1372
|
+
"dependencies": {
|
|
1373
|
+
"@types/linkify-it": "^5",
|
|
1374
|
+
"@types/mdurl": "^2"
|
|
1375
|
+
}
|
|
1376
|
+
},
|
|
1377
|
+
"node_modules/@types/mdurl": {
|
|
1378
|
+
"version": "2.0.0",
|
|
1379
|
+
"resolved": "https://registry.npmjs.org/@types/mdurl/-/mdurl-2.0.0.tgz",
|
|
1380
|
+
"integrity": "sha512-RGdgjQUZba5p6QEFAVx2OGb8rQDL/cPRG7GiedRzMcJ1tYnUANBncjbSB1NRGwbvjcPeikRABz2nshyPk1bhWg==",
|
|
1381
|
+
"dev": true,
|
|
1382
|
+
"license": "MIT"
|
|
1383
|
+
},
|
|
1384
|
+
"node_modules/@types/node": {
|
|
1385
|
+
"version": "25.9.5",
|
|
1386
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-25.9.5.tgz",
|
|
1387
|
+
"integrity": "sha512-OScDchr2fwuUmWdf4kZ9h7PcJiYDVInhJizG/biAq3cAvqwYktuy/TYGGdZNMtNTFUP7rnb0NU4TUdm82kt4Rg==",
|
|
1388
|
+
"dev": true,
|
|
1389
|
+
"license": "MIT",
|
|
1390
|
+
"dependencies": {
|
|
1391
|
+
"undici-types": ">=7.24.0 <7.24.7"
|
|
1392
|
+
}
|
|
1393
|
+
},
|
|
1394
|
+
"node_modules/@vercel/oidc": {
|
|
1395
|
+
"version": "3.2.0",
|
|
1396
|
+
"resolved": "https://registry.npmjs.org/@vercel/oidc/-/oidc-3.2.0.tgz",
|
|
1397
|
+
"integrity": "sha512-UycprH3T6n3jH0k44NHMa7pnFHGu/N05MjojYr+Mc6I7obkoLIJujSWwin1pCvdy/eOxrI/l3uDLQsmcrOb4ug==",
|
|
1398
|
+
"license": "Apache-2.0",
|
|
1399
|
+
"engines": {
|
|
1400
|
+
"node": ">= 20"
|
|
1401
|
+
}
|
|
1402
|
+
},
|
|
1403
|
+
"node_modules/@vitejs/plugin-vue": {
|
|
1404
|
+
"version": "5.2.4",
|
|
1405
|
+
"resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-5.2.4.tgz",
|
|
1406
|
+
"integrity": "sha512-7Yx/SXSOcQq5HiiV3orevHUFn+pmMB4cgbEkDYgnkUWb0WfeQ/wa2yFv6D5ICiCQOVpjA7vYDXrC7AGO8yjDHA==",
|
|
1407
|
+
"dev": true,
|
|
1408
|
+
"license": "MIT",
|
|
1409
|
+
"engines": {
|
|
1410
|
+
"node": "^18.0.0 || >=20.0.0"
|
|
1411
|
+
},
|
|
1412
|
+
"peerDependencies": {
|
|
1413
|
+
"vite": "^5.0.0 || ^6.0.0",
|
|
1414
|
+
"vue": "^3.2.25"
|
|
1415
|
+
}
|
|
1416
|
+
},
|
|
1417
|
+
"node_modules/@volar/language-core": {
|
|
1418
|
+
"version": "2.4.15",
|
|
1419
|
+
"resolved": "https://registry.npmjs.org/@volar/language-core/-/language-core-2.4.15.tgz",
|
|
1420
|
+
"integrity": "sha512-3VHw+QZU0ZG9IuQmzT68IyN4hZNd9GchGPhbD9+pa8CVv7rnoOZwo7T8weIbrRmihqy3ATpdfXFnqRrfPVK6CA==",
|
|
1421
|
+
"dev": true,
|
|
1422
|
+
"license": "MIT",
|
|
1423
|
+
"dependencies": {
|
|
1424
|
+
"@volar/source-map": "2.4.15"
|
|
1425
|
+
}
|
|
1426
|
+
},
|
|
1427
|
+
"node_modules/@volar/source-map": {
|
|
1428
|
+
"version": "2.4.15",
|
|
1429
|
+
"resolved": "https://registry.npmjs.org/@volar/source-map/-/source-map-2.4.15.tgz",
|
|
1430
|
+
"integrity": "sha512-CPbMWlUN6hVZJYGcU/GSoHu4EnCHiLaXI9n8c9la6RaI9W5JHX+NqG+GSQcB0JdC2FIBLdZJwGsfKyBB71VlTg==",
|
|
1431
|
+
"dev": true,
|
|
1432
|
+
"license": "MIT"
|
|
1433
|
+
},
|
|
1434
|
+
"node_modules/@volar/typescript": {
|
|
1435
|
+
"version": "2.4.15",
|
|
1436
|
+
"resolved": "https://registry.npmjs.org/@volar/typescript/-/typescript-2.4.15.tgz",
|
|
1437
|
+
"integrity": "sha512-2aZ8i0cqPGjXb4BhkMsPYDkkuc2ZQ6yOpqwAuNwUoncELqoy5fRgOQtLR9gB0g902iS0NAkvpIzs27geVyVdPg==",
|
|
1438
|
+
"dev": true,
|
|
1439
|
+
"license": "MIT",
|
|
1440
|
+
"dependencies": {
|
|
1441
|
+
"@volar/language-core": "2.4.15",
|
|
1442
|
+
"path-browserify": "^1.0.1",
|
|
1443
|
+
"vscode-uri": "^3.0.8"
|
|
1444
|
+
}
|
|
1445
|
+
},
|
|
1446
|
+
"node_modules/@vue/compiler-core": {
|
|
1447
|
+
"version": "3.5.41",
|
|
1448
|
+
"resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.5.41.tgz",
|
|
1449
|
+
"integrity": "sha512-q0Xtv/F9w2YO/7htQhtiL+Ev2WCJbe5N2hc+XfgyKkEKqWpSxknmT8QOuGdEKNdjPq0c3F7rNpFkTo3Kfrm7pg==",
|
|
1450
|
+
"license": "MIT",
|
|
1451
|
+
"dependencies": {
|
|
1452
|
+
"@babel/parser": "^7.29.8",
|
|
1453
|
+
"@vue/shared": "3.5.41",
|
|
1454
|
+
"entities": "^7.0.1",
|
|
1455
|
+
"estree-walker": "^2.0.2",
|
|
1456
|
+
"source-map-js": "^1.2.1"
|
|
1457
|
+
}
|
|
1458
|
+
},
|
|
1459
|
+
"node_modules/@vue/compiler-core/node_modules/entities": {
|
|
1460
|
+
"version": "7.0.1",
|
|
1461
|
+
"resolved": "https://registry.npmjs.org/entities/-/entities-7.0.1.tgz",
|
|
1462
|
+
"integrity": "sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==",
|
|
1463
|
+
"license": "BSD-2-Clause",
|
|
1464
|
+
"engines": {
|
|
1465
|
+
"node": ">=0.12"
|
|
1466
|
+
},
|
|
1467
|
+
"funding": {
|
|
1468
|
+
"url": "https://github.com/fb55/entities?sponsor=1"
|
|
1469
|
+
}
|
|
1470
|
+
},
|
|
1471
|
+
"node_modules/@vue/compiler-dom": {
|
|
1472
|
+
"version": "3.5.41",
|
|
1473
|
+
"resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.5.41.tgz",
|
|
1474
|
+
"integrity": "sha512-oKacVfNglLvGjnS6BXOlGL7EyG2h8X03pqXCjzotRZUaXGjbrTJUnVAQjrCqUnS+lyu31nwQjZY/d817GmCnfw==",
|
|
1475
|
+
"license": "MIT",
|
|
1476
|
+
"dependencies": {
|
|
1477
|
+
"@vue/compiler-core": "3.5.41",
|
|
1478
|
+
"@vue/shared": "3.5.41"
|
|
1479
|
+
}
|
|
1480
|
+
},
|
|
1481
|
+
"node_modules/@vue/compiler-sfc": {
|
|
1482
|
+
"version": "3.5.41",
|
|
1483
|
+
"resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.5.41.tgz",
|
|
1484
|
+
"integrity": "sha512-XJhip7R2wy6vX3knCxdZN4KracFaZUef58s1KYewqluedHIJaPIVfXoYT7MF1F8nCvv6k8bWWxDC8opMkg1VTQ==",
|
|
1485
|
+
"license": "MIT",
|
|
1486
|
+
"dependencies": {
|
|
1487
|
+
"@babel/parser": "^7.29.8",
|
|
1488
|
+
"@vue/compiler-core": "3.5.41",
|
|
1489
|
+
"@vue/compiler-dom": "3.5.41",
|
|
1490
|
+
"@vue/compiler-ssr": "3.5.41",
|
|
1491
|
+
"@vue/shared": "3.5.41",
|
|
1492
|
+
"estree-walker": "^2.0.2",
|
|
1493
|
+
"magic-string": "^0.30.21",
|
|
1494
|
+
"postcss": "^8.5.19",
|
|
1495
|
+
"source-map-js": "^1.2.1"
|
|
1496
|
+
}
|
|
1497
|
+
},
|
|
1498
|
+
"node_modules/@vue/compiler-ssr": {
|
|
1499
|
+
"version": "3.5.41",
|
|
1500
|
+
"resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.5.41.tgz",
|
|
1501
|
+
"integrity": "sha512-U3v5OejKEGqOI0Wy0+Sz7hGuIFZHA4LSXzrNM3IMIeDyJEBBfTpX26n3SDgToRpP2bLc9FfI2j/kSgcJ8Emq5A==",
|
|
1502
|
+
"license": "MIT",
|
|
1503
|
+
"dependencies": {
|
|
1504
|
+
"@vue/compiler-dom": "3.5.41",
|
|
1505
|
+
"@vue/shared": "3.5.41"
|
|
1506
|
+
}
|
|
1507
|
+
},
|
|
1508
|
+
"node_modules/@vue/compiler-vue2": {
|
|
1509
|
+
"version": "2.7.16",
|
|
1510
|
+
"resolved": "https://registry.npmjs.org/@vue/compiler-vue2/-/compiler-vue2-2.7.16.tgz",
|
|
1511
|
+
"integrity": "sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==",
|
|
1512
|
+
"dev": true,
|
|
1513
|
+
"license": "MIT",
|
|
1514
|
+
"dependencies": {
|
|
1515
|
+
"de-indent": "^1.0.2",
|
|
1516
|
+
"he": "^1.2.0"
|
|
1517
|
+
}
|
|
1518
|
+
},
|
|
1519
|
+
"node_modules/@vue/devtools-api": {
|
|
1520
|
+
"version": "7.7.10",
|
|
1521
|
+
"resolved": "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-7.7.10.tgz",
|
|
1522
|
+
"integrity": "sha512-KxtEpUOOpFz/qOGRrAwA36QF7DqIA+FXgCYit9mk9wjbaZt0sXOFz81ElOZtKA4HbWHUdwNjZHBFsFFyp5BZiA==",
|
|
1523
|
+
"license": "MIT",
|
|
1524
|
+
"dependencies": {
|
|
1525
|
+
"@vue/devtools-kit": "^7.7.10"
|
|
1526
|
+
}
|
|
1527
|
+
},
|
|
1528
|
+
"node_modules/@vue/devtools-kit": {
|
|
1529
|
+
"version": "7.7.10",
|
|
1530
|
+
"resolved": "https://registry.npmjs.org/@vue/devtools-kit/-/devtools-kit-7.7.10.tgz",
|
|
1531
|
+
"integrity": "sha512-3WNi2Kq4tbpVbmhml7RiphmAt0279oh3fKNeWMQIrltfX8Q91b4i5PL8DtyNKdwmcsGrV4fg+erwWOmD05CLIw==",
|
|
1532
|
+
"license": "MIT",
|
|
1533
|
+
"dependencies": {
|
|
1534
|
+
"@vue/devtools-shared": "^7.7.10",
|
|
1535
|
+
"birpc": "^2.3.0",
|
|
1536
|
+
"hookable": "^5.5.3",
|
|
1537
|
+
"mitt": "^3.0.1",
|
|
1538
|
+
"perfect-debounce": "^1.0.0",
|
|
1539
|
+
"speakingurl": "^14.0.1",
|
|
1540
|
+
"superjson": "^2.2.2"
|
|
1541
|
+
}
|
|
1542
|
+
},
|
|
1543
|
+
"node_modules/@vue/devtools-shared": {
|
|
1544
|
+
"version": "7.7.10",
|
|
1545
|
+
"resolved": "https://registry.npmjs.org/@vue/devtools-shared/-/devtools-shared-7.7.10.tgz",
|
|
1546
|
+
"integrity": "sha512-wOPslzB8vTvpxwdaOcR2qAbwmuSP0L+rhpoC6Cf56V3Jip+HWb7PQQXOUPgBNQARpXsbQX/+mvi8kKucmBGRwQ==",
|
|
1547
|
+
"license": "MIT",
|
|
1548
|
+
"dependencies": {
|
|
1549
|
+
"rfdc": "^1.4.1"
|
|
1550
|
+
}
|
|
1551
|
+
},
|
|
1552
|
+
"node_modules/@vue/language-core": {
|
|
1553
|
+
"version": "2.2.12",
|
|
1554
|
+
"resolved": "https://registry.npmjs.org/@vue/language-core/-/language-core-2.2.12.tgz",
|
|
1555
|
+
"integrity": "sha512-IsGljWbKGU1MZpBPN+BvPAdr55YPkj2nB/TBNGNC32Vy2qLG25DYu/NBN2vNtZqdRbTRjaoYrahLrToim2NanA==",
|
|
1556
|
+
"dev": true,
|
|
1557
|
+
"license": "MIT",
|
|
1558
|
+
"dependencies": {
|
|
1559
|
+
"@volar/language-core": "2.4.15",
|
|
1560
|
+
"@vue/compiler-dom": "^3.5.0",
|
|
1561
|
+
"@vue/compiler-vue2": "^2.7.16",
|
|
1562
|
+
"@vue/shared": "^3.5.0",
|
|
1563
|
+
"alien-signals": "^1.0.3",
|
|
1564
|
+
"minimatch": "^9.0.3",
|
|
1565
|
+
"muggle-string": "^0.4.1",
|
|
1566
|
+
"path-browserify": "^1.0.1"
|
|
1567
|
+
},
|
|
1568
|
+
"peerDependencies": {
|
|
1569
|
+
"typescript": "*"
|
|
1570
|
+
},
|
|
1571
|
+
"peerDependenciesMeta": {
|
|
1572
|
+
"typescript": {
|
|
1573
|
+
"optional": true
|
|
1574
|
+
}
|
|
1575
|
+
}
|
|
1576
|
+
},
|
|
1577
|
+
"node_modules/@vue/reactivity": {
|
|
1578
|
+
"version": "3.5.41",
|
|
1579
|
+
"resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.5.41.tgz",
|
|
1580
|
+
"integrity": "sha512-rznsqKM0np0x18EjzF8x88MpEhdNsffbvFbckLL5+oUKz1BxAImEmO7J1ArRYSyo6aQaVoBDp7jEkT91OOxydA==",
|
|
1581
|
+
"license": "MIT",
|
|
1582
|
+
"dependencies": {
|
|
1583
|
+
"@vue/shared": "3.5.41"
|
|
1584
|
+
}
|
|
1585
|
+
},
|
|
1586
|
+
"node_modules/@vue/runtime-core": {
|
|
1587
|
+
"version": "3.5.41",
|
|
1588
|
+
"resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.5.41.tgz",
|
|
1589
|
+
"integrity": "sha512-Vcry58hiAKwGen9Z1jUZE0feFsNArPCMOImYI8el48A9Idf6DuQYD0U05zZIF2Iad1hGhPSvcbBbAOhNr55fhg==",
|
|
1590
|
+
"license": "MIT",
|
|
1591
|
+
"dependencies": {
|
|
1592
|
+
"@vue/reactivity": "3.5.41",
|
|
1593
|
+
"@vue/shared": "3.5.41"
|
|
1594
|
+
}
|
|
1595
|
+
},
|
|
1596
|
+
"node_modules/@vue/runtime-dom": {
|
|
1597
|
+
"version": "3.5.41",
|
|
1598
|
+
"resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.5.41.tgz",
|
|
1599
|
+
"integrity": "sha512-3vVBahVBS9+U6cmXBLyb8nE6/yYo4J/CGI9eVFs3KiMc0YHuudwKyShTD65jtJy/L9PUUxNAFu4cj4LiJ0UFbw==",
|
|
1600
|
+
"license": "MIT",
|
|
1601
|
+
"dependencies": {
|
|
1602
|
+
"@vue/reactivity": "3.5.41",
|
|
1603
|
+
"@vue/runtime-core": "3.5.41",
|
|
1604
|
+
"@vue/shared": "3.5.41",
|
|
1605
|
+
"csstype": "^3.2.3"
|
|
1606
|
+
}
|
|
1607
|
+
},
|
|
1608
|
+
"node_modules/@vue/server-renderer": {
|
|
1609
|
+
"version": "3.5.41",
|
|
1610
|
+
"resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.5.41.tgz",
|
|
1611
|
+
"integrity": "sha512-n6hx/pNFfbD6SuyeuMVkvqox8bwf/ET9JlA/kAz/imw8sw++wkqKe2mHX5KutjPpbKE4Z56yTHszoOjGMI9igQ==",
|
|
1612
|
+
"license": "MIT",
|
|
1613
|
+
"dependencies": {
|
|
1614
|
+
"@vue/compiler-ssr": "3.5.41",
|
|
1615
|
+
"@vue/runtime-dom": "3.5.41",
|
|
1616
|
+
"@vue/shared": "3.5.41"
|
|
1617
|
+
}
|
|
1618
|
+
},
|
|
1619
|
+
"node_modules/@vue/shared": {
|
|
1620
|
+
"version": "3.5.41",
|
|
1621
|
+
"resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.5.41.tgz",
|
|
1622
|
+
"integrity": "sha512-IOnwSCma8j+9xJT6b8H0dEYidC80NsYmNMlZxRsukYcSoGaDBohog5hDxzeUXdFeGWFA++vWvxqOmrr96VlqMA==",
|
|
1623
|
+
"license": "MIT"
|
|
1624
|
+
},
|
|
1625
|
+
"node_modules/@vuemap/amap-jsapi-loader": {
|
|
1626
|
+
"version": "1.0.4",
|
|
1627
|
+
"resolved": "https://registry.npmjs.org/@vuemap/amap-jsapi-loader/-/amap-jsapi-loader-1.0.4.tgz",
|
|
1628
|
+
"integrity": "sha512-s5fFHrsNkjYMovEmUJ5S23jpDtElTanDN2HdCt/amOD245a8wWVcTPjl06YEHXtxf6Ewm+z29wQByOCn209Hxg==",
|
|
1629
|
+
"license": "MIT"
|
|
1630
|
+
},
|
|
1631
|
+
"node_modules/@vuemap/amap-jsapi-types": {
|
|
1632
|
+
"version": "0.0.17",
|
|
1633
|
+
"resolved": "https://registry.npmjs.org/@vuemap/amap-jsapi-types/-/amap-jsapi-types-0.0.17.tgz",
|
|
1634
|
+
"integrity": "sha512-FHI8OMWxJWbgyuQ0tKclvurQIVHRexMIYAOwZ/z9+G7aHHK5EFhKM13siLczNNAgXdJ2dctPEghCdlhcByl3Ag==",
|
|
1635
|
+
"license": "MIT"
|
|
1636
|
+
},
|
|
1637
|
+
"node_modules/@vuemap/amap-xyz-layer": {
|
|
1638
|
+
"version": "0.0.15",
|
|
1639
|
+
"resolved": "https://registry.npmjs.org/@vuemap/amap-xyz-layer/-/amap-xyz-layer-0.0.15.tgz",
|
|
1640
|
+
"integrity": "sha512-L3rsgk2+i277RlMScpxVpjPBhSfMCeHcyFv7zkomMzd/J9W+X8yTUgSFvzVLWnnlXEXL80vNgs7lIJpSxa5vNg==",
|
|
1641
|
+
"license": "MIT",
|
|
1642
|
+
"dependencies": {
|
|
1643
|
+
"@math.gl/core": "3.6.3",
|
|
1644
|
+
"earcut": "2.2.4",
|
|
1645
|
+
"gl-matrix": "3.4.3"
|
|
1646
|
+
},
|
|
1647
|
+
"engines": {
|
|
1648
|
+
"node": ">= 16"
|
|
1649
|
+
}
|
|
1650
|
+
},
|
|
1651
|
+
"node_modules/@vuemap/district-cluster": {
|
|
1652
|
+
"version": "0.0.12",
|
|
1653
|
+
"resolved": "https://registry.npmjs.org/@vuemap/district-cluster/-/district-cluster-0.0.12.tgz",
|
|
1654
|
+
"integrity": "sha512-JmZxl99PfCsF98dvxTmi17Ti3XaQMwcKidgduiIQvAPNTKmZjBAR1RRtdQjxooIuJiLXJo9itWIRuBaD9MseTQ==",
|
|
1655
|
+
"license": "MIT",
|
|
1656
|
+
"dependencies": {
|
|
1657
|
+
"@turf/helpers": "^6.5.0",
|
|
1658
|
+
"@turf/intersect": "^6.5.0",
|
|
1659
|
+
"@vuemap/amap-jsapi-types": "^0.0.16",
|
|
1660
|
+
"topojson-client": "3.1.0"
|
|
1661
|
+
},
|
|
1662
|
+
"engines": {
|
|
1663
|
+
"node": ">= 16"
|
|
1664
|
+
}
|
|
1665
|
+
},
|
|
1666
|
+
"node_modules/@vuemap/district-cluster/node_modules/@vuemap/amap-jsapi-types": {
|
|
1667
|
+
"version": "0.0.16",
|
|
1668
|
+
"resolved": "https://registry.npmjs.org/@vuemap/amap-jsapi-types/-/amap-jsapi-types-0.0.16.tgz",
|
|
1669
|
+
"integrity": "sha512-1B1H2IS8sT2RDubbpEY+K8j11Gb7PZY5Bo0cszRkF8Nw+9HNqpbUNeqkQ6+rxLkwIedcSkOsFDy/IyzXCUXqVw==",
|
|
1670
|
+
"license": "MIT"
|
|
1671
|
+
},
|
|
1672
|
+
"node_modules/@vuemap/vue-amap": {
|
|
1673
|
+
"version": "2.1.17",
|
|
1674
|
+
"resolved": "https://registry.npmjs.org/@vuemap/vue-amap/-/vue-amap-2.1.17.tgz",
|
|
1675
|
+
"integrity": "sha512-DzdFqRTo3p8YTxN/P0mCwhlAOmLHMN68e0JeAKux40qZTFJ9/2CNFoBkRLj6yRQ//9o/tLvOaqZVjJyfQpDkwA==",
|
|
1676
|
+
"license": "MIT",
|
|
1677
|
+
"dependencies": {
|
|
1678
|
+
"@vuemap/amap-jsapi-loader": "1.0.4",
|
|
1679
|
+
"@vuemap/amap-jsapi-types": "^0.0.17",
|
|
1680
|
+
"@vuemap/amap-xyz-layer": "0.0.15",
|
|
1681
|
+
"@vuemap/district-cluster": "0.0.12",
|
|
1682
|
+
"lodash-es": "^4.17.21"
|
|
1683
|
+
},
|
|
1684
|
+
"peerDependencies": {
|
|
1685
|
+
"vue": "3"
|
|
1686
|
+
}
|
|
1687
|
+
},
|
|
1688
|
+
"node_modules/agent-base": {
|
|
1689
|
+
"version": "6.0.2",
|
|
1690
|
+
"resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz",
|
|
1691
|
+
"integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
|
|
1692
|
+
"license": "MIT",
|
|
1693
|
+
"dependencies": {
|
|
1694
|
+
"debug": "4"
|
|
1695
|
+
},
|
|
1696
|
+
"engines": {
|
|
1697
|
+
"node": ">= 6.0.0"
|
|
1698
|
+
}
|
|
1699
|
+
},
|
|
1700
|
+
"node_modules/ai": {
|
|
1701
|
+
"version": "6.0.270",
|
|
1702
|
+
"resolved": "https://registry.npmjs.org/ai/-/ai-6.0.270.tgz",
|
|
1703
|
+
"integrity": "sha512-0+Cnu7jxFvj3Qk6lfDJHcVwSyD4j7eC8/ZFDa39P17x1jQzE2DgLS53+FxJuNo1+uorkQMxnJKvdv7Kw7aHjug==",
|
|
1704
|
+
"license": "Apache-2.0",
|
|
1705
|
+
"dependencies": {
|
|
1706
|
+
"@ai-sdk/gateway": "3.0.184",
|
|
1707
|
+
"@ai-sdk/provider": "3.0.15",
|
|
1708
|
+
"@ai-sdk/provider-utils": "4.0.49",
|
|
1709
|
+
"@opentelemetry/api": "^1.9.0"
|
|
1710
|
+
},
|
|
1711
|
+
"engines": {
|
|
1712
|
+
"node": ">=18"
|
|
1713
|
+
},
|
|
1714
|
+
"peerDependencies": {
|
|
1715
|
+
"zod": "^3.25.76 || ^4.1.8"
|
|
1716
|
+
}
|
|
1717
|
+
},
|
|
1718
|
+
"node_modules/alien-signals": {
|
|
1719
|
+
"version": "1.0.13",
|
|
1720
|
+
"resolved": "https://registry.npmjs.org/alien-signals/-/alien-signals-1.0.13.tgz",
|
|
1721
|
+
"integrity": "sha512-OGj9yyTnJEttvzhTUWuscOvtqxq5vrhF7vL9oS0xJ2mK0ItPYP1/y+vCFebfxoEyAz0++1AIwJ5CMr+Fk3nDmg==",
|
|
1722
|
+
"dev": true,
|
|
1723
|
+
"license": "MIT"
|
|
1724
|
+
},
|
|
1725
|
+
"node_modules/animejs": {
|
|
1726
|
+
"version": "3.2.2",
|
|
1727
|
+
"resolved": "https://registry.npmjs.org/animejs/-/animejs-3.2.2.tgz",
|
|
1728
|
+
"integrity": "sha512-Ao95qWLpDPXXM+WrmwcKbl6uNlC5tjnowlaRYtuVDHHoygjtIPfDUoK9NthrlZsQSKjZXlmji2TrBUAVbiH0LQ==",
|
|
1729
|
+
"license": "MIT"
|
|
1730
|
+
},
|
|
1731
|
+
"node_modules/argparse": {
|
|
1732
|
+
"version": "2.0.1",
|
|
1733
|
+
"resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
|
|
1734
|
+
"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
|
|
1735
|
+
"license": "Python-2.0"
|
|
1736
|
+
},
|
|
1737
|
+
"node_modules/asynckit": {
|
|
1738
|
+
"version": "0.4.0",
|
|
1739
|
+
"resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
|
|
1740
|
+
"integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
|
|
1741
|
+
"license": "MIT"
|
|
1742
|
+
},
|
|
1743
|
+
"node_modules/axios": {
|
|
1744
|
+
"version": "1.20.0",
|
|
1745
|
+
"resolved": "https://registry.npmjs.org/axios/-/axios-1.20.0.tgz",
|
|
1746
|
+
"integrity": "sha512-r8aOh8j9cGKpgQAqpzrUHnSIc6a59Y3Xf/cv8sy1DrHCkZHzQGEuoq1tARk6qSyDdtQGSDgpb9kFlruzPvrgwg==",
|
|
1747
|
+
"license": "MIT",
|
|
1748
|
+
"dependencies": {
|
|
1749
|
+
"follow-redirects": "^1.16.0",
|
|
1750
|
+
"form-data": "^4.0.6",
|
|
1751
|
+
"https-proxy-agent": "^5.0.1",
|
|
1752
|
+
"proxy-from-env": "^2.1.0"
|
|
1753
|
+
}
|
|
1754
|
+
},
|
|
1755
|
+
"node_modules/balanced-match": {
|
|
1756
|
+
"version": "1.0.2",
|
|
1757
|
+
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
|
|
1758
|
+
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
|
|
1759
|
+
"dev": true,
|
|
1760
|
+
"license": "MIT"
|
|
1761
|
+
},
|
|
1762
|
+
"node_modules/birpc": {
|
|
1763
|
+
"version": "2.9.0",
|
|
1764
|
+
"resolved": "https://registry.npmjs.org/birpc/-/birpc-2.9.0.tgz",
|
|
1765
|
+
"integrity": "sha512-KrayHS5pBi69Xi9JmvoqrIgYGDkD6mcSe/i6YKi3w5kekCLzrX4+nawcXqrj2tIp50Kw/mT/s3p+GVK0A0sKxw==",
|
|
1766
|
+
"license": "MIT",
|
|
1767
|
+
"funding": {
|
|
1768
|
+
"url": "https://github.com/sponsors/antfu"
|
|
1769
|
+
}
|
|
1770
|
+
},
|
|
1771
|
+
"node_modules/brace-expansion": {
|
|
1772
|
+
"version": "2.1.4",
|
|
1773
|
+
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.1.4.tgz",
|
|
1774
|
+
"integrity": "sha512-hGfVzPxthbf3+2yjg/RBs60cB0FhqBS/zvdV/4wn4/BmN0bNMMHPc4V/BbFieqf1TKAGGAHnY4eSjajCl0f2Xg==",
|
|
1775
|
+
"dev": true,
|
|
1776
|
+
"license": "MIT",
|
|
1777
|
+
"dependencies": {
|
|
1778
|
+
"balanced-match": "^1.0.0"
|
|
1779
|
+
}
|
|
1780
|
+
},
|
|
1781
|
+
"node_modules/browser-image-compression": {
|
|
1782
|
+
"version": "2.0.2",
|
|
1783
|
+
"resolved": "https://registry.npmjs.org/browser-image-compression/-/browser-image-compression-2.0.2.tgz",
|
|
1784
|
+
"integrity": "sha512-pBLlQyUf6yB8SmmngrcOw3EoS4RpQ1BcylI3T9Yqn7+4nrQTXJD4sJDe5ODnJdrvNMaio5OicFo75rDyJD2Ucw==",
|
|
1785
|
+
"license": "MIT",
|
|
1786
|
+
"dependencies": {
|
|
1787
|
+
"uzip": "0.20201231.0"
|
|
1788
|
+
}
|
|
1789
|
+
},
|
|
1790
|
+
"node_modules/call-bind-apply-helpers": {
|
|
1791
|
+
"version": "1.0.2",
|
|
1792
|
+
"resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
|
|
1793
|
+
"integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
|
|
1794
|
+
"license": "MIT",
|
|
1795
|
+
"dependencies": {
|
|
1796
|
+
"es-errors": "^1.3.0",
|
|
1797
|
+
"function-bind": "^1.1.2"
|
|
1798
|
+
},
|
|
1799
|
+
"engines": {
|
|
1800
|
+
"node": ">= 0.4"
|
|
1801
|
+
}
|
|
1802
|
+
},
|
|
1803
|
+
"node_modules/clipboard": {
|
|
1804
|
+
"version": "2.0.11",
|
|
1805
|
+
"resolved": "https://registry.npmjs.org/clipboard/-/clipboard-2.0.11.tgz",
|
|
1806
|
+
"integrity": "sha512-C+0bbOqkezLIsmWSvlsXS0Q0bmkugu7jcfMIACB+RDEntIzQIkdr148we28AfSloQLRdZlYL/QYyrq05j/3Faw==",
|
|
1807
|
+
"license": "MIT",
|
|
1808
|
+
"dependencies": {
|
|
1809
|
+
"good-listener": "^1.2.2",
|
|
1810
|
+
"select": "^1.1.2",
|
|
1811
|
+
"tiny-emitter": "^2.0.0"
|
|
1812
|
+
}
|
|
1813
|
+
},
|
|
1814
|
+
"node_modules/combined-stream": {
|
|
1815
|
+
"version": "1.0.8",
|
|
1816
|
+
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
|
|
1817
|
+
"integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
|
|
1818
|
+
"license": "MIT",
|
|
1819
|
+
"dependencies": {
|
|
1820
|
+
"delayed-stream": "~1.0.0"
|
|
1821
|
+
},
|
|
1822
|
+
"engines": {
|
|
1823
|
+
"node": ">= 0.8"
|
|
1824
|
+
}
|
|
1825
|
+
},
|
|
1826
|
+
"node_modules/commander": {
|
|
1827
|
+
"version": "2.20.3",
|
|
1828
|
+
"resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
|
|
1829
|
+
"integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
|
|
1830
|
+
"license": "MIT"
|
|
1831
|
+
},
|
|
1832
|
+
"node_modules/copy-anything": {
|
|
1833
|
+
"version": "4.1.0",
|
|
1834
|
+
"resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-4.1.0.tgz",
|
|
1835
|
+
"integrity": "sha512-ufbM3smX/Jbnpk5wcQjzd1MgBpzmqfNETUAyZNrGwU9foRlyHoGzMMBBCRzEhQLBjZfFDE1W2ufPXX2vdWkV8Q==",
|
|
1836
|
+
"license": "MIT",
|
|
1837
|
+
"engines": {
|
|
1838
|
+
"node": ">=18"
|
|
1839
|
+
},
|
|
1840
|
+
"funding": {
|
|
1841
|
+
"url": "https://github.com/sponsors/mesqueeb"
|
|
1842
|
+
}
|
|
1843
|
+
},
|
|
1844
|
+
"node_modules/copy-text-to-clipboard": {
|
|
1845
|
+
"version": "3.2.2",
|
|
1846
|
+
"resolved": "https://registry.npmjs.org/copy-text-to-clipboard/-/copy-text-to-clipboard-3.2.2.tgz",
|
|
1847
|
+
"integrity": "sha512-T6SqyLd1iLuqPA90J5N4cTalrtovCySh58iiZDGJ6FGznbclKh4UI+FGacQSgFzwKG77W7XT5gwbVEbd9cIH1A==",
|
|
1848
|
+
"license": "MIT",
|
|
1849
|
+
"engines": {
|
|
1850
|
+
"node": ">=12"
|
|
1851
|
+
},
|
|
1852
|
+
"funding": {
|
|
1853
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1854
|
+
}
|
|
1855
|
+
},
|
|
1856
|
+
"node_modules/core-js": {
|
|
1857
|
+
"version": "3.50.0",
|
|
1858
|
+
"resolved": "https://registry.npmjs.org/core-js/-/core-js-3.50.0.tgz",
|
|
1859
|
+
"integrity": "sha512-BRWgOLKkFeCgRudR6zrs8p9XJZcE14grzKMMssoYrk6krtuEZ7MTKPIY5RzOnqsEKIR9kst7wNzphttraT+Yqw==",
|
|
1860
|
+
"hasInstallScript": true,
|
|
1861
|
+
"license": "MIT",
|
|
1862
|
+
"engines": {
|
|
1863
|
+
"node": "*"
|
|
1864
|
+
},
|
|
1865
|
+
"funding": {
|
|
1866
|
+
"type": "opencollective",
|
|
1867
|
+
"url": "https://opencollective.com/core-js"
|
|
1868
|
+
}
|
|
1869
|
+
},
|
|
1870
|
+
"node_modules/cssfilter": {
|
|
1871
|
+
"version": "0.0.10",
|
|
1872
|
+
"resolved": "https://registry.npmjs.org/cssfilter/-/cssfilter-0.0.10.tgz",
|
|
1873
|
+
"integrity": "sha512-FAaLDaplstoRsDR8XGYH51znUN0UY7nMc6Z9/fvE8EXGwvJE9hu7W2vHwx1+bd6gCYnln9nLbzxFTrcO9YQDZw==",
|
|
1874
|
+
"license": "MIT"
|
|
1875
|
+
},
|
|
1876
|
+
"node_modules/csstype": {
|
|
1877
|
+
"version": "3.2.3",
|
|
1878
|
+
"resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz",
|
|
1879
|
+
"integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
|
|
1880
|
+
"license": "MIT"
|
|
1881
|
+
},
|
|
1882
|
+
"node_modules/de-indent": {
|
|
1883
|
+
"version": "1.0.2",
|
|
1884
|
+
"resolved": "https://registry.npmjs.org/de-indent/-/de-indent-1.0.2.tgz",
|
|
1885
|
+
"integrity": "sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==",
|
|
1886
|
+
"dev": true,
|
|
1887
|
+
"license": "MIT"
|
|
1888
|
+
},
|
|
1889
|
+
"node_modules/debug": {
|
|
1890
|
+
"version": "4.4.3",
|
|
1891
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
|
|
1892
|
+
"integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
|
|
1893
|
+
"license": "MIT",
|
|
1894
|
+
"dependencies": {
|
|
1895
|
+
"ms": "^2.1.3"
|
|
1896
|
+
},
|
|
1897
|
+
"engines": {
|
|
1898
|
+
"node": ">=6.0"
|
|
1899
|
+
},
|
|
1900
|
+
"peerDependenciesMeta": {
|
|
1901
|
+
"supports-color": {
|
|
1902
|
+
"optional": true
|
|
1903
|
+
}
|
|
1904
|
+
}
|
|
1905
|
+
},
|
|
1906
|
+
"node_modules/delayed-stream": {
|
|
1907
|
+
"version": "1.0.0",
|
|
1908
|
+
"resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
|
|
1909
|
+
"integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
|
|
1910
|
+
"license": "MIT",
|
|
1911
|
+
"engines": {
|
|
1912
|
+
"node": ">=0.4.0"
|
|
1913
|
+
}
|
|
1914
|
+
},
|
|
1915
|
+
"node_modules/delegate": {
|
|
1916
|
+
"version": "3.2.0",
|
|
1917
|
+
"resolved": "https://registry.npmjs.org/delegate/-/delegate-3.2.0.tgz",
|
|
1918
|
+
"integrity": "sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw==",
|
|
1919
|
+
"license": "MIT"
|
|
1920
|
+
},
|
|
1921
|
+
"node_modules/detect-browser": {
|
|
1922
|
+
"version": "5.3.0",
|
|
1923
|
+
"resolved": "https://registry.npmjs.org/detect-browser/-/detect-browser-5.3.0.tgz",
|
|
1924
|
+
"integrity": "sha512-53rsFbGdwMwlF7qvCt0ypLM5V5/Mbl0szB7GPN8y9NCcbknYOeVVXdrXEq+90IwAfrrzt6Hd+u2E2ntakICU8w==",
|
|
1925
|
+
"license": "MIT"
|
|
1926
|
+
},
|
|
1927
|
+
"node_modules/dunder-proto": {
|
|
1928
|
+
"version": "1.0.1",
|
|
1929
|
+
"resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
|
|
1930
|
+
"integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
|
|
1931
|
+
"license": "MIT",
|
|
1932
|
+
"dependencies": {
|
|
1933
|
+
"call-bind-apply-helpers": "^1.0.1",
|
|
1934
|
+
"es-errors": "^1.3.0",
|
|
1935
|
+
"gopd": "^1.2.0"
|
|
1936
|
+
},
|
|
1937
|
+
"engines": {
|
|
1938
|
+
"node": ">= 0.4"
|
|
1939
|
+
}
|
|
1940
|
+
},
|
|
1941
|
+
"node_modules/earcut": {
|
|
1942
|
+
"version": "2.2.4",
|
|
1943
|
+
"resolved": "https://registry.npmjs.org/earcut/-/earcut-2.2.4.tgz",
|
|
1944
|
+
"integrity": "sha512-/pjZsA1b4RPHbeWZQn66SWS8nZZWLQQ23oE3Eam7aroEFGEvwKAsJfZ9ytiEMycfzXWpca4FA9QIOehf7PocBQ==",
|
|
1945
|
+
"license": "ISC"
|
|
1946
|
+
},
|
|
1947
|
+
"node_modules/echarts": {
|
|
1948
|
+
"version": "5.6.0",
|
|
1949
|
+
"resolved": "https://registry.npmjs.org/echarts/-/echarts-5.6.0.tgz",
|
|
1950
|
+
"integrity": "sha512-oTbVTsXfKuEhxftHqL5xprgLoc0k7uScAwtryCgWF6hPYFLRwOUHiFmHGCBKP5NPFNkDVopOieyUqYGH8Fa3kA==",
|
|
1951
|
+
"license": "Apache-2.0",
|
|
1952
|
+
"dependencies": {
|
|
1953
|
+
"tslib": "2.3.0",
|
|
1954
|
+
"zrender": "5.6.1"
|
|
1955
|
+
}
|
|
1956
|
+
},
|
|
1957
|
+
"node_modules/electron": {
|
|
1958
|
+
"version": "44.0.0",
|
|
1959
|
+
"resolved": "https://registry.npmjs.org/electron/-/electron-44.0.0.tgz",
|
|
1960
|
+
"integrity": "sha512-FkTqPrFPZYljdPI5b7KORGsJTd6FgUQDefl5MrU3Xz9R87pAj9JLreIjDqcRN8hJIkFHIou0o8kKzvcpT9qiRQ==",
|
|
1961
|
+
"license": "MIT",
|
|
1962
|
+
"peer": true,
|
|
1963
|
+
"dependencies": {
|
|
1964
|
+
"@electron-internal/extract-zip": "^1.0.1",
|
|
1965
|
+
"@electron/get": "^5.0.0",
|
|
1966
|
+
"@types/node": "^24.9.0"
|
|
1967
|
+
},
|
|
1968
|
+
"bin": {
|
|
1969
|
+
"electron": "cli.js",
|
|
1970
|
+
"install-electron": "install.js"
|
|
1971
|
+
},
|
|
1972
|
+
"engines": {
|
|
1973
|
+
"node": ">= 22.12.0"
|
|
1974
|
+
}
|
|
1975
|
+
},
|
|
1976
|
+
"node_modules/electron/node_modules/@types/node": {
|
|
1977
|
+
"version": "24.13.3",
|
|
1978
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-24.13.3.tgz",
|
|
1979
|
+
"integrity": "sha512-Dh8vAsV36ig5wa9OX4pXvMc9D3Veibfw2wix0CUwYODLD8nkj9UsLjASr49nPg+2eKzxhBV+v7L8pXvT4e639Q==",
|
|
1980
|
+
"license": "MIT",
|
|
1981
|
+
"peer": true,
|
|
1982
|
+
"dependencies": {
|
|
1983
|
+
"undici-types": "~7.18.0"
|
|
1984
|
+
}
|
|
1985
|
+
},
|
|
1986
|
+
"node_modules/electron/node_modules/undici-types": {
|
|
1987
|
+
"version": "7.18.2",
|
|
1988
|
+
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.18.2.tgz",
|
|
1989
|
+
"integrity": "sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==",
|
|
1990
|
+
"license": "MIT",
|
|
1991
|
+
"peer": true
|
|
1992
|
+
},
|
|
1993
|
+
"node_modules/entities": {
|
|
1994
|
+
"version": "4.5.0",
|
|
1995
|
+
"resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz",
|
|
1996
|
+
"integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==",
|
|
1997
|
+
"license": "BSD-2-Clause",
|
|
1998
|
+
"engines": {
|
|
1999
|
+
"node": ">=0.12"
|
|
2000
|
+
},
|
|
2001
|
+
"funding": {
|
|
2002
|
+
"url": "https://github.com/fb55/entities?sponsor=1"
|
|
2003
|
+
}
|
|
2004
|
+
},
|
|
2005
|
+
"node_modules/env-paths": {
|
|
2006
|
+
"version": "3.0.0",
|
|
2007
|
+
"resolved": "https://registry.npmjs.org/env-paths/-/env-paths-3.0.0.tgz",
|
|
2008
|
+
"integrity": "sha512-dtJUTepzMW3Lm/NPxRf3wP4642UWhjL2sQxc+ym2YMj1m/H2zDNQOlezafzkHwn6sMstjHTwG6iQQsctDW/b1A==",
|
|
2009
|
+
"license": "MIT",
|
|
2010
|
+
"peer": true,
|
|
2011
|
+
"engines": {
|
|
2012
|
+
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
|
|
2013
|
+
},
|
|
2014
|
+
"funding": {
|
|
2015
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
2016
|
+
}
|
|
2017
|
+
},
|
|
2018
|
+
"node_modules/es-define-property": {
|
|
2019
|
+
"version": "1.0.1",
|
|
2020
|
+
"resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
|
|
2021
|
+
"integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
|
|
2022
|
+
"license": "MIT",
|
|
2023
|
+
"engines": {
|
|
2024
|
+
"node": ">= 0.4"
|
|
2025
|
+
}
|
|
2026
|
+
},
|
|
2027
|
+
"node_modules/es-errors": {
|
|
2028
|
+
"version": "1.3.0",
|
|
2029
|
+
"resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
|
|
2030
|
+
"integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
|
|
2031
|
+
"license": "MIT",
|
|
2032
|
+
"engines": {
|
|
2033
|
+
"node": ">= 0.4"
|
|
2034
|
+
}
|
|
2035
|
+
},
|
|
2036
|
+
"node_modules/es-object-atoms": {
|
|
2037
|
+
"version": "1.1.2",
|
|
2038
|
+
"resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.2.tgz",
|
|
2039
|
+
"integrity": "sha512-HWcBoN6NileqtSydK2FqHbS/LoDd2pqrnQHLyJzBj4kOp/ky2MWMN694xOfkK8/SnUsW2DH7EfyVlydKCsm1Zw==",
|
|
2040
|
+
"license": "MIT",
|
|
2041
|
+
"dependencies": {
|
|
2042
|
+
"es-errors": "^1.3.0"
|
|
2043
|
+
},
|
|
2044
|
+
"engines": {
|
|
2045
|
+
"node": ">= 0.4"
|
|
2046
|
+
}
|
|
2047
|
+
},
|
|
2048
|
+
"node_modules/es-set-tostringtag": {
|
|
2049
|
+
"version": "2.1.0",
|
|
2050
|
+
"resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz",
|
|
2051
|
+
"integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==",
|
|
2052
|
+
"license": "MIT",
|
|
2053
|
+
"dependencies": {
|
|
2054
|
+
"es-errors": "^1.3.0",
|
|
2055
|
+
"get-intrinsic": "^1.2.6",
|
|
2056
|
+
"has-tostringtag": "^1.0.2",
|
|
2057
|
+
"hasown": "^2.0.2"
|
|
2058
|
+
},
|
|
2059
|
+
"engines": {
|
|
2060
|
+
"node": ">= 0.4"
|
|
2061
|
+
}
|
|
2062
|
+
},
|
|
2063
|
+
"node_modules/esbuild": {
|
|
2064
|
+
"version": "0.25.12",
|
|
2065
|
+
"resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.12.tgz",
|
|
2066
|
+
"integrity": "sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==",
|
|
2067
|
+
"dev": true,
|
|
2068
|
+
"hasInstallScript": true,
|
|
2069
|
+
"license": "MIT",
|
|
2070
|
+
"bin": {
|
|
2071
|
+
"esbuild": "bin/esbuild"
|
|
2072
|
+
},
|
|
2073
|
+
"engines": {
|
|
2074
|
+
"node": ">=18"
|
|
2075
|
+
},
|
|
2076
|
+
"optionalDependencies": {
|
|
2077
|
+
"@esbuild/aix-ppc64": "0.25.12",
|
|
2078
|
+
"@esbuild/android-arm": "0.25.12",
|
|
2079
|
+
"@esbuild/android-arm64": "0.25.12",
|
|
2080
|
+
"@esbuild/android-x64": "0.25.12",
|
|
2081
|
+
"@esbuild/darwin-arm64": "0.25.12",
|
|
2082
|
+
"@esbuild/darwin-x64": "0.25.12",
|
|
2083
|
+
"@esbuild/freebsd-arm64": "0.25.12",
|
|
2084
|
+
"@esbuild/freebsd-x64": "0.25.12",
|
|
2085
|
+
"@esbuild/linux-arm": "0.25.12",
|
|
2086
|
+
"@esbuild/linux-arm64": "0.25.12",
|
|
2087
|
+
"@esbuild/linux-ia32": "0.25.12",
|
|
2088
|
+
"@esbuild/linux-loong64": "0.25.12",
|
|
2089
|
+
"@esbuild/linux-mips64el": "0.25.12",
|
|
2090
|
+
"@esbuild/linux-ppc64": "0.25.12",
|
|
2091
|
+
"@esbuild/linux-riscv64": "0.25.12",
|
|
2092
|
+
"@esbuild/linux-s390x": "0.25.12",
|
|
2093
|
+
"@esbuild/linux-x64": "0.25.12",
|
|
2094
|
+
"@esbuild/netbsd-arm64": "0.25.12",
|
|
2095
|
+
"@esbuild/netbsd-x64": "0.25.12",
|
|
2096
|
+
"@esbuild/openbsd-arm64": "0.25.12",
|
|
2097
|
+
"@esbuild/openbsd-x64": "0.25.12",
|
|
2098
|
+
"@esbuild/openharmony-arm64": "0.25.12",
|
|
2099
|
+
"@esbuild/sunos-x64": "0.25.12",
|
|
2100
|
+
"@esbuild/win32-arm64": "0.25.12",
|
|
2101
|
+
"@esbuild/win32-ia32": "0.25.12",
|
|
2102
|
+
"@esbuild/win32-x64": "0.25.12"
|
|
2103
|
+
}
|
|
2104
|
+
},
|
|
2105
|
+
"node_modules/escodegen": {
|
|
2106
|
+
"version": "2.1.0",
|
|
2107
|
+
"resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz",
|
|
2108
|
+
"integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==",
|
|
2109
|
+
"license": "BSD-2-Clause",
|
|
2110
|
+
"dependencies": {
|
|
2111
|
+
"esprima": "^4.0.1",
|
|
2112
|
+
"estraverse": "^5.2.0",
|
|
2113
|
+
"esutils": "^2.0.2"
|
|
2114
|
+
},
|
|
2115
|
+
"bin": {
|
|
2116
|
+
"escodegen": "bin/escodegen.js",
|
|
2117
|
+
"esgenerate": "bin/esgenerate.js"
|
|
2118
|
+
},
|
|
2119
|
+
"engines": {
|
|
2120
|
+
"node": ">=6.0"
|
|
2121
|
+
},
|
|
2122
|
+
"optionalDependencies": {
|
|
2123
|
+
"source-map": "~0.6.1"
|
|
2124
|
+
}
|
|
2125
|
+
},
|
|
2126
|
+
"node_modules/escodegen/node_modules/esprima": {
|
|
2127
|
+
"version": "4.0.1",
|
|
2128
|
+
"resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
|
|
2129
|
+
"integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==",
|
|
2130
|
+
"license": "BSD-2-Clause",
|
|
2131
|
+
"bin": {
|
|
2132
|
+
"esparse": "bin/esparse.js",
|
|
2133
|
+
"esvalidate": "bin/esvalidate.js"
|
|
2134
|
+
},
|
|
2135
|
+
"engines": {
|
|
2136
|
+
"node": ">=4"
|
|
2137
|
+
}
|
|
2138
|
+
},
|
|
2139
|
+
"node_modules/esprima": {
|
|
2140
|
+
"version": "1.2.5",
|
|
2141
|
+
"resolved": "https://registry.npmjs.org/esprima/-/esprima-1.2.5.tgz",
|
|
2142
|
+
"integrity": "sha512-S9VbPDU0adFErpDai3qDkjq8+G05ONtKzcyNrPKg/ZKa+tf879nX2KexNU95b31UoTJjRLInNBHHHjFPoCd7lQ==",
|
|
2143
|
+
"bin": {
|
|
2144
|
+
"esparse": "bin/esparse.js",
|
|
2145
|
+
"esvalidate": "bin/esvalidate.js"
|
|
2146
|
+
},
|
|
2147
|
+
"engines": {
|
|
2148
|
+
"node": ">=0.4.0"
|
|
2149
|
+
}
|
|
2150
|
+
},
|
|
2151
|
+
"node_modules/estraverse": {
|
|
2152
|
+
"version": "5.3.0",
|
|
2153
|
+
"resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
|
|
2154
|
+
"integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
|
|
2155
|
+
"license": "BSD-2-Clause",
|
|
2156
|
+
"engines": {
|
|
2157
|
+
"node": ">=4.0"
|
|
2158
|
+
}
|
|
2159
|
+
},
|
|
2160
|
+
"node_modules/estree-walker": {
|
|
2161
|
+
"version": "2.0.2",
|
|
2162
|
+
"resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz",
|
|
2163
|
+
"integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
|
|
2164
|
+
"license": "MIT"
|
|
2165
|
+
},
|
|
2166
|
+
"node_modules/esutils": {
|
|
2167
|
+
"version": "2.0.3",
|
|
2168
|
+
"resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
|
|
2169
|
+
"integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
|
|
2170
|
+
"license": "BSD-2-Clause",
|
|
2171
|
+
"engines": {
|
|
2172
|
+
"node": ">=0.10.0"
|
|
2173
|
+
}
|
|
2174
|
+
},
|
|
2175
|
+
"node_modules/eventsource-parser": {
|
|
2176
|
+
"version": "3.1.1",
|
|
2177
|
+
"resolved": "https://registry.npmjs.org/eventsource-parser/-/eventsource-parser-3.1.1.tgz",
|
|
2178
|
+
"integrity": "sha512-EKN1vKAMcZ8MlYMpaNuxN6R9yakzH6uajHcHVTqWJzvu5pWw9DyhbP35HH8MVBQ+dZjAfDxk+A8NiR9KWaXiyQ==",
|
|
2179
|
+
"license": "MIT",
|
|
2180
|
+
"engines": {
|
|
2181
|
+
"node": ">=18.0.0"
|
|
2182
|
+
}
|
|
2183
|
+
},
|
|
2184
|
+
"node_modules/fast-deep-equal": {
|
|
2185
|
+
"version": "3.1.3",
|
|
2186
|
+
"resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
|
|
2187
|
+
"integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
|
|
2188
|
+
"license": "MIT"
|
|
2189
|
+
},
|
|
2190
|
+
"node_modules/follow-redirects": {
|
|
2191
|
+
"version": "1.16.0",
|
|
2192
|
+
"resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.16.0.tgz",
|
|
2193
|
+
"integrity": "sha512-y5rN/uOsadFT/JfYwhxRS5R7Qce+g3zG97+JrtFZlC9klX/W5hD7iiLzScI4nZqUS7DNUdhPgw4xI8W2LuXlUw==",
|
|
2194
|
+
"funding": [
|
|
2195
|
+
{
|
|
2196
|
+
"type": "individual",
|
|
2197
|
+
"url": "https://github.com/sponsors/RubenVerborgh"
|
|
2198
|
+
}
|
|
2199
|
+
],
|
|
2200
|
+
"license": "MIT",
|
|
2201
|
+
"engines": {
|
|
2202
|
+
"node": ">=4.0"
|
|
2203
|
+
},
|
|
2204
|
+
"peerDependenciesMeta": {
|
|
2205
|
+
"debug": {
|
|
2206
|
+
"optional": true
|
|
2207
|
+
}
|
|
2208
|
+
}
|
|
2209
|
+
},
|
|
2210
|
+
"node_modules/form-data": {
|
|
2211
|
+
"version": "4.0.6",
|
|
2212
|
+
"resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.6.tgz",
|
|
2213
|
+
"integrity": "sha512-vKatAh4SlVfgbv+YtmhiRjhEMJsYpsG1Y2rMQtR+SVSbytsSD1YGzDIcrAJmdFec88u/+VoGmxnl+80gL1tRCQ==",
|
|
2214
|
+
"license": "MIT",
|
|
2215
|
+
"dependencies": {
|
|
2216
|
+
"asynckit": "^0.4.0",
|
|
2217
|
+
"combined-stream": "^1.0.8",
|
|
2218
|
+
"es-set-tostringtag": "^2.1.0",
|
|
2219
|
+
"hasown": "^2.0.4",
|
|
2220
|
+
"mime-types": "^2.1.35"
|
|
2221
|
+
},
|
|
2222
|
+
"engines": {
|
|
2223
|
+
"node": ">= 6"
|
|
2224
|
+
}
|
|
2225
|
+
},
|
|
2226
|
+
"node_modules/fsevents": {
|
|
2227
|
+
"version": "2.3.3",
|
|
2228
|
+
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
|
|
2229
|
+
"integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
|
|
2230
|
+
"dev": true,
|
|
2231
|
+
"hasInstallScript": true,
|
|
2232
|
+
"license": "MIT",
|
|
2233
|
+
"optional": true,
|
|
2234
|
+
"os": [
|
|
2235
|
+
"darwin"
|
|
2236
|
+
],
|
|
2237
|
+
"engines": {
|
|
2238
|
+
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
|
|
2239
|
+
}
|
|
2240
|
+
},
|
|
2241
|
+
"node_modules/function-bind": {
|
|
2242
|
+
"version": "1.1.2",
|
|
2243
|
+
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
|
|
2244
|
+
"integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
|
|
2245
|
+
"license": "MIT",
|
|
2246
|
+
"funding": {
|
|
2247
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
2248
|
+
}
|
|
2249
|
+
},
|
|
2250
|
+
"node_modules/get-intrinsic": {
|
|
2251
|
+
"version": "1.3.0",
|
|
2252
|
+
"resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
|
|
2253
|
+
"integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
|
|
2254
|
+
"license": "MIT",
|
|
2255
|
+
"dependencies": {
|
|
2256
|
+
"call-bind-apply-helpers": "^1.0.2",
|
|
2257
|
+
"es-define-property": "^1.0.1",
|
|
2258
|
+
"es-errors": "^1.3.0",
|
|
2259
|
+
"es-object-atoms": "^1.1.1",
|
|
2260
|
+
"function-bind": "^1.1.2",
|
|
2261
|
+
"get-proto": "^1.0.1",
|
|
2262
|
+
"gopd": "^1.2.0",
|
|
2263
|
+
"has-symbols": "^1.1.0",
|
|
2264
|
+
"hasown": "^2.0.2",
|
|
2265
|
+
"math-intrinsics": "^1.1.0"
|
|
2266
|
+
},
|
|
2267
|
+
"engines": {
|
|
2268
|
+
"node": ">= 0.4"
|
|
2269
|
+
},
|
|
2270
|
+
"funding": {
|
|
2271
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
2272
|
+
}
|
|
2273
|
+
},
|
|
2274
|
+
"node_modules/get-proto": {
|
|
2275
|
+
"version": "1.0.1",
|
|
2276
|
+
"resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
|
|
2277
|
+
"integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
|
|
2278
|
+
"license": "MIT",
|
|
2279
|
+
"dependencies": {
|
|
2280
|
+
"dunder-proto": "^1.0.1",
|
|
2281
|
+
"es-object-atoms": "^1.0.0"
|
|
2282
|
+
},
|
|
2283
|
+
"engines": {
|
|
2284
|
+
"node": ">= 0.4"
|
|
2285
|
+
}
|
|
2286
|
+
},
|
|
2287
|
+
"node_modules/gl-matrix": {
|
|
2288
|
+
"version": "3.4.3",
|
|
2289
|
+
"resolved": "https://registry.npmjs.org/gl-matrix/-/gl-matrix-3.4.3.tgz",
|
|
2290
|
+
"integrity": "sha512-wcCp8vu8FT22BnvKVPjXa/ICBWRq/zjFfdofZy1WSpQZpphblv12/bOQLBC1rMM7SGOFS9ltVmKOHil5+Ml7gA==",
|
|
2291
|
+
"license": "MIT"
|
|
2292
|
+
},
|
|
2293
|
+
"node_modules/good-listener": {
|
|
2294
|
+
"version": "1.2.2",
|
|
2295
|
+
"resolved": "https://registry.npmjs.org/good-listener/-/good-listener-1.2.2.tgz",
|
|
2296
|
+
"integrity": "sha512-goW1b+d9q/HIwbVYZzZ6SsTr4IgE+WA44A0GmPIQstuOrgsFcT7VEJ48nmr9GaRtNu0XTKacFLGnBPAM6Afouw==",
|
|
2297
|
+
"license": "MIT",
|
|
2298
|
+
"dependencies": {
|
|
2299
|
+
"delegate": "^3.1.2"
|
|
2300
|
+
}
|
|
2301
|
+
},
|
|
2302
|
+
"node_modules/gopd": {
|
|
2303
|
+
"version": "1.2.0",
|
|
2304
|
+
"resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
|
|
2305
|
+
"integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
|
|
2306
|
+
"license": "MIT",
|
|
2307
|
+
"engines": {
|
|
2308
|
+
"node": ">= 0.4"
|
|
2309
|
+
},
|
|
2310
|
+
"funding": {
|
|
2311
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
2312
|
+
}
|
|
2313
|
+
},
|
|
2314
|
+
"node_modules/graceful-fs": {
|
|
2315
|
+
"version": "4.2.11",
|
|
2316
|
+
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
|
|
2317
|
+
"integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
|
|
2318
|
+
"license": "ISC",
|
|
2319
|
+
"peer": true
|
|
2320
|
+
},
|
|
2321
|
+
"node_modules/has-symbols": {
|
|
2322
|
+
"version": "1.1.0",
|
|
2323
|
+
"resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
|
|
2324
|
+
"integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
|
|
2325
|
+
"license": "MIT",
|
|
2326
|
+
"engines": {
|
|
2327
|
+
"node": ">= 0.4"
|
|
2328
|
+
},
|
|
2329
|
+
"funding": {
|
|
2330
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
2331
|
+
}
|
|
2332
|
+
},
|
|
2333
|
+
"node_modules/has-tostringtag": {
|
|
2334
|
+
"version": "1.0.2",
|
|
2335
|
+
"resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
|
|
2336
|
+
"integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
|
|
2337
|
+
"license": "MIT",
|
|
2338
|
+
"dependencies": {
|
|
2339
|
+
"has-symbols": "^1.0.3"
|
|
2340
|
+
},
|
|
2341
|
+
"engines": {
|
|
2342
|
+
"node": ">= 0.4"
|
|
2343
|
+
},
|
|
2344
|
+
"funding": {
|
|
2345
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
2346
|
+
}
|
|
2347
|
+
},
|
|
2348
|
+
"node_modules/hasown": {
|
|
2349
|
+
"version": "2.0.4",
|
|
2350
|
+
"resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.4.tgz",
|
|
2351
|
+
"integrity": "sha512-T2UbfbBEF32wiepXIsMlTW9+dDYC6wMh/t/vYA4tuOMKqWz/n3vr1NFSxQiyP+zk2mXsoMA/i/7qV6LKut1t1A==",
|
|
2352
|
+
"license": "MIT",
|
|
2353
|
+
"dependencies": {
|
|
2354
|
+
"function-bind": "^1.1.2"
|
|
2355
|
+
},
|
|
2356
|
+
"engines": {
|
|
2357
|
+
"node": ">= 0.4"
|
|
2358
|
+
}
|
|
2359
|
+
},
|
|
2360
|
+
"node_modules/he": {
|
|
2361
|
+
"version": "1.2.0",
|
|
2362
|
+
"resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz",
|
|
2363
|
+
"integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==",
|
|
2364
|
+
"dev": true,
|
|
2365
|
+
"license": "MIT",
|
|
2366
|
+
"bin": {
|
|
2367
|
+
"he": "bin/he"
|
|
2368
|
+
}
|
|
2369
|
+
},
|
|
2370
|
+
"node_modules/hookable": {
|
|
2371
|
+
"version": "5.5.3",
|
|
2372
|
+
"resolved": "https://registry.npmjs.org/hookable/-/hookable-5.5.3.tgz",
|
|
2373
|
+
"integrity": "sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==",
|
|
2374
|
+
"license": "MIT"
|
|
2375
|
+
},
|
|
2376
|
+
"node_modules/https-proxy-agent": {
|
|
2377
|
+
"version": "5.0.1",
|
|
2378
|
+
"resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz",
|
|
2379
|
+
"integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==",
|
|
2380
|
+
"license": "MIT",
|
|
2381
|
+
"dependencies": {
|
|
2382
|
+
"agent-base": "6",
|
|
2383
|
+
"debug": "4"
|
|
2384
|
+
},
|
|
2385
|
+
"engines": {
|
|
2386
|
+
"node": ">= 6"
|
|
2387
|
+
}
|
|
2388
|
+
},
|
|
2389
|
+
"node_modules/js-file-downloader": {
|
|
2390
|
+
"version": "1.1.25",
|
|
2391
|
+
"resolved": "https://registry.npmjs.org/js-file-downloader/-/js-file-downloader-1.1.25.tgz",
|
|
2392
|
+
"integrity": "sha512-msD5K5Ot7e74/JZSu4evznZqbcZQaUBd6ENbev9IUzI+2RqvckoAe1mVm3ZyvwFh/WKe3gN1IwyHEKycDU1jkA==",
|
|
2393
|
+
"license": "MIT"
|
|
2394
|
+
},
|
|
2395
|
+
"node_modules/js-yaml": {
|
|
2396
|
+
"version": "4.1.0",
|
|
2397
|
+
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
|
|
2398
|
+
"integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
|
|
2399
|
+
"dev": true,
|
|
2400
|
+
"license": "MIT",
|
|
2401
|
+
"dependencies": {
|
|
2402
|
+
"argparse": "^2.0.1"
|
|
2403
|
+
},
|
|
2404
|
+
"bin": {
|
|
2405
|
+
"js-yaml": "bin/js-yaml.js"
|
|
2406
|
+
}
|
|
2407
|
+
},
|
|
2408
|
+
"node_modules/json-schema": {
|
|
2409
|
+
"version": "0.4.0",
|
|
2410
|
+
"resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz",
|
|
2411
|
+
"integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==",
|
|
2412
|
+
"license": "(AFL-2.1 OR BSD-3-Clause)"
|
|
2413
|
+
},
|
|
2414
|
+
"node_modules/jsonpath": {
|
|
2415
|
+
"version": "1.3.0",
|
|
2416
|
+
"resolved": "https://registry.npmjs.org/jsonpath/-/jsonpath-1.3.0.tgz",
|
|
2417
|
+
"integrity": "sha512-0kjkYHJBkAy50Z5QzArZ7udmvxrJzkpKYW27fiF//BrMY7TQibYLl+FYIXN2BiYmwMIVzSfD8aDRj6IzgBX2/w==",
|
|
2418
|
+
"license": "MIT",
|
|
2419
|
+
"dependencies": {
|
|
2420
|
+
"esprima": "1.2.5",
|
|
2421
|
+
"static-eval": "2.1.1",
|
|
2422
|
+
"underscore": "1.13.6"
|
|
2423
|
+
}
|
|
2424
|
+
},
|
|
2425
|
+
"node_modules/klona": {
|
|
2426
|
+
"version": "2.0.6",
|
|
2427
|
+
"resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz",
|
|
2428
|
+
"integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==",
|
|
2429
|
+
"license": "MIT",
|
|
2430
|
+
"engines": {
|
|
2431
|
+
"node": ">= 8"
|
|
2432
|
+
}
|
|
2433
|
+
},
|
|
2434
|
+
"node_modules/linkify-it": {
|
|
2435
|
+
"version": "5.0.2",
|
|
2436
|
+
"resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-5.0.2.tgz",
|
|
2437
|
+
"integrity": "sha512-ONTm2jCMAVZjgQa/Fy1kScXsuOoF5NPTsoFBdE1KVIZ2vAh/r9+Bqo+0jINCBYnavTPQZz38QzFTme79ENoN3Q==",
|
|
2438
|
+
"funding": [
|
|
2439
|
+
{
|
|
2440
|
+
"type": "github",
|
|
2441
|
+
"url": "https://github.com/sponsors/puzrin"
|
|
2442
|
+
},
|
|
2443
|
+
{
|
|
2444
|
+
"type": "github",
|
|
2445
|
+
"url": "https://github.com/sponsors/markdown-it"
|
|
2446
|
+
}
|
|
2447
|
+
],
|
|
2448
|
+
"license": "MIT",
|
|
2449
|
+
"dependencies": {
|
|
2450
|
+
"uc.micro": "^2.0.0"
|
|
2451
|
+
}
|
|
2452
|
+
},
|
|
2453
|
+
"node_modules/lodash-es": {
|
|
2454
|
+
"version": "4.18.1",
|
|
2455
|
+
"resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.18.1.tgz",
|
|
2456
|
+
"integrity": "sha512-J8xewKD/Gk22OZbhpOVSwcs60zhd95ESDwezOFuA3/099925PdHJ7OFHNTGtajL3AlZkykD32HykiMo+BIBI8A==",
|
|
2457
|
+
"license": "MIT"
|
|
2458
|
+
},
|
|
2459
|
+
"node_modules/lottie-web": {
|
|
2460
|
+
"version": "5.12.2",
|
|
2461
|
+
"resolved": "https://registry.npmjs.org/lottie-web/-/lottie-web-5.12.2.tgz",
|
|
2462
|
+
"integrity": "sha512-uvhvYPC8kGPjXT3MyKMrL3JitEAmDMp30lVkuq/590Mw9ok6pWcFCwXJveo0t5uqYw1UREQHofD+jVpdjBv8wg==",
|
|
2463
|
+
"license": "MIT"
|
|
2464
|
+
},
|
|
2465
|
+
"node_modules/magic-string": {
|
|
2466
|
+
"version": "0.30.21",
|
|
2467
|
+
"resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz",
|
|
2468
|
+
"integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==",
|
|
2469
|
+
"license": "MIT",
|
|
2470
|
+
"dependencies": {
|
|
2471
|
+
"@jridgewell/sourcemap-codec": "^1.5.5"
|
|
2472
|
+
}
|
|
2473
|
+
},
|
|
2474
|
+
"node_modules/markdown-it": {
|
|
2475
|
+
"version": "14.3.0",
|
|
2476
|
+
"resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-14.3.0.tgz",
|
|
2477
|
+
"integrity": "sha512-RCEsPjR+sr0x+AuYp601tKTkgFG4YEPLCzHST3cQ/fhlJkqAkz1L2/Qbp1j9qw5SBwQHFBoW8+hoN5xssOF0Tw==",
|
|
2478
|
+
"funding": [
|
|
2479
|
+
{
|
|
2480
|
+
"type": "github",
|
|
2481
|
+
"url": "https://github.com/sponsors/puzrin"
|
|
2482
|
+
},
|
|
2483
|
+
{
|
|
2484
|
+
"type": "github",
|
|
2485
|
+
"url": "https://github.com/sponsors/markdown-it"
|
|
2486
|
+
}
|
|
2487
|
+
],
|
|
2488
|
+
"license": "MIT",
|
|
2489
|
+
"dependencies": {
|
|
2490
|
+
"argparse": "^2.0.1",
|
|
2491
|
+
"entities": "^4.5.0",
|
|
2492
|
+
"linkify-it": "^5.0.2",
|
|
2493
|
+
"mdurl": "^2.0.0",
|
|
2494
|
+
"punycode.js": "^2.3.1",
|
|
2495
|
+
"uc.micro": "^2.1.0"
|
|
2496
|
+
},
|
|
2497
|
+
"bin": {
|
|
2498
|
+
"markdown-it": "bin/markdown-it.mjs"
|
|
2499
|
+
}
|
|
2500
|
+
},
|
|
2501
|
+
"node_modules/math-intrinsics": {
|
|
2502
|
+
"version": "1.1.0",
|
|
2503
|
+
"resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
|
|
2504
|
+
"integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
|
|
2505
|
+
"license": "MIT",
|
|
2506
|
+
"engines": {
|
|
2507
|
+
"node": ">= 0.4"
|
|
2508
|
+
}
|
|
2509
|
+
},
|
|
2510
|
+
"node_modules/mdurl": {
|
|
2511
|
+
"version": "2.1.0",
|
|
2512
|
+
"resolved": "https://registry.npmjs.org/mdurl/-/mdurl-2.1.0.tgz",
|
|
2513
|
+
"integrity": "sha512-1+HBaOx0zi/dQWht8rNv9MYf9qqpqL/kxI0hXImU6Y547zM6Sni8BQibt7ifgMcYtQg41ao3Ivd6cnSM86inpg==",
|
|
2514
|
+
"license": "MIT"
|
|
2515
|
+
},
|
|
2516
|
+
"node_modules/mime-db": {
|
|
2517
|
+
"version": "1.52.0",
|
|
2518
|
+
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
|
|
2519
|
+
"integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
|
|
2520
|
+
"license": "MIT",
|
|
2521
|
+
"engines": {
|
|
2522
|
+
"node": ">= 0.6"
|
|
2523
|
+
}
|
|
2524
|
+
},
|
|
2525
|
+
"node_modules/mime-types": {
|
|
2526
|
+
"version": "2.1.35",
|
|
2527
|
+
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
|
|
2528
|
+
"integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
|
|
2529
|
+
"license": "MIT",
|
|
2530
|
+
"dependencies": {
|
|
2531
|
+
"mime-db": "1.52.0"
|
|
2532
|
+
},
|
|
2533
|
+
"engines": {
|
|
2534
|
+
"node": ">= 0.6"
|
|
2535
|
+
}
|
|
2536
|
+
},
|
|
2537
|
+
"node_modules/minimatch": {
|
|
2538
|
+
"version": "9.0.9",
|
|
2539
|
+
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.9.tgz",
|
|
2540
|
+
"integrity": "sha512-OBwBN9AL4dqmETlpS2zasx+vTeWclWzkblfZk7KTA5j3jeOONz/tRCnZomUyvNg83wL5Zv9Ss6HMJXAgL8R2Yg==",
|
|
2541
|
+
"dev": true,
|
|
2542
|
+
"license": "ISC",
|
|
2543
|
+
"dependencies": {
|
|
2544
|
+
"brace-expansion": "^2.0.2"
|
|
2545
|
+
},
|
|
2546
|
+
"engines": {
|
|
2547
|
+
"node": ">=16 || 14 >=14.17"
|
|
2548
|
+
},
|
|
2549
|
+
"funding": {
|
|
2550
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
2551
|
+
}
|
|
2552
|
+
},
|
|
2553
|
+
"node_modules/mitt": {
|
|
2554
|
+
"version": "3.0.1",
|
|
2555
|
+
"resolved": "https://registry.npmjs.org/mitt/-/mitt-3.0.1.tgz",
|
|
2556
|
+
"integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==",
|
|
2557
|
+
"license": "MIT"
|
|
2558
|
+
},
|
|
2559
|
+
"node_modules/ms": {
|
|
2560
|
+
"version": "2.1.3",
|
|
2561
|
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
|
|
2562
|
+
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
|
|
2563
|
+
"license": "MIT"
|
|
2564
|
+
},
|
|
2565
|
+
"node_modules/muggle-string": {
|
|
2566
|
+
"version": "0.4.1",
|
|
2567
|
+
"resolved": "https://registry.npmjs.org/muggle-string/-/muggle-string-0.4.1.tgz",
|
|
2568
|
+
"integrity": "sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==",
|
|
2569
|
+
"dev": true,
|
|
2570
|
+
"license": "MIT"
|
|
2571
|
+
},
|
|
2572
|
+
"node_modules/mutation-observer": {
|
|
2573
|
+
"version": "1.0.3",
|
|
2574
|
+
"resolved": "https://registry.npmjs.org/mutation-observer/-/mutation-observer-1.0.3.tgz",
|
|
2575
|
+
"integrity": "sha512-M/O/4rF2h776hV7qGMZUH3utZLO/jK7p8rnNgGkjKUw8zCGjRQPxB8z6+5l8+VjRUQ3dNYu4vjqXYLr+U8ZVNA=="
|
|
2576
|
+
},
|
|
2577
|
+
"node_modules/nanoid": {
|
|
2578
|
+
"version": "3.3.18",
|
|
2579
|
+
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.18.tgz",
|
|
2580
|
+
"integrity": "sha512-DTg4MJbGMWkfi6VZFdNt2/caMbQy4Ou+Op/hJQvGEWcnVfoA1QA+xzRKAzw9jD6+GVOOeYr/mIcuDSdug6F6+w==",
|
|
2581
|
+
"funding": [
|
|
2582
|
+
{
|
|
2583
|
+
"type": "github",
|
|
2584
|
+
"url": "https://github.com/sponsors/ai"
|
|
2585
|
+
}
|
|
2586
|
+
],
|
|
2587
|
+
"license": "MIT",
|
|
2588
|
+
"bin": {
|
|
2589
|
+
"nanoid": "bin/nanoid.cjs"
|
|
2590
|
+
},
|
|
2591
|
+
"engines": {
|
|
2592
|
+
"node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
|
|
2593
|
+
}
|
|
2594
|
+
},
|
|
2595
|
+
"node_modules/path-browserify": {
|
|
2596
|
+
"version": "1.0.1",
|
|
2597
|
+
"resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz",
|
|
2598
|
+
"integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==",
|
|
2599
|
+
"dev": true,
|
|
2600
|
+
"license": "MIT"
|
|
2601
|
+
},
|
|
2602
|
+
"node_modules/perfect-debounce": {
|
|
2603
|
+
"version": "1.0.0",
|
|
2604
|
+
"resolved": "https://registry.npmjs.org/perfect-debounce/-/perfect-debounce-1.0.0.tgz",
|
|
2605
|
+
"integrity": "sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==",
|
|
2606
|
+
"license": "MIT"
|
|
2607
|
+
},
|
|
2608
|
+
"node_modules/picocolors": {
|
|
2609
|
+
"version": "1.1.1",
|
|
2610
|
+
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
|
|
2611
|
+
"integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
|
|
2612
|
+
"license": "ISC"
|
|
2613
|
+
},
|
|
2614
|
+
"node_modules/picomatch": {
|
|
2615
|
+
"version": "2.3.2",
|
|
2616
|
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.2.tgz",
|
|
2617
|
+
"integrity": "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==",
|
|
2618
|
+
"dev": true,
|
|
2619
|
+
"license": "MIT",
|
|
2620
|
+
"engines": {
|
|
2621
|
+
"node": ">=8.6"
|
|
2622
|
+
},
|
|
2623
|
+
"funding": {
|
|
2624
|
+
"url": "https://github.com/sponsors/jonschlinkert"
|
|
2625
|
+
}
|
|
2626
|
+
},
|
|
2627
|
+
"node_modules/pinia": {
|
|
2628
|
+
"version": "3.0.4",
|
|
2629
|
+
"resolved": "https://registry.npmjs.org/pinia/-/pinia-3.0.4.tgz",
|
|
2630
|
+
"integrity": "sha512-l7pqLUFTI/+ESXn6k3nu30ZIzW5E2WZF/LaHJEpoq6ElcLD+wduZoB2kBN19du6K/4FDpPMazY2wJr+IndBtQw==",
|
|
2631
|
+
"license": "MIT",
|
|
2632
|
+
"dependencies": {
|
|
2633
|
+
"@vue/devtools-api": "^7.7.7"
|
|
2634
|
+
},
|
|
2635
|
+
"funding": {
|
|
2636
|
+
"url": "https://github.com/sponsors/posva"
|
|
2637
|
+
},
|
|
2638
|
+
"peerDependencies": {
|
|
2639
|
+
"typescript": ">=4.5.0",
|
|
2640
|
+
"vue": "^3.5.11"
|
|
2641
|
+
},
|
|
2642
|
+
"peerDependenciesMeta": {
|
|
2643
|
+
"typescript": {
|
|
2644
|
+
"optional": true
|
|
2645
|
+
}
|
|
2646
|
+
}
|
|
2647
|
+
},
|
|
2648
|
+
"node_modules/pofile": {
|
|
2649
|
+
"version": "1.1.4",
|
|
2650
|
+
"resolved": "https://registry.npmjs.org/pofile/-/pofile-1.1.4.tgz",
|
|
2651
|
+
"integrity": "sha512-r6Q21sKsY1AjTVVjOuU02VYKVNQGJNQHjTIvs4dEbeuuYfxgYk/DGD2mqqq4RDaVkwdSq0VEtmQUOPe/wH8X3g==",
|
|
2652
|
+
"license": "MIT"
|
|
2653
|
+
},
|
|
2654
|
+
"node_modules/polygon-clipping": {
|
|
2655
|
+
"version": "0.15.7",
|
|
2656
|
+
"resolved": "https://registry.npmjs.org/polygon-clipping/-/polygon-clipping-0.15.7.tgz",
|
|
2657
|
+
"integrity": "sha512-nhfdr83ECBg6xtqOAJab1tbksbBAOMUltN60bU+llHVOL0e5Onm1WpAXXWXVB39L8AJFssoIhEVuy/S90MmotA==",
|
|
2658
|
+
"license": "MIT",
|
|
2659
|
+
"dependencies": {
|
|
2660
|
+
"robust-predicates": "^3.0.2",
|
|
2661
|
+
"splaytree": "^3.1.0"
|
|
2662
|
+
}
|
|
2663
|
+
},
|
|
2664
|
+
"node_modules/postcss": {
|
|
2665
|
+
"version": "8.5.26",
|
|
2666
|
+
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.26.tgz",
|
|
2667
|
+
"integrity": "sha512-u82N74LFzG8ca+dD8puPnplTXoGH4fTPpVGuIbt36G3qvNlkvfD0lEAZSxaly3KX8TS/L1A1gsCEmvKmBcVbkQ==",
|
|
2668
|
+
"funding": [
|
|
2669
|
+
{
|
|
2670
|
+
"type": "opencollective",
|
|
2671
|
+
"url": "https://opencollective.com/postcss/"
|
|
2672
|
+
},
|
|
2673
|
+
{
|
|
2674
|
+
"type": "tidelift",
|
|
2675
|
+
"url": "https://tidelift.com/funding/github/npm/postcss"
|
|
2676
|
+
},
|
|
2677
|
+
{
|
|
2678
|
+
"type": "github",
|
|
2679
|
+
"url": "https://github.com/sponsors/ai"
|
|
2680
|
+
}
|
|
2681
|
+
],
|
|
2682
|
+
"license": "MIT",
|
|
2683
|
+
"dependencies": {
|
|
2684
|
+
"nanoid": "^3.3.17",
|
|
2685
|
+
"picocolors": "^1.1.1",
|
|
2686
|
+
"source-map-js": "^1.2.1"
|
|
2687
|
+
},
|
|
2688
|
+
"engines": {
|
|
2689
|
+
"node": "^10 || ^12 || >=14"
|
|
2690
|
+
}
|
|
2691
|
+
},
|
|
2692
|
+
"node_modules/progress": {
|
|
2693
|
+
"version": "2.0.3",
|
|
2694
|
+
"resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz",
|
|
2695
|
+
"integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==",
|
|
2696
|
+
"license": "MIT",
|
|
2697
|
+
"peer": true,
|
|
2698
|
+
"engines": {
|
|
2699
|
+
"node": ">=0.4.0"
|
|
2700
|
+
}
|
|
2701
|
+
},
|
|
2702
|
+
"node_modules/proxy-from-env": {
|
|
2703
|
+
"version": "2.1.0",
|
|
2704
|
+
"resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-2.1.0.tgz",
|
|
2705
|
+
"integrity": "sha512-cJ+oHTW1VAEa8cJslgmUZrc+sjRKgAKl3Zyse6+PV38hZe/V6Z14TbCuXcan9F9ghlz4QrFr2c92TNF82UkYHA==",
|
|
2706
|
+
"license": "MIT",
|
|
2707
|
+
"engines": {
|
|
2708
|
+
"node": ">=10"
|
|
2709
|
+
}
|
|
2710
|
+
},
|
|
2711
|
+
"node_modules/punycode.js": {
|
|
2712
|
+
"version": "2.3.1",
|
|
2713
|
+
"resolved": "https://registry.npmjs.org/punycode.js/-/punycode.js-2.3.1.tgz",
|
|
2714
|
+
"integrity": "sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==",
|
|
2715
|
+
"license": "MIT",
|
|
2716
|
+
"engines": {
|
|
2717
|
+
"node": ">=6"
|
|
2718
|
+
}
|
|
2719
|
+
},
|
|
2720
|
+
"node_modules/querystring": {
|
|
2721
|
+
"version": "0.2.1",
|
|
2722
|
+
"resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.1.tgz",
|
|
2723
|
+
"integrity": "sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==",
|
|
2724
|
+
"deprecated": "The querystring API is considered Legacy. new code should use the URLSearchParams API instead.",
|
|
2725
|
+
"license": "MIT",
|
|
2726
|
+
"engines": {
|
|
2727
|
+
"node": ">=0.4.x"
|
|
2728
|
+
}
|
|
2729
|
+
},
|
|
2730
|
+
"node_modules/rfdc": {
|
|
2731
|
+
"version": "1.4.1",
|
|
2732
|
+
"resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.4.1.tgz",
|
|
2733
|
+
"integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==",
|
|
2734
|
+
"license": "MIT"
|
|
2735
|
+
},
|
|
2736
|
+
"node_modules/robust-predicates": {
|
|
2737
|
+
"version": "3.0.3",
|
|
2738
|
+
"resolved": "https://registry.npmjs.org/robust-predicates/-/robust-predicates-3.0.3.tgz",
|
|
2739
|
+
"integrity": "sha512-NS3levdsRIUOmiJ8FZWCP7LG3QpJyrs/TE0Zpf1yvZu8cAJJ6QMW92H1c7kWpdIHo8RvmLxN/o2JXTKHp74lUA==",
|
|
2740
|
+
"license": "Unlicense"
|
|
2741
|
+
},
|
|
2742
|
+
"node_modules/rollup": {
|
|
2743
|
+
"version": "4.63.0",
|
|
2744
|
+
"resolved": "https://registry.npmjs.org/rollup/-/rollup-4.63.0.tgz",
|
|
2745
|
+
"integrity": "sha512-T5vnZ2y4QqC3/4P+w2+JO+Q/OVdnPsv4XcSYJYMEn0R9/jjl5AgLwO9LAZMzP2lN71O6pypn91rB7lDstUkfrQ==",
|
|
2746
|
+
"dev": true,
|
|
2747
|
+
"license": "MIT",
|
|
2748
|
+
"dependencies": {
|
|
2749
|
+
"@types/estree": "1.0.9"
|
|
2750
|
+
},
|
|
2751
|
+
"bin": {
|
|
2752
|
+
"rollup": "dist/bin/rollup"
|
|
2753
|
+
},
|
|
2754
|
+
"engines": {
|
|
2755
|
+
"node": ">=18.0.0",
|
|
2756
|
+
"npm": ">=8.0.0"
|
|
2757
|
+
},
|
|
2758
|
+
"optionalDependencies": {
|
|
2759
|
+
"@napi-rs/lzma-linux-x64-gnu": "1.5.1",
|
|
2760
|
+
"@rollup/rollup-android-arm-eabi": "4.63.0",
|
|
2761
|
+
"@rollup/rollup-android-arm64": "4.63.0",
|
|
2762
|
+
"@rollup/rollup-darwin-arm64": "4.63.0",
|
|
2763
|
+
"@rollup/rollup-darwin-x64": "4.63.0",
|
|
2764
|
+
"@rollup/rollup-freebsd-arm64": "4.63.0",
|
|
2765
|
+
"@rollup/rollup-freebsd-x64": "4.63.0",
|
|
2766
|
+
"@rollup/rollup-linux-arm-gnueabihf": "4.63.0",
|
|
2767
|
+
"@rollup/rollup-linux-arm-musleabihf": "4.63.0",
|
|
2768
|
+
"@rollup/rollup-linux-arm64-gnu": "4.63.0",
|
|
2769
|
+
"@rollup/rollup-linux-arm64-musl": "4.63.0",
|
|
2770
|
+
"@rollup/rollup-linux-loong64-gnu": "4.63.0",
|
|
2771
|
+
"@rollup/rollup-linux-loong64-musl": "4.63.0",
|
|
2772
|
+
"@rollup/rollup-linux-ppc64-gnu": "4.63.0",
|
|
2773
|
+
"@rollup/rollup-linux-ppc64-musl": "4.63.0",
|
|
2774
|
+
"@rollup/rollup-linux-riscv64-gnu": "4.63.0",
|
|
2775
|
+
"@rollup/rollup-linux-riscv64-musl": "4.63.0",
|
|
2776
|
+
"@rollup/rollup-linux-s390x-gnu": "4.63.0",
|
|
2777
|
+
"@rollup/rollup-linux-x64-gnu": "4.63.0",
|
|
2778
|
+
"@rollup/rollup-linux-x64-musl": "4.63.0",
|
|
2779
|
+
"@rollup/rollup-openbsd-x64": "4.63.0",
|
|
2780
|
+
"@rollup/rollup-openharmony-arm64": "4.63.0",
|
|
2781
|
+
"@rollup/rollup-win32-arm64-msvc": "4.63.0",
|
|
2782
|
+
"@rollup/rollup-win32-ia32-msvc": "4.63.0",
|
|
2783
|
+
"@rollup/rollup-win32-x64-gnu": "4.63.0",
|
|
2784
|
+
"@rollup/rollup-win32-x64-msvc": "4.63.0",
|
|
2785
|
+
"fsevents": "~2.3.2"
|
|
2786
|
+
}
|
|
2787
|
+
},
|
|
2788
|
+
"node_modules/rollup-plugin-inject": {
|
|
2789
|
+
"version": "3.0.2",
|
|
2790
|
+
"resolved": "https://registry.npmjs.org/rollup-plugin-inject/-/rollup-plugin-inject-3.0.2.tgz",
|
|
2791
|
+
"integrity": "sha512-ptg9PQwzs3orn4jkgXJ74bfs5vYz1NCZlSQMBUA0wKcGp5i5pA1AO3fOUEte8enhGUC+iapTCzEWw2jEFFUO/w==",
|
|
2792
|
+
"deprecated": "This package has been deprecated and is no longer maintained. Please use @rollup/plugin-inject.",
|
|
2793
|
+
"dev": true,
|
|
2794
|
+
"license": "MIT",
|
|
2795
|
+
"dependencies": {
|
|
2796
|
+
"estree-walker": "^0.6.1",
|
|
2797
|
+
"magic-string": "^0.25.3",
|
|
2798
|
+
"rollup-pluginutils": "^2.8.1"
|
|
2799
|
+
}
|
|
2800
|
+
},
|
|
2801
|
+
"node_modules/rollup-plugin-inject/node_modules/estree-walker": {
|
|
2802
|
+
"version": "0.6.1",
|
|
2803
|
+
"resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-0.6.1.tgz",
|
|
2804
|
+
"integrity": "sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==",
|
|
2805
|
+
"dev": true,
|
|
2806
|
+
"license": "MIT"
|
|
2807
|
+
},
|
|
2808
|
+
"node_modules/rollup-plugin-inject/node_modules/magic-string": {
|
|
2809
|
+
"version": "0.25.9",
|
|
2810
|
+
"resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz",
|
|
2811
|
+
"integrity": "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==",
|
|
2812
|
+
"dev": true,
|
|
2813
|
+
"license": "MIT",
|
|
2814
|
+
"dependencies": {
|
|
2815
|
+
"sourcemap-codec": "^1.4.8"
|
|
2816
|
+
}
|
|
2817
|
+
},
|
|
2818
|
+
"node_modules/rollup-plugin-node-polyfills": {
|
|
2819
|
+
"version": "0.2.1",
|
|
2820
|
+
"resolved": "https://registry.npmjs.org/rollup-plugin-node-polyfills/-/rollup-plugin-node-polyfills-0.2.1.tgz",
|
|
2821
|
+
"integrity": "sha512-4kCrKPTJ6sK4/gLL/U5QzVT8cxJcofO0OU74tnB19F40cmuAKSzH5/siithxlofFEjwvw1YAhPmbvGNA6jEroA==",
|
|
2822
|
+
"dev": true,
|
|
2823
|
+
"license": "MIT",
|
|
2824
|
+
"dependencies": {
|
|
2825
|
+
"rollup-plugin-inject": "^3.0.0"
|
|
2826
|
+
}
|
|
2827
|
+
},
|
|
2828
|
+
"node_modules/rollup-pluginutils": {
|
|
2829
|
+
"version": "2.8.2",
|
|
2830
|
+
"resolved": "https://registry.npmjs.org/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz",
|
|
2831
|
+
"integrity": "sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==",
|
|
2832
|
+
"dev": true,
|
|
2833
|
+
"license": "MIT",
|
|
2834
|
+
"dependencies": {
|
|
2835
|
+
"estree-walker": "^0.6.1"
|
|
2836
|
+
}
|
|
2837
|
+
},
|
|
2838
|
+
"node_modules/rollup-pluginutils/node_modules/estree-walker": {
|
|
2839
|
+
"version": "0.6.1",
|
|
2840
|
+
"resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-0.6.1.tgz",
|
|
2841
|
+
"integrity": "sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==",
|
|
2842
|
+
"dev": true,
|
|
2843
|
+
"license": "MIT"
|
|
2844
|
+
},
|
|
2845
|
+
"node_modules/select": {
|
|
2846
|
+
"version": "1.1.2",
|
|
2847
|
+
"resolved": "https://registry.npmjs.org/select/-/select-1.1.2.tgz",
|
|
2848
|
+
"integrity": "sha512-OwpTSOfy6xSs1+pwcNrv0RBMOzI39Lp3qQKUTPVVPRjCdNa5JH/oPRiqsesIskK8TVgmRiHwO4KXlV2Li9dANA==",
|
|
2849
|
+
"license": "MIT"
|
|
2850
|
+
},
|
|
2851
|
+
"node_modules/semver": {
|
|
2852
|
+
"version": "7.8.5",
|
|
2853
|
+
"resolved": "https://registry.npmjs.org/semver/-/semver-7.8.5.tgz",
|
|
2854
|
+
"integrity": "sha512-Y7/KDsb8LjooZpwaqGyulO6DQlksgCncchHGk+sZIY4SBvUocMBEFH5Ur1fI4dV+Jvl0w6cjvucaIi40puRioA==",
|
|
2855
|
+
"license": "ISC",
|
|
2856
|
+
"peer": true,
|
|
2857
|
+
"bin": {
|
|
2858
|
+
"semver": "bin/semver.js"
|
|
2859
|
+
},
|
|
2860
|
+
"engines": {
|
|
2861
|
+
"node": ">=10"
|
|
2862
|
+
}
|
|
2863
|
+
},
|
|
2864
|
+
"node_modules/source-map": {
|
|
2865
|
+
"version": "0.6.1",
|
|
2866
|
+
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
|
|
2867
|
+
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
|
|
2868
|
+
"license": "BSD-3-Clause",
|
|
2869
|
+
"optional": true,
|
|
2870
|
+
"engines": {
|
|
2871
|
+
"node": ">=0.10.0"
|
|
2872
|
+
}
|
|
2873
|
+
},
|
|
2874
|
+
"node_modules/source-map-js": {
|
|
2875
|
+
"version": "1.2.1",
|
|
2876
|
+
"resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
|
|
2877
|
+
"integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
|
|
2878
|
+
"license": "BSD-3-Clause",
|
|
2879
|
+
"engines": {
|
|
2880
|
+
"node": ">=0.10.0"
|
|
2881
|
+
}
|
|
2882
|
+
},
|
|
2883
|
+
"node_modules/sourcemap-codec": {
|
|
2884
|
+
"version": "1.4.8",
|
|
2885
|
+
"resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz",
|
|
2886
|
+
"integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==",
|
|
2887
|
+
"deprecated": "Please use @jridgewell/sourcemap-codec instead",
|
|
2888
|
+
"dev": true,
|
|
2889
|
+
"license": "MIT"
|
|
2890
|
+
},
|
|
2891
|
+
"node_modules/spacingjs": {
|
|
2892
|
+
"version": "1.0.9",
|
|
2893
|
+
"resolved": "https://registry.npmjs.org/spacingjs/-/spacingjs-1.0.9.tgz",
|
|
2894
|
+
"integrity": "sha512-JjhLz1PwfkRXzo41FJNJy+oagxCbv/OwYKG4Hche6KZMgz86Jg7ZYSzm2I9c6QBe1oealj8h48y3DavYkTFedw==",
|
|
2895
|
+
"license": "MIT"
|
|
2896
|
+
},
|
|
2897
|
+
"node_modules/speakingurl": {
|
|
2898
|
+
"version": "14.0.1",
|
|
2899
|
+
"resolved": "https://registry.npmjs.org/speakingurl/-/speakingurl-14.0.1.tgz",
|
|
2900
|
+
"integrity": "sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==",
|
|
2901
|
+
"license": "BSD-3-Clause",
|
|
2902
|
+
"engines": {
|
|
2903
|
+
"node": ">=0.10.0"
|
|
2904
|
+
}
|
|
2905
|
+
},
|
|
2906
|
+
"node_modules/splaytree": {
|
|
2907
|
+
"version": "3.2.3",
|
|
2908
|
+
"resolved": "https://registry.npmjs.org/splaytree/-/splaytree-3.2.3.tgz",
|
|
2909
|
+
"integrity": "sha512-7OXrNWzy6CK+r7Ch9OLPBDTKfB6XlWHjX4P0RU5B3IgFuWPeYN0XtRtlexGRjgbQxpfaUve6jTAwBGWuGntz/w==",
|
|
2910
|
+
"license": "MIT",
|
|
2911
|
+
"engines": {
|
|
2912
|
+
"node": ">=18.20 || >=20"
|
|
2913
|
+
}
|
|
2914
|
+
},
|
|
2915
|
+
"node_modules/static-eval": {
|
|
2916
|
+
"version": "2.1.1",
|
|
2917
|
+
"resolved": "https://registry.npmjs.org/static-eval/-/static-eval-2.1.1.tgz",
|
|
2918
|
+
"integrity": "sha512-MgWpQ/ZjGieSVB3eOJVs4OA2LT/q1vx98KPCTTQPzq/aLr0YUXTsgryTXr4SLfR0ZfUUCiedM9n/ABeDIyy4mA==",
|
|
2919
|
+
"license": "MIT",
|
|
2920
|
+
"dependencies": {
|
|
2921
|
+
"escodegen": "^2.1.0"
|
|
2922
|
+
}
|
|
2923
|
+
},
|
|
2924
|
+
"node_modules/sumchecker": {
|
|
2925
|
+
"version": "3.0.1",
|
|
2926
|
+
"resolved": "https://registry.npmjs.org/sumchecker/-/sumchecker-3.0.1.tgz",
|
|
2927
|
+
"integrity": "sha512-MvjXzkz/BOfyVDkG0oFOtBxHX2u3gKbMHIF/dXblZsgD3BWOFLmHovIpZY7BykJdAjcqRCBi1WYBNdEC9yI7vg==",
|
|
2928
|
+
"license": "Apache-2.0",
|
|
2929
|
+
"peer": true,
|
|
2930
|
+
"dependencies": {
|
|
2931
|
+
"debug": "^4.1.0"
|
|
2932
|
+
},
|
|
2933
|
+
"engines": {
|
|
2934
|
+
"node": ">= 8.0"
|
|
2935
|
+
}
|
|
2936
|
+
},
|
|
2937
|
+
"node_modules/superjson": {
|
|
2938
|
+
"version": "2.2.6",
|
|
2939
|
+
"resolved": "https://registry.npmjs.org/superjson/-/superjson-2.2.6.tgz",
|
|
2940
|
+
"integrity": "sha512-H+ue8Zo4vJmV2nRjpx86P35lzwDT3nItnIsocgumgr0hHMQ+ZGq5vrERg9kJBo5AWGmxZDhzDo+WVIJqkB0cGA==",
|
|
2941
|
+
"license": "MIT",
|
|
2942
|
+
"dependencies": {
|
|
2943
|
+
"copy-anything": "^4"
|
|
2944
|
+
},
|
|
2945
|
+
"engines": {
|
|
2946
|
+
"node": ">=16"
|
|
2947
|
+
}
|
|
2948
|
+
},
|
|
2949
|
+
"node_modules/tiny-emitter": {
|
|
2950
|
+
"version": "2.1.0",
|
|
2951
|
+
"resolved": "https://registry.npmjs.org/tiny-emitter/-/tiny-emitter-2.1.0.tgz",
|
|
2952
|
+
"integrity": "sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==",
|
|
2953
|
+
"license": "MIT"
|
|
2954
|
+
},
|
|
2955
|
+
"node_modules/tinyglobby": {
|
|
2956
|
+
"version": "0.2.17",
|
|
2957
|
+
"resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.17.tgz",
|
|
2958
|
+
"integrity": "sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==",
|
|
2959
|
+
"dev": true,
|
|
2960
|
+
"license": "MIT",
|
|
2961
|
+
"dependencies": {
|
|
2962
|
+
"fdir": "^6.5.0",
|
|
2963
|
+
"picomatch": "^4.0.4"
|
|
2964
|
+
},
|
|
2965
|
+
"engines": {
|
|
2966
|
+
"node": ">=12.0.0"
|
|
2967
|
+
},
|
|
2968
|
+
"funding": {
|
|
2969
|
+
"url": "https://github.com/sponsors/SuperchupuDev"
|
|
2970
|
+
}
|
|
2971
|
+
},
|
|
2972
|
+
"node_modules/tinyglobby/node_modules/fdir": {
|
|
2973
|
+
"version": "6.5.0",
|
|
2974
|
+
"resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
|
|
2975
|
+
"integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
|
|
2976
|
+
"dev": true,
|
|
2977
|
+
"license": "MIT",
|
|
2978
|
+
"engines": {
|
|
2979
|
+
"node": ">=12.0.0"
|
|
2980
|
+
},
|
|
2981
|
+
"peerDependencies": {
|
|
2982
|
+
"picomatch": "^3 || ^4"
|
|
2983
|
+
},
|
|
2984
|
+
"peerDependenciesMeta": {
|
|
2985
|
+
"picomatch": {
|
|
2986
|
+
"optional": true
|
|
2987
|
+
}
|
|
2988
|
+
}
|
|
2989
|
+
},
|
|
2990
|
+
"node_modules/tinyglobby/node_modules/picomatch": {
|
|
2991
|
+
"version": "4.0.7",
|
|
2992
|
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.7.tgz",
|
|
2993
|
+
"integrity": "sha512-qcJu88Q2IWqJsDD529JKMdwGm/dvInW4HvQnRwiH9JtihJvzGOscDtHE3x1pBKeUOTysQ8kVmLnJ2kJu7yhcGA==",
|
|
2994
|
+
"dev": true,
|
|
2995
|
+
"license": "MIT",
|
|
2996
|
+
"engines": {
|
|
2997
|
+
"node": ">=12"
|
|
2998
|
+
},
|
|
2999
|
+
"funding": {
|
|
3000
|
+
"url": "https://github.com/sponsors/jonschlinkert"
|
|
3001
|
+
}
|
|
3002
|
+
},
|
|
3003
|
+
"node_modules/topojson-client": {
|
|
3004
|
+
"version": "3.1.0",
|
|
3005
|
+
"resolved": "https://registry.npmjs.org/topojson-client/-/topojson-client-3.1.0.tgz",
|
|
3006
|
+
"integrity": "sha512-605uxS6bcYxGXw9qi62XyrV6Q3xwbndjachmNxu8HWTtVPxZfEJN9fd/SZS1Q54Sn2y0TMyMxFj/cJINqGHrKw==",
|
|
3007
|
+
"license": "ISC",
|
|
3008
|
+
"dependencies": {
|
|
3009
|
+
"commander": "2"
|
|
3010
|
+
},
|
|
3011
|
+
"bin": {
|
|
3012
|
+
"topo2geo": "bin/topo2geo",
|
|
3013
|
+
"topomerge": "bin/topomerge",
|
|
3014
|
+
"topoquantize": "bin/topoquantize"
|
|
3015
|
+
}
|
|
3016
|
+
},
|
|
3017
|
+
"node_modules/tosource": {
|
|
3018
|
+
"version": "2.0.0-alpha.3",
|
|
3019
|
+
"resolved": "https://registry.npmjs.org/tosource/-/tosource-2.0.0-alpha.3.tgz",
|
|
3020
|
+
"integrity": "sha512-KAB2lrSS48y91MzFPFuDg4hLbvDiyTjOVgaK7Erw+5AmZXNq4sFRVn8r6yxSLuNs15PaokrDRpS61ERY9uZOug==",
|
|
3021
|
+
"dev": true,
|
|
3022
|
+
"engines": {
|
|
3023
|
+
"node": ">=10"
|
|
3024
|
+
}
|
|
3025
|
+
},
|
|
3026
|
+
"node_modules/tslib": {
|
|
3027
|
+
"version": "2.3.0",
|
|
3028
|
+
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.0.tgz",
|
|
3029
|
+
"integrity": "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==",
|
|
3030
|
+
"license": "0BSD"
|
|
3031
|
+
},
|
|
3032
|
+
"node_modules/typescript": {
|
|
3033
|
+
"version": "5.9.3",
|
|
3034
|
+
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
|
|
3035
|
+
"integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
|
|
3036
|
+
"devOptional": true,
|
|
3037
|
+
"license": "Apache-2.0",
|
|
3038
|
+
"bin": {
|
|
3039
|
+
"tsc": "bin/tsc",
|
|
3040
|
+
"tsserver": "bin/tsserver"
|
|
3041
|
+
},
|
|
3042
|
+
"engines": {
|
|
3043
|
+
"node": ">=14.17"
|
|
3044
|
+
}
|
|
3045
|
+
},
|
|
3046
|
+
"node_modules/uc.micro": {
|
|
3047
|
+
"version": "2.1.0",
|
|
3048
|
+
"resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-2.1.0.tgz",
|
|
3049
|
+
"integrity": "sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==",
|
|
3050
|
+
"license": "MIT"
|
|
3051
|
+
},
|
|
3052
|
+
"node_modules/underscore": {
|
|
3053
|
+
"version": "1.13.6",
|
|
3054
|
+
"resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.6.tgz",
|
|
3055
|
+
"integrity": "sha512-+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A==",
|
|
3056
|
+
"license": "MIT"
|
|
3057
|
+
},
|
|
3058
|
+
"node_modules/undici": {
|
|
3059
|
+
"version": "6.28.0",
|
|
3060
|
+
"resolved": "https://registry.npmjs.org/undici/-/undici-6.28.0.tgz",
|
|
3061
|
+
"integrity": "sha512-LIY910g9TI13YS95lrMFrs8Rm/u/irgHeTWoKCoteeJ04CUJ92eEfj0rVn+7VKMPBpUPiUoBKfhNyLI23EE/KA==",
|
|
3062
|
+
"license": "MIT",
|
|
3063
|
+
"engines": {
|
|
3064
|
+
"node": ">=18.17"
|
|
3065
|
+
}
|
|
3066
|
+
},
|
|
3067
|
+
"node_modules/undici-types": {
|
|
3068
|
+
"version": "7.24.6",
|
|
3069
|
+
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.24.6.tgz",
|
|
3070
|
+
"integrity": "sha512-WRNW+sJgj5OBN4/0JpHFqtqzhpbnV0GuB+OozA9gCL7a993SmU+1JBZCzLNxYsbMfIeDL+lTsphD5jN5N+n0zg==",
|
|
3071
|
+
"dev": true,
|
|
3072
|
+
"license": "MIT"
|
|
3073
|
+
},
|
|
3074
|
+
"node_modules/uzip": {
|
|
3075
|
+
"version": "0.20201231.0",
|
|
3076
|
+
"resolved": "https://registry.npmjs.org/uzip/-/uzip-0.20201231.0.tgz",
|
|
3077
|
+
"integrity": "sha512-OZeJfZP+R0z9D6TmBgLq2LHzSSptGMGDGigGiEe0pr8UBe/7fdflgHlHBNDASTXB5jnFuxHpNaJywSg8YFeGng==",
|
|
3078
|
+
"license": "MIT"
|
|
3079
|
+
},
|
|
3080
|
+
"node_modules/vconsole": {
|
|
3081
|
+
"version": "3.15.1",
|
|
3082
|
+
"resolved": "https://registry.npmjs.org/vconsole/-/vconsole-3.15.1.tgz",
|
|
3083
|
+
"integrity": "sha512-KH8XLdrq9T5YHJO/ixrjivHfmF2PC2CdVoK6RWZB4yftMykYIaXY1mxZYAic70vADM54kpMQF+dYmvl5NRNy1g==",
|
|
3084
|
+
"license": "MIT",
|
|
3085
|
+
"dependencies": {
|
|
3086
|
+
"@babel/runtime": "^7.17.2",
|
|
3087
|
+
"copy-text-to-clipboard": "^3.0.1",
|
|
3088
|
+
"core-js": "^3.11.0",
|
|
3089
|
+
"mutation-observer": "^1.0.3"
|
|
3090
|
+
}
|
|
3091
|
+
},
|
|
3092
|
+
"node_modules/vite": {
|
|
3093
|
+
"version": "6.4.3",
|
|
3094
|
+
"resolved": "https://registry.npmjs.org/vite/-/vite-6.4.3.tgz",
|
|
3095
|
+
"integrity": "sha512-NTKlcQjlAK7MlQoyb6LgaqHc8sso/pVyUJYWMws3jg21uTJw/LddqIFPcPqP6PzpgbIcZyKI85sFE4HBrQDA8A==",
|
|
3096
|
+
"dev": true,
|
|
3097
|
+
"license": "MIT",
|
|
3098
|
+
"dependencies": {
|
|
3099
|
+
"esbuild": "^0.25.0",
|
|
3100
|
+
"fdir": "^6.4.4",
|
|
3101
|
+
"picomatch": "^4.0.2",
|
|
3102
|
+
"postcss": "^8.5.3",
|
|
3103
|
+
"rollup": "^4.34.9",
|
|
3104
|
+
"tinyglobby": "^0.2.13"
|
|
3105
|
+
},
|
|
3106
|
+
"bin": {
|
|
3107
|
+
"vite": "bin/vite.js"
|
|
3108
|
+
},
|
|
3109
|
+
"engines": {
|
|
3110
|
+
"node": "^18.0.0 || ^20.0.0 || >=22.0.0"
|
|
3111
|
+
},
|
|
3112
|
+
"funding": {
|
|
3113
|
+
"url": "https://github.com/vitejs/vite?sponsor=1"
|
|
3114
|
+
},
|
|
3115
|
+
"optionalDependencies": {
|
|
3116
|
+
"fsevents": "~2.3.3"
|
|
3117
|
+
},
|
|
3118
|
+
"peerDependencies": {
|
|
3119
|
+
"@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0",
|
|
3120
|
+
"jiti": ">=1.21.0",
|
|
3121
|
+
"less": "*",
|
|
3122
|
+
"lightningcss": "^1.21.0",
|
|
3123
|
+
"sass": "*",
|
|
3124
|
+
"sass-embedded": "*",
|
|
3125
|
+
"stylus": "*",
|
|
3126
|
+
"sugarss": "*",
|
|
3127
|
+
"terser": "^5.16.0",
|
|
3128
|
+
"tsx": "^4.8.1",
|
|
3129
|
+
"yaml": "^2.4.2"
|
|
3130
|
+
},
|
|
3131
|
+
"peerDependenciesMeta": {
|
|
3132
|
+
"@types/node": {
|
|
3133
|
+
"optional": true
|
|
3134
|
+
},
|
|
3135
|
+
"jiti": {
|
|
3136
|
+
"optional": true
|
|
3137
|
+
},
|
|
3138
|
+
"less": {
|
|
3139
|
+
"optional": true
|
|
3140
|
+
},
|
|
3141
|
+
"lightningcss": {
|
|
3142
|
+
"optional": true
|
|
3143
|
+
},
|
|
3144
|
+
"sass": {
|
|
3145
|
+
"optional": true
|
|
3146
|
+
},
|
|
3147
|
+
"sass-embedded": {
|
|
3148
|
+
"optional": true
|
|
3149
|
+
},
|
|
3150
|
+
"stylus": {
|
|
3151
|
+
"optional": true
|
|
3152
|
+
},
|
|
3153
|
+
"sugarss": {
|
|
3154
|
+
"optional": true
|
|
3155
|
+
},
|
|
3156
|
+
"terser": {
|
|
3157
|
+
"optional": true
|
|
3158
|
+
},
|
|
3159
|
+
"tsx": {
|
|
3160
|
+
"optional": true
|
|
3161
|
+
},
|
|
3162
|
+
"yaml": {
|
|
3163
|
+
"optional": true
|
|
3164
|
+
}
|
|
3165
|
+
}
|
|
3166
|
+
},
|
|
3167
|
+
"node_modules/vite/node_modules/fdir": {
|
|
3168
|
+
"version": "6.5.0",
|
|
3169
|
+
"resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
|
|
3170
|
+
"integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
|
|
3171
|
+
"dev": true,
|
|
3172
|
+
"license": "MIT",
|
|
3173
|
+
"engines": {
|
|
3174
|
+
"node": ">=12.0.0"
|
|
3175
|
+
},
|
|
3176
|
+
"peerDependencies": {
|
|
3177
|
+
"picomatch": "^3 || ^4"
|
|
3178
|
+
},
|
|
3179
|
+
"peerDependenciesMeta": {
|
|
3180
|
+
"picomatch": {
|
|
3181
|
+
"optional": true
|
|
3182
|
+
}
|
|
3183
|
+
}
|
|
3184
|
+
},
|
|
3185
|
+
"node_modules/vite/node_modules/picomatch": {
|
|
3186
|
+
"version": "4.0.7",
|
|
3187
|
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.7.tgz",
|
|
3188
|
+
"integrity": "sha512-qcJu88Q2IWqJsDD529JKMdwGm/dvInW4HvQnRwiH9JtihJvzGOscDtHE3x1pBKeUOTysQ8kVmLnJ2kJu7yhcGA==",
|
|
3189
|
+
"dev": true,
|
|
3190
|
+
"license": "MIT",
|
|
3191
|
+
"engines": {
|
|
3192
|
+
"node": ">=12"
|
|
3193
|
+
},
|
|
3194
|
+
"funding": {
|
|
3195
|
+
"url": "https://github.com/sponsors/jonschlinkert"
|
|
3196
|
+
}
|
|
3197
|
+
},
|
|
3198
|
+
"node_modules/vscode-uri": {
|
|
3199
|
+
"version": "3.2.0",
|
|
3200
|
+
"resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.2.0.tgz",
|
|
3201
|
+
"integrity": "sha512-m2gXo3bn0G1kT9InzMf07fTbqMbGtyckj3bH5ktLO+1Ssv+yiATZ4dhwaQv9UZWxJh6E9IFGnQyjgWVDWVBDrg==",
|
|
3202
|
+
"dev": true,
|
|
3203
|
+
"license": "MIT"
|
|
3204
|
+
},
|
|
3205
|
+
"node_modules/vue": {
|
|
3206
|
+
"version": "3.5.41",
|
|
3207
|
+
"resolved": "https://registry.npmjs.org/vue/-/vue-3.5.41.tgz",
|
|
3208
|
+
"integrity": "sha512-2laE0p+aK+/AOPG/XL/WepOs/GlK755LJ1XECi9kDUrz1FKNw8rb2Xzlw9JS1rqEV55nb0ttsKxVlTCcd+R5cg==",
|
|
3209
|
+
"license": "MIT",
|
|
3210
|
+
"dependencies": {
|
|
3211
|
+
"@vue/compiler-dom": "3.5.41",
|
|
3212
|
+
"@vue/compiler-sfc": "3.5.41",
|
|
3213
|
+
"@vue/runtime-dom": "3.5.41",
|
|
3214
|
+
"@vue/server-renderer": "3.5.41",
|
|
3215
|
+
"@vue/shared": "3.5.41"
|
|
3216
|
+
},
|
|
3217
|
+
"peerDependencies": {
|
|
3218
|
+
"typescript": "*"
|
|
3219
|
+
},
|
|
3220
|
+
"peerDependenciesMeta": {
|
|
3221
|
+
"typescript": {
|
|
3222
|
+
"optional": true
|
|
3223
|
+
}
|
|
3224
|
+
}
|
|
3225
|
+
},
|
|
3226
|
+
"node_modules/vue-clipboard2": {
|
|
3227
|
+
"version": "0.3.3",
|
|
3228
|
+
"resolved": "https://registry.npmjs.org/vue-clipboard2/-/vue-clipboard2-0.3.3.tgz",
|
|
3229
|
+
"integrity": "sha512-aNWXIL2DKgJyY/1OOeITwAQz1fHaCIGvUFHf9h8UcoQBG5a74MkdhS/xqoYe7DNZdQmZRL+TAdIbtUs9OyVjbw==",
|
|
3230
|
+
"license": "MIT",
|
|
3231
|
+
"dependencies": {
|
|
3232
|
+
"clipboard": "^2.0.0"
|
|
3233
|
+
}
|
|
3234
|
+
},
|
|
3235
|
+
"node_modules/vue-demi": {
|
|
3236
|
+
"version": "0.13.11",
|
|
3237
|
+
"resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.13.11.tgz",
|
|
3238
|
+
"integrity": "sha512-IR8HoEEGM65YY3ZJYAjMlKygDQn25D5ajNFNoKh9RSDMQtlzCxtfQjdQgv9jjK+m3377SsJXY8ysq8kLCZL25A==",
|
|
3239
|
+
"hasInstallScript": true,
|
|
3240
|
+
"license": "MIT",
|
|
3241
|
+
"bin": {
|
|
3242
|
+
"vue-demi-fix": "bin/vue-demi-fix.js",
|
|
3243
|
+
"vue-demi-switch": "bin/vue-demi-switch.js"
|
|
3244
|
+
},
|
|
3245
|
+
"engines": {
|
|
3246
|
+
"node": ">=12"
|
|
3247
|
+
},
|
|
3248
|
+
"funding": {
|
|
3249
|
+
"url": "https://github.com/sponsors/antfu"
|
|
3250
|
+
},
|
|
3251
|
+
"peerDependencies": {
|
|
3252
|
+
"@vue/composition-api": "^1.0.0-rc.1",
|
|
3253
|
+
"vue": "^3.0.0-0 || ^2.6.0"
|
|
3254
|
+
},
|
|
3255
|
+
"peerDependenciesMeta": {
|
|
3256
|
+
"@vue/composition-api": {
|
|
3257
|
+
"optional": true
|
|
3258
|
+
}
|
|
3259
|
+
}
|
|
3260
|
+
},
|
|
3261
|
+
"node_modules/vue-echarts": {
|
|
3262
|
+
"version": "7.0.3",
|
|
3263
|
+
"resolved": "https://registry.npmjs.org/vue-echarts/-/vue-echarts-7.0.3.tgz",
|
|
3264
|
+
"integrity": "sha512-/jSxNwOsw5+dYAUcwSfkLwKPuzTQ0Cepz1LxCOpj2QcHrrmUa/Ql0eQqMmc1rTPQVrh2JQ29n2dhq75ZcHvRDw==",
|
|
3265
|
+
"license": "MIT",
|
|
3266
|
+
"dependencies": {
|
|
3267
|
+
"vue-demi": "^0.13.11"
|
|
3268
|
+
},
|
|
3269
|
+
"peerDependencies": {
|
|
3270
|
+
"@vue/runtime-core": "^3.0.0",
|
|
3271
|
+
"echarts": "^5.5.1",
|
|
3272
|
+
"vue": "^2.7.0 || ^3.1.1"
|
|
3273
|
+
},
|
|
3274
|
+
"peerDependenciesMeta": {
|
|
3275
|
+
"@vue/runtime-core": {
|
|
3276
|
+
"optional": true
|
|
3277
|
+
}
|
|
3278
|
+
}
|
|
3279
|
+
},
|
|
3280
|
+
"node_modules/vue-i18n": {
|
|
3281
|
+
"version": "10.0.8",
|
|
3282
|
+
"resolved": "https://registry.npmjs.org/vue-i18n/-/vue-i18n-10.0.8.tgz",
|
|
3283
|
+
"integrity": "sha512-mIjy4utxMz9lMMo6G9vYePv7gUFt4ztOMhY9/4czDJxZ26xPeJ49MAGa9wBAE3XuXbYCrtVPmPxNjej7JJJkZQ==",
|
|
3284
|
+
"deprecated": "v9 and v10 no longer supported. please migrate to v11. about maintenance status, see https://vue-i18n.intlify.dev/guide/maintenance.html",
|
|
3285
|
+
"license": "MIT",
|
|
3286
|
+
"dependencies": {
|
|
3287
|
+
"@intlify/core-base": "10.0.8",
|
|
3288
|
+
"@intlify/shared": "10.0.8",
|
|
3289
|
+
"@vue/devtools-api": "^6.5.0"
|
|
3290
|
+
},
|
|
3291
|
+
"engines": {
|
|
3292
|
+
"node": ">= 16"
|
|
3293
|
+
},
|
|
3294
|
+
"funding": {
|
|
3295
|
+
"url": "https://github.com/sponsors/kazupon"
|
|
3296
|
+
},
|
|
3297
|
+
"peerDependencies": {
|
|
3298
|
+
"vue": "^3.0.0"
|
|
3299
|
+
}
|
|
3300
|
+
},
|
|
3301
|
+
"node_modules/vue-i18n/node_modules/@vue/devtools-api": {
|
|
3302
|
+
"version": "6.6.4",
|
|
3303
|
+
"resolved": "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-6.6.4.tgz",
|
|
3304
|
+
"integrity": "sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==",
|
|
3305
|
+
"license": "MIT"
|
|
3306
|
+
},
|
|
3307
|
+
"node_modules/vue-tsc": {
|
|
3308
|
+
"version": "2.2.12",
|
|
3309
|
+
"resolved": "https://registry.npmjs.org/vue-tsc/-/vue-tsc-2.2.12.tgz",
|
|
3310
|
+
"integrity": "sha512-P7OP77b2h/Pmk+lZdJ0YWs+5tJ6J2+uOQPo7tlBnY44QqQSPYvS0qVT4wqDJgwrZaLe47etJLLQRFia71GYITw==",
|
|
3311
|
+
"dev": true,
|
|
3312
|
+
"license": "MIT",
|
|
3313
|
+
"dependencies": {
|
|
3314
|
+
"@volar/typescript": "2.4.15",
|
|
3315
|
+
"@vue/language-core": "2.2.12"
|
|
3316
|
+
},
|
|
3317
|
+
"bin": {
|
|
3318
|
+
"vue-tsc": "bin/vue-tsc.js"
|
|
3319
|
+
},
|
|
3320
|
+
"peerDependencies": {
|
|
3321
|
+
"typescript": ">=5.0.0"
|
|
3322
|
+
}
|
|
3323
|
+
},
|
|
3324
|
+
"node_modules/vue-virtual-scroller": {
|
|
3325
|
+
"version": "2.0.1",
|
|
3326
|
+
"resolved": "https://registry.npmjs.org/vue-virtual-scroller/-/vue-virtual-scroller-2.0.1.tgz",
|
|
3327
|
+
"integrity": "sha512-3Drq8C61C4B3reSaZJr5nXBf/B7Beq1+h5/kYZB25MLYljTy97ISeUufRX9z6ZSZlFDXyafAOLK9XwajOWJY1A==",
|
|
3328
|
+
"license": "MIT",
|
|
3329
|
+
"dependencies": {
|
|
3330
|
+
"mitt": "^2.1.0"
|
|
3331
|
+
},
|
|
3332
|
+
"peerDependencies": {
|
|
3333
|
+
"vue": "^3.3.0"
|
|
3334
|
+
}
|
|
3335
|
+
},
|
|
3336
|
+
"node_modules/vue-virtual-scroller/node_modules/mitt": {
|
|
3337
|
+
"version": "2.1.0",
|
|
3338
|
+
"resolved": "https://registry.npmjs.org/mitt/-/mitt-2.1.0.tgz",
|
|
3339
|
+
"integrity": "sha512-ILj2TpLiysu2wkBbWjAmww7TkZb65aiQO+DkVdUTBpBXq+MHYiETENkKFMtsJZX1Lf4pe4QOrTSjIfUwN5lRdg==",
|
|
3340
|
+
"license": "MIT"
|
|
3341
|
+
},
|
|
3342
|
+
"node_modules/vue3-bcui": {
|
|
3343
|
+
"version": "0.3.0",
|
|
3344
|
+
"resolved": "https://registry.npmjs.org/vue3-bcui/-/vue3-bcui-0.3.0.tgz",
|
|
3345
|
+
"integrity": "sha512-CR69DAwVoaC//iznfVUOiGSx/9Mb06H/tzrEvLAC1hn1jLn+9ZSjDqwzZUPbaM/nGV2Xg2M8SkxbHAo4Vyh2Xg==",
|
|
3346
|
+
"dependencies": {
|
|
3347
|
+
"@fortawesome/fontawesome-svg-core": "^6.3.0",
|
|
3348
|
+
"@fortawesome/free-regular-svg-icons": "^6.3.0",
|
|
3349
|
+
"@fortawesome/free-solid-svg-icons": "^6.3.0",
|
|
3350
|
+
"@fortawesome/vue-fontawesome": "^3.0.3",
|
|
3351
|
+
"core-js": "^3.8.3",
|
|
3352
|
+
"vue": "^3.2.13"
|
|
3353
|
+
}
|
|
3354
|
+
},
|
|
3355
|
+
"node_modules/vue3-danmaku": {
|
|
3356
|
+
"version": "1.6.7",
|
|
3357
|
+
"resolved": "https://registry.npmjs.org/vue3-danmaku/-/vue3-danmaku-1.6.7.tgz",
|
|
3358
|
+
"integrity": "sha512-1tHJXVkC4T642qejIYfe4aOyAfTiv3OtYbE0HE6UbP4Q/+uUJxPvgx6J/vLe1aCHLrYbxfoEhFCuiw54ijw/hw==",
|
|
3359
|
+
"license": "MIT",
|
|
3360
|
+
"engines": {
|
|
3361
|
+
"node": ">=12.0.0"
|
|
3362
|
+
},
|
|
3363
|
+
"peerDependencies": {
|
|
3364
|
+
"vue": "^3.0.0"
|
|
3365
|
+
}
|
|
3366
|
+
},
|
|
3367
|
+
"node_modules/vue3-lottie": {
|
|
3368
|
+
"version": "3.3.1",
|
|
3369
|
+
"resolved": "https://registry.npmjs.org/vue3-lottie/-/vue3-lottie-3.3.1.tgz",
|
|
3370
|
+
"integrity": "sha512-60uQmx4eefi3FdPjAxWnblrgJJjnVTXUA6e4BAI3jGzgOSR76pyzL1rrWDiyPmMFo4mTw4wGTW6Gbkg3HR1mYw==",
|
|
3371
|
+
"license": "MIT",
|
|
3372
|
+
"dependencies": {
|
|
3373
|
+
"fast-deep-equal": "^3.1.3",
|
|
3374
|
+
"klona": "^2.0.6",
|
|
3375
|
+
"lottie-web": "5.12.2"
|
|
3376
|
+
},
|
|
3377
|
+
"engines": {
|
|
3378
|
+
"node": ">=12"
|
|
3379
|
+
},
|
|
3380
|
+
"peerDependencies": {
|
|
3381
|
+
"vue": "^3.2"
|
|
3382
|
+
}
|
|
3383
|
+
},
|
|
3384
|
+
"node_modules/xss": {
|
|
3385
|
+
"version": "1.0.15",
|
|
3386
|
+
"resolved": "https://registry.npmjs.org/xss/-/xss-1.0.15.tgz",
|
|
3387
|
+
"integrity": "sha512-FVdlVVC67WOIPvfOwhoMETV72f6GbW7aOabBC3WxN/oUdoEMDyLz4OgRv5/gck2ZeNqEQu+Tb0kloovXOfpYVg==",
|
|
3388
|
+
"license": "MIT",
|
|
3389
|
+
"dependencies": {
|
|
3390
|
+
"commander": "^2.20.3",
|
|
3391
|
+
"cssfilter": "0.0.10"
|
|
3392
|
+
},
|
|
3393
|
+
"bin": {
|
|
3394
|
+
"xss": "bin/xss"
|
|
3395
|
+
},
|
|
3396
|
+
"engines": {
|
|
3397
|
+
"node": ">= 0.10.0"
|
|
3398
|
+
}
|
|
3399
|
+
},
|
|
3400
|
+
"node_modules/zod": {
|
|
3401
|
+
"version": "4.4.3",
|
|
3402
|
+
"resolved": "https://registry.npmjs.org/zod/-/zod-4.4.3.tgz",
|
|
3403
|
+
"integrity": "sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ==",
|
|
3404
|
+
"license": "MIT",
|
|
3405
|
+
"funding": {
|
|
3406
|
+
"url": "https://github.com/sponsors/colinhacks"
|
|
3407
|
+
}
|
|
3408
|
+
},
|
|
3409
|
+
"node_modules/zrender": {
|
|
3410
|
+
"version": "5.6.1",
|
|
3411
|
+
"resolved": "https://registry.npmjs.org/zrender/-/zrender-5.6.1.tgz",
|
|
3412
|
+
"integrity": "sha512-OFXkDJKcrlx5su2XbzJvj/34Q3m6PvyCZkVPHGYpcCJ52ek4U/ymZyfuV1nKE23AyBJ51E/6Yr0mhZ7xGTO4ag==",
|
|
3413
|
+
"license": "BSD-3-Clause",
|
|
3414
|
+
"dependencies": {
|
|
3415
|
+
"tslib": "2.3.0"
|
|
3416
|
+
}
|
|
3417
|
+
}
|
|
3418
|
+
}
|
|
3419
|
+
}
|