From f43e94ea8461b2321bf1b886a4aa8d398e89f056 Mon Sep 17 00:00:00 2001 From: maxueming Date: Wed, 9 Nov 2022 20:14:58 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=96=B0=E5=A2=9E=E7=BC=96=E8=BE=91?= =?UTF-8?q?=E5=99=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- vuepress/.vuepress/client.ts | 97 + vuepress/.vuepress/components/demo.vue | 29 + vuepress/.vuepress/config.ts | 5 +- vuepress/.vuepress/plugins/index.ts | 42 + vuepress/docs/theme-reco/Advanced-4.md | 1 + vuepress/docs/theme-reco/base-1.md | 2 + vuepress/package-lock.json | 17247 ++++++++++++++++++----- vuepress/package.json | 5 + vuepress/yarn.lock | 3265 ++++- 9 files changed, 16078 insertions(+), 4615 deletions(-) create mode 100644 vuepress/.vuepress/client.ts create mode 100644 vuepress/.vuepress/components/demo.vue create mode 100644 vuepress/.vuepress/plugins/index.ts diff --git a/vuepress/.vuepress/client.ts b/vuepress/.vuepress/client.ts new file mode 100644 index 0000000..dd98dff --- /dev/null +++ b/vuepress/.vuepress/client.ts @@ -0,0 +1,97 @@ +import { defineClientConfig } from "@vuepress/client"; +import { configLoadSandbox } from "vuepress-plugin-sandbox/client"; +import pkg from "../../package.json"; +import vueXrenderTypes from "vue-xrender/dist/index.d.ts?raw"; +import classMockTypes from "class-mock/dist/index.d.ts?raw"; + +export default defineClientConfig({ + async enhance({ app }) { + app.config.globalProperties.version = pkg.version; + + if (!__VUEPRESS_SSR__) { + configLoadSandbox((preOptions) => { + return { + ...preOptions, + pkgCdn: { + "@vue/runtime-dom"(version) { + return `https://unpkg.com/vue@${version}/dist/vue.esm-browser.js`; + }, + }, + themes: { + light: { + "--theme-color": "#ff3d00", + }, + dark: { + "--theme-color": "#ff774e", + }, + }, + lifeCycle: { + // TODO: FIX types declaration + loadTsLibs(_, defaultTsLibs) { + const tsLibs = [ + { + content: `declare module 'vue-xrender' { ${vueXrenderTypes} }`, + }, + { + content: `declare module 'class-mock' { ${classMockTypes} }`, + }, + { content: `declare module '@faker-js/*'` }, + ]; + return [...defaultTsLibs, ...tsLibs]; + }, + loadWorkers: async () => { + await Promise.all([ + // load workers + (async () => { + const [ + { default: EditorWorker }, + { default: JsonWorker }, + { default: HtmlWorker }, + { default: TsWorker }, + { default: CssWorker }, + ] = await Promise.all([ + import("monaco-editor/esm/vs/editor/editor.worker?worker"), + import( + "monaco-editor/esm/vs/language/json/json.worker?worker" + ), + import( + "monaco-editor/esm/vs/language/html/html.worker?worker" + ), + import( + "monaco-editor/esm/vs/language/typescript/ts.worker?worker" + ), + import( + "monaco-editor/esm/vs/language/css/css.worker?worker" + ), + ]); + + self.MonacoEnvironment = { + getWorker: function (workerId, label) { + switch (label) { + case "json": + return new JsonWorker(); + case "css": + case "scss": + case "less": + return new CssWorker(); + case "html": + case "handlebars": + case "razor": + return new HtmlWorker(); + case "typescript": + case "javascript": + return new TsWorker(); + default: + return new EditorWorker(); + } + }, + }; + })(), + ]); + }, + }, + }; + }, self); + } + }, +}); diff --git a/vuepress/.vuepress/components/demo.vue b/vuepress/.vuepress/components/demo.vue new file mode 100644 index 0000000..876b4e9 --- /dev/null +++ b/vuepress/.vuepress/components/demo.vue @@ -0,0 +1,29 @@ + + + diff --git a/vuepress/.vuepress/config.ts b/vuepress/.vuepress/config.ts index c591f53..058fa1f 100644 --- a/vuepress/.vuepress/config.ts +++ b/vuepress/.vuepress/config.ts @@ -1,6 +1,7 @@ import { defineUserConfig } from "vuepress"; -import type { DefaultThemeOptions } from "vuepress"; +import sandboxPlugin from "vuepress-plugin-sandbox"; import recoTheme from "vuepress-theme-reco"; +import { plugins } from "./plugins"; export default defineUserConfig({ title: "You-Dont-Know-TS", @@ -172,6 +173,8 @@ export default defineUserConfig({ // // hideComments: true // 隐藏评论 // }, }), + base: "/you-dont-know-ts/", // debug: true, + plugins, }); diff --git a/vuepress/.vuepress/plugins/index.ts b/vuepress/.vuepress/plugins/index.ts new file mode 100644 index 0000000..d119e8f --- /dev/null +++ b/vuepress/.vuepress/plugins/index.ts @@ -0,0 +1,42 @@ +import { PluginConfig } from "vuepress"; +// import { googleAnalyticsPlugin } from "@vuepress/plugin-google-analytics"; +import { path } from "@vuepress/utils"; +import sandboxPlugin from "vuepress-plugin-sandbox"; +import pkg from "../../package.json"; +console.log(pkg); + +const getUnpkgUrl = (name: string, version = "latest", ending = "") => + `https://unpkg.com/${name}@${version}${ending}`; +// eslint-disable-next-line @typescript-eslint/no-unused-vars +const getEsmUrl = (name: string, version = "latest", ending = "") => + `https://esm.sh/${name}@${version}`; + +const vuepressPlugins: any = [ + // for doc search + + // for google search + // googleAnalyticsPlugin({ + // id: "", + // }), + // for demo sandbox + sandboxPlugin({ + importMap: { + imports: { + "vue-xrender": getUnpkgUrl( + "vue-xrender", + pkg.version, + "/dist/index.mjs" + ), + "class-mock": getUnpkgUrl("class-mock", pkg.version, "/dist/index.mjs"), + "vue-demi": getUnpkgUrl("vue-demi", "latest", "/lib/v3/index.mjs"), + "@faker-js/faker": getEsmUrl( + "@faker-js/faker", + "latest", + "/dist/esm/index.mjs" + ), + }, + }, + }), +]; + +export const plugins = vuepressPlugins; diff --git a/vuepress/docs/theme-reco/Advanced-4.md b/vuepress/docs/theme-reco/Advanced-4.md index a2ffc9a..9ffb02f 100644 --- a/vuepress/docs/theme-reco/Advanced-4.md +++ b/vuepress/docs/theme-reco/Advanced-4.md @@ -1,6 +1,7 @@ --- title: 第四章:TS 中奇怪的符号 date: 2020/05/29 +hideComments: false --- ## 第四章 TS 中奇怪的符号 diff --git a/vuepress/docs/theme-reco/base-1.md b/vuepress/docs/theme-reco/base-1.md index da3a550..714f3d8 100644 --- a/vuepress/docs/theme-reco/base-1.md +++ b/vuepress/docs/theme-reco/base-1.md @@ -79,3 +79,5 @@ console.log(greet("TypeScript")); ``` 观察以上编译后的输出结果,我们发现 person 参数的类型信息在编译后被擦除了。TypeScript 只会在编译阶段对类型进行静态检查,如果发现有错误,编译时就会报错。而在运行时,编译生成的 JS 与普通的 JavaScript 文件一样,并不会进行类型检查。 + + diff --git a/vuepress/package-lock.json b/vuepress/package-lock.json index 5325bab..64e9b5b 100644 --- a/vuepress/package-lock.json +++ b/vuepress/package-lock.json @@ -9,12 +9,21 @@ "version": "2.0.0", "license": "MIT", "dependencies": { + "@type-challenges/utils": "^0.1.1", + "@vuepress/plugin-google-analytics": "^1.9.7", + "@vuepress/plugin-shiki": "^2.0.0-beta.5", + "install": "^0.13.0", + "monaco-editor": "^0.34.1", + "npm": "^8.19.3", "vuepress": "2.0.0-beta.51", + "vuepress-plugin-sandbox": "^0.1.10", "vuepress-theme-reco": "2.0.0-beta.41" } }, "node_modules/@ampproject/remapping": { "version": "2.2.0", + "resolved": "https://npm.corp.kuaishou.com/@ampproject%2fremapping/-/remapping-2.2.0.tgz", + "integrity": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==", "license": "Apache-2.0", "dependencies": { "@jridgewell/gen-mapping": "^0.1.0", @@ -26,6 +35,8 @@ }, "node_modules/@ampproject/remapping/node_modules/@jridgewell/gen-mapping": { "version": "0.1.1", + "resolved": "https://npm.corp.kuaishou.com/@jridgewell%2fgen-mapping/-/gen-mapping-0.1.1.tgz", + "integrity": "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==", "license": "MIT", "dependencies": { "@jridgewell/set-array": "^1.0.0", @@ -37,6 +48,8 @@ }, "node_modules/@babel/code-frame": { "version": "7.18.6", + "resolved": "https://npm.corp.kuaishou.com/@babel%2fcode-frame/-/code-frame-7.18.6.tgz", + "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", "license": "MIT", "dependencies": { "@babel/highlight": "^7.18.6" @@ -47,6 +60,8 @@ }, "node_modules/@babel/compat-data": { "version": "7.20.1", + "resolved": "https://npm.corp.kuaishou.com/@babel%2fcompat-data/-/compat-data-7.20.1.tgz", + "integrity": "sha512-EWZ4mE2diW3QALKvDMiXnbZpRvlj+nayZ112nK93SnhqOtpdsbVD4W+2tEoT3YNBAG9RBR0ISY758ZkOgsn6pQ==", "license": "MIT", "engines": { "node": ">=6.9.0" @@ -54,6 +69,8 @@ }, "node_modules/@babel/core": { "version": "7.20.2", + "resolved": "https://npm.corp.kuaishou.com/@babel%2fcore/-/core-7.20.2.tgz", + "integrity": "sha512-w7DbG8DtMrJcFOi4VrLm+8QM4az8Mo+PuLBKLp2zrYRCow8W/f9xiXm5sN53C8HksCyDQwCKha9JiDoIyPjT2g==", "license": "MIT", "dependencies": { "@ampproject/remapping": "^2.1.0", @@ -82,6 +99,8 @@ }, "node_modules/@babel/core/node_modules/debug": { "version": "4.3.4", + "resolved": "https://npm.corp.kuaishou.com/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "license": "MIT", "dependencies": { "ms": "2.1.2" @@ -97,10 +116,14 @@ }, "node_modules/@babel/core/node_modules/ms": { "version": "2.1.2", + "resolved": "https://npm.corp.kuaishou.com/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "license": "MIT" }, "node_modules/@babel/core/node_modules/semver": { "version": "6.3.0", + "resolved": "https://npm.corp.kuaishou.com/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "license": "ISC", "bin": { "semver": "bin/semver.js" @@ -108,6 +131,8 @@ }, "node_modules/@babel/generator": { "version": "7.20.3", + "resolved": "https://npm.corp.kuaishou.com/@babel%2fgenerator/-/generator-7.20.3.tgz", + "integrity": "sha512-Wl5ilw2UD1+ZYprHVprxHZJCFeBWlzZYOovE4SDYLZnqCOD11j+0QzNeEWKLLTWM7nixrZEh7vNIyb76MyJg3A==", "license": "MIT", "dependencies": { "@babel/types": "^7.20.2", @@ -120,6 +145,8 @@ }, "node_modules/@babel/helper-compilation-targets": { "version": "7.20.0", + "resolved": "https://npm.corp.kuaishou.com/@babel%2fhelper-compilation-targets/-/helper-compilation-targets-7.20.0.tgz", + "integrity": "sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==", "license": "MIT", "dependencies": { "@babel/compat-data": "^7.20.0", @@ -136,6 +163,8 @@ }, "node_modules/@babel/helper-compilation-targets/node_modules/semver": { "version": "6.3.0", + "resolved": "https://npm.corp.kuaishou.com/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "license": "ISC", "bin": { "semver": "bin/semver.js" @@ -143,6 +172,8 @@ }, "node_modules/@babel/helper-environment-visitor": { "version": "7.18.9", + "resolved": "https://npm.corp.kuaishou.com/@babel%2fhelper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz", + "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==", "license": "MIT", "engines": { "node": ">=6.9.0" @@ -150,6 +181,8 @@ }, "node_modules/@babel/helper-function-name": { "version": "7.19.0", + "resolved": "https://npm.corp.kuaishou.com/@babel%2fhelper-function-name/-/helper-function-name-7.19.0.tgz", + "integrity": "sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==", "license": "MIT", "dependencies": { "@babel/template": "^7.18.10", @@ -161,6 +194,8 @@ }, "node_modules/@babel/helper-hoist-variables": { "version": "7.18.6", + "resolved": "https://npm.corp.kuaishou.com/@babel%2fhelper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", + "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", "license": "MIT", "dependencies": { "@babel/types": "^7.18.6" @@ -171,6 +206,8 @@ }, "node_modules/@babel/helper-module-imports": { "version": "7.18.6", + "resolved": "https://npm.corp.kuaishou.com/@babel%2fhelper-module-imports/-/helper-module-imports-7.18.6.tgz", + "integrity": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==", "license": "MIT", "dependencies": { "@babel/types": "^7.18.6" @@ -181,6 +218,8 @@ }, "node_modules/@babel/helper-module-transforms": { "version": "7.20.2", + "resolved": "https://npm.corp.kuaishou.com/@babel%2fhelper-module-transforms/-/helper-module-transforms-7.20.2.tgz", + "integrity": "sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA==", "license": "MIT", "dependencies": { "@babel/helper-environment-visitor": "^7.18.9", @@ -198,6 +237,8 @@ }, "node_modules/@babel/helper-plugin-utils": { "version": "7.20.2", + "resolved": "https://npm.corp.kuaishou.com/@babel%2fhelper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", "license": "MIT", "engines": { "node": ">=6.9.0" @@ -205,6 +246,8 @@ }, "node_modules/@babel/helper-simple-access": { "version": "7.20.2", + "resolved": "https://npm.corp.kuaishou.com/@babel%2fhelper-simple-access/-/helper-simple-access-7.20.2.tgz", + "integrity": "sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==", "license": "MIT", "dependencies": { "@babel/types": "^7.20.2" @@ -215,6 +258,8 @@ }, "node_modules/@babel/helper-split-export-declaration": { "version": "7.18.6", + "resolved": "https://npm.corp.kuaishou.com/@babel%2fhelper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", + "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", "license": "MIT", "dependencies": { "@babel/types": "^7.18.6" @@ -225,6 +270,8 @@ }, "node_modules/@babel/helper-string-parser": { "version": "7.19.4", + "resolved": "https://npm.corp.kuaishou.com/@babel%2fhelper-string-parser/-/helper-string-parser-7.19.4.tgz", + "integrity": "sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==", "license": "MIT", "engines": { "node": ">=6.9.0" @@ -232,6 +279,8 @@ }, "node_modules/@babel/helper-validator-identifier": { "version": "7.19.1", + "resolved": "https://npm.corp.kuaishou.com/@babel%2fhelper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", + "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==", "license": "MIT", "engines": { "node": ">=6.9.0" @@ -239,6 +288,8 @@ }, "node_modules/@babel/helper-validator-option": { "version": "7.18.6", + "resolved": "https://npm.corp.kuaishou.com/@babel%2fhelper-validator-option/-/helper-validator-option-7.18.6.tgz", + "integrity": "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==", "license": "MIT", "engines": { "node": ">=6.9.0" @@ -246,6 +297,8 @@ }, "node_modules/@babel/helpers": { "version": "7.20.1", + "resolved": "https://npm.corp.kuaishou.com/@babel%2fhelpers/-/helpers-7.20.1.tgz", + "integrity": "sha512-J77mUVaDTUJFZ5BpP6mMn6OIl3rEWymk2ZxDBQJUG3P+PbmyMcF3bYWvz0ma69Af1oobDqT/iAsvzhB58xhQUg==", "license": "MIT", "dependencies": { "@babel/template": "^7.18.10", @@ -258,6 +311,8 @@ }, "node_modules/@babel/highlight": { "version": "7.18.6", + "resolved": "https://npm.corp.kuaishou.com/@babel%2fhighlight/-/highlight-7.18.6.tgz", + "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", "license": "MIT", "dependencies": { "@babel/helper-validator-identifier": "^7.18.6", @@ -270,6 +325,8 @@ }, "node_modules/@babel/highlight/node_modules/ansi-styles": { "version": "3.2.1", + "resolved": "https://npm.corp.kuaishou.com/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "license": "MIT", "dependencies": { "color-convert": "^1.9.0" @@ -280,6 +337,8 @@ }, "node_modules/@babel/highlight/node_modules/chalk": { "version": "2.4.2", + "resolved": "https://npm.corp.kuaishou.com/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "license": "MIT", "dependencies": { "ansi-styles": "^3.2.1", @@ -292,6 +351,8 @@ }, "node_modules/@babel/highlight/node_modules/color-convert": { "version": "1.9.3", + "resolved": "https://npm.corp.kuaishou.com/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha1-u3GFBpDh8TZWfeYp0tVHHe2kweg=", "license": "MIT", "dependencies": { "color-name": "1.1.3" @@ -299,10 +360,14 @@ }, "node_modules/@babel/highlight/node_modules/color-name": { "version": "1.1.3", + "resolved": "https://npm.corp.kuaishou.com/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", "license": "MIT" }, "node_modules/@babel/highlight/node_modules/has-flag": { "version": "3.0.0", + "resolved": "https://npm.corp.kuaishou.com/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", "license": "MIT", "engines": { "node": ">=4" @@ -310,6 +375,8 @@ }, "node_modules/@babel/highlight/node_modules/supports-color": { "version": "5.5.0", + "resolved": "https://npm.corp.kuaishou.com/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha1-4uaaRKyHcveKHsCzW2id9lMO/I8=", "license": "MIT", "dependencies": { "has-flag": "^3.0.0" @@ -320,6 +387,8 @@ }, "node_modules/@babel/parser": { "version": "7.20.3", + "resolved": "https://npm.corp.kuaishou.com/@babel%2fparser/-/parser-7.20.3.tgz", + "integrity": "sha512-OP/s5a94frIPXwjzEcv5S/tpQfc6XhxYUnmWpgdqMWGgYCuErA3SzozaRAMQgSZWKeTJxht9aWAkUY+0UzvOFg==", "license": "MIT", "bin": { "parser": "bin/babel-parser.js" @@ -330,6 +399,8 @@ }, "node_modules/@babel/plugin-syntax-jsx": { "version": "7.18.6", + "resolved": "https://npm.corp.kuaishou.com/@babel%2fplugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz", + "integrity": "sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==", "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6" @@ -343,6 +414,8 @@ }, "node_modules/@babel/runtime": { "version": "7.20.1", + "resolved": "https://npm.corp.kuaishou.com/@babel%2fruntime/-/runtime-7.20.1.tgz", + "integrity": "sha512-mrzLkl6U9YLF8qpqI7TB82PESyEGjm/0Ly91jG575eVxMMlb8fYfOXFZIJ8XfLrJZQbm7dlKry2bJmXBUEkdFg==", "license": "MIT", "dependencies": { "regenerator-runtime": "^0.13.10" @@ -351,8 +424,19 @@ "node": ">=6.9.0" } }, + "node_modules/@babel/standalone": { + "version": "7.20.4", + "resolved": "https://npm.corp.kuaishou.com/@babel%2fstandalone/-/standalone-7.20.4.tgz", + "integrity": "sha512-27bv4h47jbaFZ7+e7gT1VEo9PNL1ynxqUX6/BERLz1qxm/5gzpbcHX+47VnSeYHyEyGZkRznpSOd8zPBhiz6tw==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/@babel/template": { "version": "7.18.10", + "resolved": "https://npm.corp.kuaishou.com/@babel%2ftemplate/-/template-7.18.10.tgz", + "integrity": "sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==", "license": "MIT", "dependencies": { "@babel/code-frame": "^7.18.6", @@ -365,6 +449,8 @@ }, "node_modules/@babel/traverse": { "version": "7.20.1", + "resolved": "https://npm.corp.kuaishou.com/@babel%2ftraverse/-/traverse-7.20.1.tgz", + "integrity": "sha512-d3tN8fkVJwFLkHkBN479SOsw4DMZnz8cdbL/gvuDuzy3TS6Nfw80HuQqhw1pITbIruHyh7d1fMA47kWzmcUEGA==", "license": "MIT", "dependencies": { "@babel/code-frame": "^7.18.6", @@ -384,6 +470,8 @@ }, "node_modules/@babel/traverse/node_modules/debug": { "version": "4.3.4", + "resolved": "https://npm.corp.kuaishou.com/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "license": "MIT", "dependencies": { "ms": "2.1.2" @@ -399,10 +487,14 @@ }, "node_modules/@babel/traverse/node_modules/ms": { "version": "2.1.2", + "resolved": "https://npm.corp.kuaishou.com/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "license": "MIT" }, "node_modules/@babel/types": { "version": "7.20.2", + "resolved": "https://npm.corp.kuaishou.com/@babel%2ftypes/-/types-7.20.2.tgz", + "integrity": "sha512-FnnvsNWgZCr232sqtXggapvlkk/tuwR/qhGzcmxI0GXLCjmPYQPzio2FbdlWuY6y1sHFfQKk+rRbUZ9VStQMog==", "license": "MIT", "dependencies": { "@babel/helper-string-parser": "^7.19.4", @@ -413,8 +505,34 @@ "node": ">=6.9.0" } }, + "node_modules/@emmetio/abbreviation": { + "version": "2.2.3", + "resolved": "https://npm.corp.kuaishou.com/@emmetio%2fabbreviation/-/abbreviation-2.2.3.tgz", + "integrity": "sha512-87pltuCPt99aL+y9xS6GPZ+Wmmyhll2WXH73gG/xpGcQ84DRnptBsI2r0BeIQ0EB/SQTOe2ANPqFqj3Rj5FOGA==", + "license": "MIT", + "dependencies": { + "@emmetio/scanner": "^1.0.0" + } + }, + "node_modules/@emmetio/css-abbreviation": { + "version": "2.1.4", + "resolved": "https://npm.corp.kuaishou.com/@emmetio%2fcss-abbreviation/-/css-abbreviation-2.1.4.tgz", + "integrity": "sha1-kDYuihEizjt29sMVeQfTAYL1P1Q=", + "license": "MIT", + "dependencies": { + "@emmetio/scanner": "^1.0.0" + } + }, + "node_modules/@emmetio/scanner": { + "version": "1.0.0", + "resolved": "https://npm.corp.kuaishou.com/@emmetio%2fscanner/-/scanner-1.0.0.tgz", + "integrity": "sha1-Blsq9iM/50dNRII+PeuJckr0K18=", + "license": "MIT" + }, "node_modules/@jridgewell/gen-mapping": { "version": "0.3.2", + "resolved": "https://npm.corp.kuaishou.com/@jridgewell%2fgen-mapping/-/gen-mapping-0.3.2.tgz", + "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", "license": "MIT", "dependencies": { "@jridgewell/set-array": "^1.0.1", @@ -427,6 +545,8 @@ }, "node_modules/@jridgewell/resolve-uri": { "version": "3.1.0", + "resolved": "https://npm.corp.kuaishou.com/@jridgewell%2fresolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", "license": "MIT", "engines": { "node": ">=6.0.0" @@ -434,6 +554,8 @@ }, "node_modules/@jridgewell/set-array": { "version": "1.1.2", + "resolved": "https://npm.corp.kuaishou.com/@jridgewell%2fset-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", "license": "MIT", "engines": { "node": ">=6.0.0" @@ -441,6 +563,8 @@ }, "node_modules/@jridgewell/source-map": { "version": "0.3.2", + "resolved": "https://npm.corp.kuaishou.com/@jridgewell%2fsource-map/-/source-map-0.3.2.tgz", + "integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==", "license": "MIT", "dependencies": { "@jridgewell/gen-mapping": "^0.3.0", @@ -449,10 +573,14 @@ }, "node_modules/@jridgewell/sourcemap-codec": { "version": "1.4.14", + "resolved": "https://npm.corp.kuaishou.com/@jridgewell%2fsourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", "license": "MIT" }, "node_modules/@jridgewell/trace-mapping": { "version": "0.3.17", + "resolved": "https://npm.corp.kuaishou.com/@jridgewell%2ftrace-mapping/-/trace-mapping-0.3.17.tgz", + "integrity": "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==", "license": "MIT", "dependencies": { "@jridgewell/resolve-uri": "3.1.0", @@ -461,14 +589,20 @@ }, "node_modules/@leancloud/adapter-types": { "version": "5.0.0", + "resolved": "https://npm.corp.kuaishou.com/@leancloud%2fadapter-types/-/adapter-types-5.0.0.tgz", + "integrity": "sha1-OP66tSMu/ucHRMCdqgT/BT6+9w0=", "license": "MIT" }, "node_modules/@leancloud/adapter-utils": { "version": "1.2.2", + "resolved": "https://npm.corp.kuaishou.com/@leancloud%2fadapter-utils/-/adapter-utils-1.2.2.tgz", + "integrity": "sha1-5+V7ai1+qUmqmInzPeyVypRBal0=", "license": "MIT" }, "node_modules/@leancloud/adapters-superagent": { "version": "1.4.3", + "resolved": "https://npm.corp.kuaishou.com/@leancloud%2fadapters-superagent/-/adapters-superagent-1.4.3.tgz", + "integrity": "sha512-zWfYEFUXahcZH+RgaRCgf/YCWdPr0svztXdLazrn22pCStGEu0qdt2rUV9dqiw9gMh3zdkHUt6ZxlmxQyO7uXw==", "license": "MIT", "dependencies": { "@leancloud/adapter-types": "^5.0.0", @@ -479,6 +613,8 @@ }, "node_modules/@leancloud/adapters-superagent/node_modules/debug": { "version": "4.3.4", + "resolved": "https://npm.corp.kuaishou.com/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "license": "MIT", "dependencies": { "ms": "2.1.2" @@ -494,6 +630,8 @@ }, "node_modules/@leancloud/adapters-superagent/node_modules/form-data": { "version": "3.0.1", + "resolved": "https://npm.corp.kuaishou.com/form-data/-/form-data-3.0.1.tgz", + "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", "license": "MIT", "dependencies": { "asynckit": "^0.4.0", @@ -506,6 +644,8 @@ }, "node_modules/@leancloud/adapters-superagent/node_modules/mime": { "version": "2.6.0", + "resolved": "https://npm.corp.kuaishou.com/mime/-/mime-2.6.0.tgz", + "integrity": "sha1-oqaCqVzU0MsdYlfij4PafjWAA2c=", "license": "MIT", "bin": { "mime": "cli.js" @@ -516,10 +656,14 @@ }, "node_modules/@leancloud/adapters-superagent/node_modules/ms": { "version": "2.1.2", + "resolved": "https://npm.corp.kuaishou.com/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "license": "MIT" }, "node_modules/@leancloud/adapters-superagent/node_modules/superagent": { "version": "5.3.1", + "resolved": "https://npm.corp.kuaishou.com/superagent/-/superagent-5.3.1.tgz", + "integrity": "sha512-wjJ/MoTid2/RuGCOFtlacyGNxN9QLMgcpYLDQlWFIhhdJ93kNscFonGvrpAHSCVjRVj++DGCglocF7Aej1KHvQ==", "license": "MIT", "dependencies": { "component-emitter": "^1.3.0", @@ -540,6 +684,8 @@ }, "node_modules/@leancloud/platform-adapters-browser": { "version": "1.5.3", + "resolved": "https://npm.corp.kuaishou.com/@leancloud%2fplatform-adapters-browser/-/platform-adapters-browser-1.5.3.tgz", + "integrity": "sha512-60atgNek/mdOEMyawYfCClllezS4grO8JY3a83zv2ZDJ0h58cLobsNK8FSkQHn9q8zLbCpeT0drB426g/pEhTw==", "license": "MIT", "dependencies": { "@leancloud/adapter-types": "^5.0.0", @@ -548,6 +694,8 @@ }, "node_modules/@leancloud/platform-adapters-node": { "version": "1.5.3", + "resolved": "https://npm.corp.kuaishou.com/@leancloud%2fplatform-adapters-node/-/platform-adapters-node-1.5.3.tgz", + "integrity": "sha512-IHsNTfoDVn1P+/jAwGBn9b6AL4urWVMXOivQe9R+E3l6xFVov/YhCMQzsFllmwzQFoqoHqPb7PkB+6nTKJSKSg==", "license": "MIT", "dependencies": { "@leancloud/adapter-types": "^5.0.0", @@ -559,6 +707,8 @@ }, "node_modules/@leancloud/platform-adapters-node/node_modules/@types/ws": { "version": "7.4.7", + "resolved": "https://npm.corp.kuaishou.com/@types%2fws/-/ws-7.4.7.tgz", + "integrity": "sha512-JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww==", "license": "MIT", "dependencies": { "@types/node": "*" @@ -566,6 +716,8 @@ }, "node_modules/@leancloud/platform-adapters-node/node_modules/ws": { "version": "5.2.3", + "resolved": "https://npm.corp.kuaishou.com/ws/-/ws-5.2.3.tgz", + "integrity": "sha512-jZArVERrMsKUatIdnLzqvcfydI85dvd/Fp1u/VOpfdDWQ4c9qWXe+VIeAbQ5FrDwciAkr+lzofXLz3Kuf26AOA==", "license": "MIT", "dependencies": { "async-limiter": "~1.0.0" @@ -573,6 +725,8 @@ }, "node_modules/@leancloud/platform-adapters-weapp": { "version": "1.6.2", + "resolved": "https://npm.corp.kuaishou.com/@leancloud%2fplatform-adapters-weapp/-/platform-adapters-weapp-1.6.2.tgz", + "integrity": "sha512-xMe8r3w0G/vOKy/Wnc9SZeb+cU/RzHkTK0s9aVgGS01wxOBAVlgbUEC8K67D1IeI15LxODL9e6wXXPgleR58FQ==", "license": "MIT", "dependencies": { "@leancloud/adapter-types": "^5.0.0", @@ -583,10 +737,14 @@ }, "node_modules/@leichtgewicht/ip-codec": { "version": "2.0.4", + "resolved": "https://npm.corp.kuaishou.com/@leichtgewicht%2fip-codec/-/ip-codec-2.0.4.tgz", + "integrity": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==", "license": "MIT" }, "node_modules/@mdit-vue/plugin-component": { "version": "0.10.0", + "resolved": "https://npm.corp.kuaishou.com/@mdit-vue%2fplugin-component/-/plugin-component-0.10.0.tgz", + "integrity": "sha512-cfxmPVcp6880TRUgpT3eUjem1gCkg3vsBHOcjOoiD2gAu3hWg48d3woz5+F9WVrAhv8P6wpDYBzFqt29D6D4MQ==", "license": "MIT", "dependencies": { "@types/markdown-it": "^12.2.3", @@ -595,6 +753,8 @@ }, "node_modules/@mdit-vue/plugin-frontmatter": { "version": "0.10.0", + "resolved": "https://npm.corp.kuaishou.com/@mdit-vue%2fplugin-frontmatter/-/plugin-frontmatter-0.10.0.tgz", + "integrity": "sha512-rJa4QM04YKRH9Edpr07BZvOjzOH2BwkPkalIa8YFIsZkCXLmrPpLsQteXbRLTkLGHLXnniW4V4tn5Y7bf7J74g==", "license": "MIT", "dependencies": { "@mdit-vue/types": "0.10.0", @@ -605,6 +765,8 @@ }, "node_modules/@mdit-vue/plugin-headers": { "version": "0.10.0", + "resolved": "https://npm.corp.kuaishou.com/@mdit-vue%2fplugin-headers/-/plugin-headers-0.10.0.tgz", + "integrity": "sha512-DPrQyv83jVxX3FwmCnemVeBsSdtH4Hz+geDMwbzATtaqzaYDDpuAxoeiLGpTg41EpLe2SPDk94N3OOh0cdV0Lw==", "license": "MIT", "dependencies": { "@mdit-vue/shared": "0.10.0", @@ -615,6 +777,8 @@ }, "node_modules/@mdit-vue/plugin-sfc": { "version": "0.10.0", + "resolved": "https://npm.corp.kuaishou.com/@mdit-vue%2fplugin-sfc/-/plugin-sfc-0.10.0.tgz", + "integrity": "sha512-MoKnA8rApIyNeiIXbEUbQ+LAYr51YOWnNzJnum/ttX7kHmfh0+iMDAM1MnvmgVZWqhAzwdkEFOPTb9EVUI1dng==", "license": "MIT", "dependencies": { "@mdit-vue/types": "0.10.0", @@ -624,6 +788,8 @@ }, "node_modules/@mdit-vue/plugin-title": { "version": "0.10.0", + "resolved": "https://npm.corp.kuaishou.com/@mdit-vue%2fplugin-title/-/plugin-title-0.10.0.tgz", + "integrity": "sha512-odJ9vIazAHiomjCEEFwHNuPnmDtx/FGOYrf9xUfi3tjG9r/JZW+G++AABxvevTozwpGlpU+wkpJ7mTr+rNtBrw==", "license": "MIT", "dependencies": { "@mdit-vue/shared": "0.10.0", @@ -634,6 +800,8 @@ }, "node_modules/@mdit-vue/plugin-toc": { "version": "0.10.0", + "resolved": "https://npm.corp.kuaishou.com/@mdit-vue%2fplugin-toc/-/plugin-toc-0.10.0.tgz", + "integrity": "sha512-P9aNy4jtqfjI08wUYGT/HVd5x/IpTjgSnNdJ3lU52qAO5AeFsW3v4gt+NmW0lO8We0S2YDEONRHBuBN6r40y6A==", "license": "MIT", "dependencies": { "@mdit-vue/shared": "0.10.0", @@ -644,6 +812,8 @@ }, "node_modules/@mdit-vue/shared": { "version": "0.10.0", + "resolved": "https://npm.corp.kuaishou.com/@mdit-vue%2fshared/-/shared-0.10.0.tgz", + "integrity": "sha512-rUyu0NVNbaEg4DUiQenh/fam1MLdkItdzEVScN7vP0UzDWOwmGaKwkhlMmkSTW80H63ZlKst0fPe9LaGHImSZg==", "license": "MIT", "dependencies": { "@mdit-vue/types": "0.10.0", @@ -653,10 +823,14 @@ }, "node_modules/@mdit-vue/types": { "version": "0.10.0", + "resolved": "https://npm.corp.kuaishou.com/@mdit-vue%2ftypes/-/types-0.10.0.tgz", + "integrity": "sha512-ROz5zVKt3COpuWUYFnpJh5kIXit9SQeMtimGBlwKJL1xEBNPG3QKD3VZzez5Ng/dBCApianCQhNVZGCza82Myw==", "license": "MIT" }, "node_modules/@nodelib/fs.scandir": { "version": "2.1.5", + "resolved": "https://npm.corp.kuaishou.com/@nodelib%2ffs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha1-dhnC6yGyVIP20WdUi0z9WnSIw9U=", "license": "MIT", "dependencies": { "@nodelib/fs.stat": "2.0.5", @@ -668,6 +842,8 @@ }, "node_modules/@nodelib/fs.stat": { "version": "2.0.5", + "resolved": "https://npm.corp.kuaishou.com/@nodelib%2ffs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha1-W9Jir5Tp0lvR5xsF3u1Eh2oiLos=", "license": "MIT", "engines": { "node": ">= 8" @@ -675,6 +851,8 @@ }, "node_modules/@nodelib/fs.walk": { "version": "1.2.8", + "resolved": "https://npm.corp.kuaishou.com/@nodelib%2ffs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha1-6Vc36LtnRt3t9pxVaVNJTxlv5po=", "license": "MIT", "dependencies": { "@nodelib/fs.scandir": "2.1.5", @@ -684,8 +862,66 @@ "node": ">= 8" } }, + "node_modules/@type-challenges/utils": { + "version": "0.1.1", + "resolved": "https://npm.corp.kuaishou.com/@type-challenges%2futils/-/utils-0.1.1.tgz", + "integrity": "sha1-GM4on7hMrxwT7uIRIm2/K8YZXtM=", + "license": "MIT" + }, + "node_modules/@types/babel__core": { + "version": "7.1.20", + "resolved": "https://npm.corp.kuaishou.com/@types%2fbabel__core/-/babel__core-7.1.20.tgz", + "integrity": "sha512-PVb6Bg2QuscZ30FvOU7z4guG6c926D9YRvOxEaelzndpMsvP+YM74Q/dAFASpg2l6+XLalxSGxcq/lrgYWZtyQ==", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.6.4", + "resolved": "https://npm.corp.kuaishou.com/@types%2fbabel__generator/-/babel__generator-7.6.4.tgz", + "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__standalone": { + "version": "7.1.4", + "resolved": "https://npm.corp.kuaishou.com/@types%2fbabel__standalone/-/babel__standalone-7.1.4.tgz", + "integrity": "sha512-HijIDmcNl3Wmo0guqjYkQvMzyRCM6zMCkYcdG8f+2X7mPBNa9ikSeaQlWs2Yg18KN1klOJzyupX5BPOf+7ahaw==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.1.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.1", + "resolved": "https://npm.corp.kuaishou.com/@types%2fbabel__template/-/babel__template-7.4.1.tgz", + "integrity": "sha1-PRpI/Z1sDt/Vby/1eNrtSPNsiWk=", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.18.2", + "resolved": "https://npm.corp.kuaishou.com/@types%2fbabel__traverse/-/babel__traverse-7.18.2.tgz", + "integrity": "sha512-FcFaxOr2V5KZCviw1TnutEMVUVsGt4D2hP1TAfXZAMKuHYW3xQhe3jTxNPWutgCJ3/X1c5yX8ZoGVEItxKbwBg==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.3.0" + } + }, "node_modules/@types/body-parser": { "version": "1.19.2", + "resolved": "https://npm.corp.kuaishou.com/@types%2fbody-parser/-/body-parser-1.19.2.tgz", + "integrity": "sha1-rqIFnii3ZYY5CBNHrE+rPeFm5vA=", "license": "MIT", "dependencies": { "@types/connect": "*", @@ -694,6 +930,8 @@ }, "node_modules/@types/bonjour": { "version": "3.5.10", + "resolved": "https://npm.corp.kuaishou.com/@types%2fbonjour/-/bonjour-3.5.10.tgz", + "integrity": "sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==", "license": "MIT", "dependencies": { "@types/node": "*" @@ -701,6 +939,8 @@ }, "node_modules/@types/connect": { "version": "3.4.35", + "resolved": "https://npm.corp.kuaishou.com/@types%2fconnect/-/connect-3.4.35.tgz", + "integrity": "sha1-X89q5EXkAh0fwiGaSHPMc6O7KtE=", "license": "MIT", "dependencies": { "@types/node": "*" @@ -708,6 +948,8 @@ }, "node_modules/@types/connect-history-api-fallback": { "version": "1.3.5", + "resolved": "https://npm.corp.kuaishou.com/@types%2fconnect-history-api-fallback/-/connect-history-api-fallback-1.3.5.tgz", + "integrity": "sha1-0feooJ0O1aV67lrpwYq5uAMgXa4=", "license": "MIT", "dependencies": { "@types/express-serve-static-core": "*", @@ -716,10 +958,14 @@ }, "node_modules/@types/cookiejar": { "version": "2.1.2", + "resolved": "https://npm.corp.kuaishou.com/@types%2fcookiejar/-/cookiejar-2.1.2.tgz", + "integrity": "sha512-t73xJJrvdTjXrn4jLS9VSGRbz0nUY3cl2DMGDU48lKl+HR9dbbjW2A9r3g40VA++mQpy6uuHg33gy7du2BKpog==", "license": "MIT" }, "node_modules/@types/debug": { "version": "4.1.7", + "resolved": "https://npm.corp.kuaishou.com/@types%2fdebug/-/debug-4.1.7.tgz", + "integrity": "sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg==", "license": "MIT", "dependencies": { "@types/ms": "*" @@ -727,6 +973,8 @@ }, "node_modules/@types/eslint": { "version": "8.4.10", + "resolved": "https://npm.corp.kuaishou.com/@types%2feslint/-/eslint-8.4.10.tgz", + "integrity": "sha512-Sl/HOqN8NKPmhWo2VBEPm0nvHnu2LL3v9vKo8MEq0EtbJ4eVzGPl41VNPvn5E1i5poMk4/XD8UriLHpJvEP/Nw==", "license": "MIT", "dependencies": { "@types/estree": "*", @@ -735,6 +983,8 @@ }, "node_modules/@types/eslint-scope": { "version": "3.7.4", + "resolved": "https://npm.corp.kuaishou.com/@types%2feslint-scope/-/eslint-scope-3.7.4.tgz", + "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", "license": "MIT", "dependencies": { "@types/eslint": "*", @@ -743,10 +993,14 @@ }, "node_modules/@types/estree": { "version": "1.0.0", + "resolved": "https://npm.corp.kuaishou.com/@types%2festree/-/estree-1.0.0.tgz", + "integrity": "sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==", "license": "MIT" }, "node_modules/@types/express": { "version": "4.17.14", + "resolved": "https://npm.corp.kuaishou.com/@types%2fexpress/-/express-4.17.14.tgz", + "integrity": "sha512-TEbt+vaPFQ+xpxFLFssxUDXj5cWCxZJjIcB7Yg0k0GMHGtgtQgpvx/MUQUeAkNbA9AAGrwkAsoeItdTgS7FMyg==", "license": "MIT", "dependencies": { "@types/body-parser": "*", @@ -757,6 +1011,8 @@ }, "node_modules/@types/express-serve-static-core": { "version": "4.17.31", + "resolved": "https://npm.corp.kuaishou.com/@types%2fexpress-serve-static-core/-/express-serve-static-core-4.17.31.tgz", + "integrity": "sha512-DxMhY+NAsTwMMFHBTtJFNp5qiHKJ7TeqOo23zVEM9alT1Ml27Q3xcTH0xwxn7Q0BbMcVEJOs/7aQtUWupUQN3Q==", "license": "MIT", "dependencies": { "@types/node": "*", @@ -766,6 +1022,8 @@ }, "node_modules/@types/fs-extra": { "version": "9.0.13", + "resolved": "https://npm.corp.kuaishou.com/@types%2ffs-extra/-/fs-extra-9.0.13.tgz", + "integrity": "sha1-dZT7rgT+fxkYzos9IT90/0SsH0U=", "license": "MIT", "dependencies": { "@types/node": "*" @@ -773,14 +1031,26 @@ }, "node_modules/@types/hash-sum": { "version": "1.0.0", + "resolved": "https://npm.corp.kuaishou.com/@types%2fhash-sum/-/hash-sum-1.0.0.tgz", + "integrity": "sha1-g49OhieIfUKxYtBfPZbKY2wrxQQ=", + "license": "MIT" + }, + "node_modules/@types/highlight.js": { + "version": "9.12.4", + "resolved": "https://npm.corp.kuaishou.com/@types%2fhighlight.js/-/highlight.js-9.12.4.tgz", + "integrity": "sha1-jDSWvRtQzASu79aRFAqlcdTb+jQ=", "license": "MIT" }, "node_modules/@types/html-minifier-terser": { "version": "6.1.0", + "resolved": "https://npm.corp.kuaishou.com/@types%2fhtml-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==", "license": "MIT" }, "node_modules/@types/http-proxy": { "version": "1.17.9", + "resolved": "https://npm.corp.kuaishou.com/@types%2fhttp-proxy/-/http-proxy-1.17.9.tgz", + "integrity": "sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw==", "license": "MIT", "dependencies": { "@types/node": "*" @@ -788,22 +1058,39 @@ }, "node_modules/@types/json-schema": { "version": "7.0.11", + "resolved": "https://npm.corp.kuaishou.com/@types%2fjson-schema/-/json-schema-7.0.11.tgz", + "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==", "license": "MIT" }, "node_modules/@types/linkify-it": { "version": "3.0.2", + "resolved": "https://npm.corp.kuaishou.com/@types%2flinkify-it/-/linkify-it-3.0.2.tgz", + "integrity": "sha1-/SzS7bqn6qx+fzwXSLUqGRQ4Rsk=", "license": "MIT" }, "node_modules/@types/markdown-it": { "version": "12.2.3", + "resolved": "https://npm.corp.kuaishou.com/@types%2fmarkdown-it/-/markdown-it-12.2.3.tgz", + "integrity": "sha1-DW9uXkE/jaqiZSKQRZe+PWzZO1E=", "license": "MIT", "dependencies": { "@types/linkify-it": "*", "@types/mdurl": "*" } }, + "node_modules/@types/markdown-it-container": { + "version": "2.0.5", + "resolved": "https://npm.corp.kuaishou.com/@types%2fmarkdown-it-container/-/markdown-it-container-2.0.5.tgz", + "integrity": "sha512-8v5jIC5gcCUv+JcD0DExwNBkoKC0kLB4acensF0NoNlTIcXmQxF3RDjzAdIW82sXSoR+n772ePguxIWlq2ELvA==", + "license": "MIT", + "dependencies": { + "@types/markdown-it": "*" + } + }, "node_modules/@types/markdown-it-emoji": { "version": "2.0.2", + "resolved": "https://npm.corp.kuaishou.com/@types%2fmarkdown-it-emoji/-/markdown-it-emoji-2.0.2.tgz", + "integrity": "sha1-8SqX3ydY84tLOPJ3tGh4BFn6/xQ=", "license": "MIT", "dependencies": { "@types/markdown-it": "*" @@ -811,38 +1098,56 @@ }, "node_modules/@types/mdurl": { "version": "1.0.2", + "resolved": "https://npm.corp.kuaishou.com/@types%2fmdurl/-/mdurl-1.0.2.tgz", + "integrity": "sha1-4s6dg6YTus8oTHvn1JGUXjnh+Ok=", "license": "MIT" }, "node_modules/@types/mime": { "version": "3.0.1", + "resolved": "https://npm.corp.kuaishou.com/@types%2fmime/-/mime-3.0.1.tgz", + "integrity": "sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==", "license": "MIT" }, "node_modules/@types/ms": { "version": "0.7.31", + "resolved": "https://npm.corp.kuaishou.com/@types%2fms/-/ms-0.7.31.tgz", + "integrity": "sha1-MbfKZAcSij0rvCf+LSGzRTl/YZc=", "license": "MIT" }, "node_modules/@types/node": { "version": "18.11.9", + "resolved": "https://npm.corp.kuaishou.com/@types%2fnode/-/node-18.11.9.tgz", + "integrity": "sha512-CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg==", "license": "MIT" }, "node_modules/@types/parse-json": { "version": "4.0.0", + "resolved": "https://npm.corp.kuaishou.com/@types%2fparse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha1-L4u0QUNNFjs1+4/9zNcTiSf/uMA=", "license": "MIT" }, "node_modules/@types/qs": { "version": "6.9.7", + "resolved": "https://npm.corp.kuaishou.com/@types%2fqs/-/qs-6.9.7.tgz", + "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==", "license": "MIT" }, "node_modules/@types/range-parser": { "version": "1.2.4", + "resolved": "https://npm.corp.kuaishou.com/@types%2frange-parser/-/range-parser-1.2.4.tgz", + "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==", "license": "MIT" }, "node_modules/@types/retry": { "version": "0.12.0", + "resolved": "https://npm.corp.kuaishou.com/@types%2fretry/-/retry-0.12.0.tgz", + "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==", "license": "MIT" }, "node_modules/@types/serve-index": { "version": "1.9.1", + "resolved": "https://npm.corp.kuaishou.com/@types%2fserve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==", "license": "MIT", "dependencies": { "@types/express": "*" @@ -850,6 +1155,8 @@ }, "node_modules/@types/serve-static": { "version": "1.15.0", + "resolved": "https://npm.corp.kuaishou.com/@types%2fserve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-z5xyF6uh8CbjAu9760KDKsH2FcDxZ2tFCsA4HIMWE6IkiYMXfVoa+4f9KX+FN0ZLsaMw1WNG2ETLA6N+/YA+cg==", "license": "MIT", "dependencies": { "@types/mime": "*", @@ -858,29 +1165,123 @@ }, "node_modules/@types/sockjs": { "version": "0.3.33", + "resolved": "https://npm.corp.kuaishou.com/@types%2fsockjs/-/sockjs-0.3.33.tgz", + "integrity": "sha1-Vw06C5msmVNg4xNv1gRRE7G9I28=", "license": "MIT", "dependencies": { "@types/node": "*" } }, + "node_modules/@types/source-list-map": { + "version": "0.1.2", + "resolved": "https://npm.corp.kuaishou.com/@types%2fsource-list-map/-/source-list-map-0.1.2.tgz", + "integrity": "sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==", + "license": "MIT" + }, "node_modules/@types/superagent": { "version": "4.1.14", + "resolved": "https://npm.corp.kuaishou.com/@types%2fsuperagent/-/superagent-4.1.14.tgz", + "integrity": "sha512-iiXaOL2wSbnSY4qg0mFPWJHL9iwyEsoNYwaHF2w58/fsVAQJlj+KUfFAFZu+nzbz+b7dUprJEAc+O9vhHHhQTA==", "license": "MIT", "dependencies": { "@types/cookiejar": "*", "@types/node": "*" } }, + "node_modules/@types/tapable": { + "version": "1.0.8", + "resolved": "https://npm.corp.kuaishou.com/@types%2ftapable/-/tapable-1.0.8.tgz", + "integrity": "sha1-uUpDkchWZse3Mpn9OtedT6pDUxA=", + "license": "MIT" + }, + "node_modules/@types/uglify-js": { + "version": "3.17.1", + "resolved": "https://npm.corp.kuaishou.com/@types%2fuglify-js/-/uglify-js-3.17.1.tgz", + "integrity": "sha512-GkewRA4i5oXacU/n4MA9+bLgt5/L3F1mKrYvFGm7r2ouLXhRKjuWwo9XHNnbx6WF3vlGW21S3fCvgqxvxXXc5g==", + "license": "MIT", + "dependencies": { + "source-map": "^0.6.1" + } + }, "node_modules/@types/web-bluetooth": { "version": "0.0.16", + "resolved": "https://npm.corp.kuaishou.com/@types%2fweb-bluetooth/-/web-bluetooth-0.0.16.tgz", + "integrity": "sha512-oh8q2Zc32S6gd/j50GowEjKLoOVOwHP/bWVjKJInBwQqdOYMdPrf1oVlelTlyfFK3CKxL1uahMDAr+vy8T7yMQ==", "license": "MIT" }, + "node_modules/@types/webpack": { + "version": "4.41.33", + "resolved": "https://npm.corp.kuaishou.com/@types%2fwebpack/-/webpack-4.41.33.tgz", + "integrity": "sha512-PPajH64Ft2vWevkerISMtnZ8rTs4YmRbs+23c402J0INmxDKCrhZNvwZYtzx96gY2wAtXdrK1BS2fiC8MlLr3g==", + "license": "MIT", + "dependencies": { + "@types/node": "*", + "@types/tapable": "^1", + "@types/uglify-js": "*", + "@types/webpack-sources": "*", + "anymatch": "^3.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/@types/webpack-dev-server": { + "version": "3.11.6", + "resolved": "https://npm.corp.kuaishou.com/@types%2fwebpack-dev-server/-/webpack-dev-server-3.11.6.tgz", + "integrity": "sha1-2IiM/S8GMCA+E9PteDOk0RuKNNw=", + "license": "MIT", + "dependencies": { + "@types/connect-history-api-fallback": "*", + "@types/express": "*", + "@types/serve-static": "*", + "@types/webpack": "^4", + "http-proxy-middleware": "^1.0.0" + } + }, + "node_modules/@types/webpack-dev-server/node_modules/http-proxy-middleware": { + "version": "1.3.1", + "resolved": "https://npm.corp.kuaishou.com/http-proxy-middleware/-/http-proxy-middleware-1.3.1.tgz", + "integrity": "sha1-Q3ANbZ7st0Gb8IahKND3IF2etmU=", + "license": "MIT", + "dependencies": { + "@types/http-proxy": "^1.17.5", + "http-proxy": "^1.18.1", + "is-glob": "^4.0.1", + "is-plain-obj": "^3.0.0", + "micromatch": "^4.0.2" + }, + "engines": { + "node": ">=8.0.0" + } + }, "node_modules/@types/webpack-env": { "version": "1.18.0", + "resolved": "https://npm.corp.kuaishou.com/@types%2fwebpack-env/-/webpack-env-1.18.0.tgz", + "integrity": "sha512-56/MAlX5WMsPVbOg7tAxnYvNYMMWr/QJiIp6BxVSW3JJXUVzzOn64qW8TzQyMSqSUFM2+PVI4aUHcHOzIz/1tg==", "license": "MIT" }, + "node_modules/@types/webpack-sources": { + "version": "3.2.0", + "resolved": "https://npm.corp.kuaishou.com/@types%2fwebpack-sources/-/webpack-sources-3.2.0.tgz", + "integrity": "sha1-FtdZuglsKJA0smVT0t8b9FJI04s=", + "license": "MIT", + "dependencies": { + "@types/node": "*", + "@types/source-list-map": "*", + "source-map": "^0.7.3" + } + }, + "node_modules/@types/webpack-sources/node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://npm.corp.kuaishou.com/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "license": "BSD-3-Clause", + "engines": { + "node": ">= 8" + } + }, "node_modules/@types/ws": { "version": "8.5.3", + "resolved": "https://npm.corp.kuaishou.com/@types%2fws/-/ws-8.5.3.tgz", + "integrity": "sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==", "license": "MIT", "dependencies": { "@types/node": "*" @@ -888,14 +1289,20 @@ }, "node_modules/@vicons/fa": { "version": "0.12.0", + "resolved": "https://npm.corp.kuaishou.com/@vicons%2ffa/-/fa-0.12.0.tgz", + "integrity": "sha512-g2PIeJLsTHUjt6bK63LxqC0uYQB7iu+xViJOxvp1s8b9/akpXVPVWjDTTsP980/0KYyMMe4U7F/aUo7wY+MsXA==", "license": "CC BY 4.0" }, "node_modules/@vicons/tabler": { "version": "0.12.0", + "resolved": "https://npm.corp.kuaishou.com/@vicons%2ftabler/-/tabler-0.12.0.tgz", + "integrity": "sha512-3+wUFuxb7e8OzZ8Wryct1pzfA2vyoF4lwW98O9s27ZrfCGaJGNmqG+q8A7vQ92Mf+COCgxpK+rhNPTtTvaU6qw==", "license": "MIT" }, "node_modules/@vitejs/plugin-vue": { "version": "3.2.0", + "resolved": "https://npm.corp.kuaishou.com/@vitejs%2fplugin-vue/-/plugin-vue-3.2.0.tgz", + "integrity": "sha512-E0tnaL4fr+qkdCNxJ+Xd0yM31UwMkQje76fsDVBBUCoGOUPexu2VDUYHL8P4CwV+zMvWw6nlRw19OnRKmYAJpw==", "license": "MIT", "engines": { "node": "^14.18.0 || >=16.0.0" @@ -907,6 +1314,8 @@ }, "node_modules/@vue/compiler-core": { "version": "3.2.41", + "resolved": "https://npm.corp.kuaishou.com/@vue%2fcompiler-core/-/compiler-core-3.2.41.tgz", + "integrity": "sha512-oA4mH6SA78DT+96/nsi4p9DX97PHcNROxs51lYk7gb9Z4BPKQ3Mh+BLn6CQZBw857Iuhu28BfMSRHAlPvD4vlw==", "license": "MIT", "dependencies": { "@babel/parser": "^7.16.4", @@ -917,6 +1326,8 @@ }, "node_modules/@vue/compiler-dom": { "version": "3.2.41", + "resolved": "https://npm.corp.kuaishou.com/@vue%2fcompiler-dom/-/compiler-dom-3.2.41.tgz", + "integrity": "sha512-xe5TbbIsonjENxJsYRbDJvthzqxLNk+tb3d/c47zgREDa/PCp6/Y4gC/skM4H6PIuX5DAxm7fFJdbjjUH2QTMw==", "license": "MIT", "dependencies": { "@vue/compiler-core": "3.2.41", @@ -925,6 +1336,8 @@ }, "node_modules/@vue/compiler-sfc": { "version": "3.2.41", + "resolved": "https://npm.corp.kuaishou.com/@vue%2fcompiler-sfc/-/compiler-sfc-3.2.41.tgz", + "integrity": "sha512-+1P2m5kxOeaxVmJNXnBskAn3BenbTmbxBxWOtBq3mQTCokIreuMULFantBUclP0+KnzNCMOvcnKinqQZmiOF8w==", "license": "MIT", "dependencies": { "@babel/parser": "^7.16.4", @@ -941,6 +1354,8 @@ }, "node_modules/@vue/compiler-ssr": { "version": "3.2.41", + "resolved": "https://npm.corp.kuaishou.com/@vue%2fcompiler-ssr/-/compiler-ssr-3.2.41.tgz", + "integrity": "sha512-Y5wPiNIiaMz/sps8+DmhaKfDm1xgj6GrH99z4gq2LQenfVQcYXmHIOBcs5qPwl7jaW3SUQWjkAPKMfQemEQZwQ==", "license": "MIT", "dependencies": { "@vue/compiler-dom": "3.2.41", @@ -949,10 +1364,14 @@ }, "node_modules/@vue/devtools-api": { "version": "6.4.5", + "resolved": "https://npm.corp.kuaishou.com/@vue%2fdevtools-api/-/devtools-api-6.4.5.tgz", + "integrity": "sha512-JD5fcdIuFxU4fQyXUu3w2KpAJHzTVdN+p4iOX2lMWSHMOoQdMAcpFLZzm9Z/2nmsoZ1a96QEhZ26e50xLBsgOQ==", "license": "MIT" }, "node_modules/@vue/reactivity": { "version": "3.2.41", + "resolved": "https://npm.corp.kuaishou.com/@vue%2freactivity/-/reactivity-3.2.41.tgz", + "integrity": "sha512-9JvCnlj8uc5xRiQGZ28MKGjuCoPhhTwcoAdv3o31+cfGgonwdPNuvqAXLhlzu4zwqavFEG5tvaoINQEfxz+l6g==", "license": "MIT", "dependencies": { "@vue/shared": "3.2.41" @@ -960,6 +1379,8 @@ }, "node_modules/@vue/reactivity-transform": { "version": "3.2.41", + "resolved": "https://npm.corp.kuaishou.com/@vue%2freactivity-transform/-/reactivity-transform-3.2.41.tgz", + "integrity": "sha512-mK5+BNMsL4hHi+IR3Ft/ho6Za+L3FA5j8WvreJ7XzHrqkPq8jtF/SMo7tuc9gHjLDwKZX1nP1JQOKo9IEAn54A==", "license": "MIT", "dependencies": { "@babel/parser": "^7.16.4", @@ -971,6 +1392,8 @@ }, "node_modules/@vue/runtime-core": { "version": "3.2.41", + "resolved": "https://npm.corp.kuaishou.com/@vue%2fruntime-core/-/runtime-core-3.2.41.tgz", + "integrity": "sha512-0LBBRwqnI0p4FgIkO9q2aJBBTKDSjzhnxrxHYengkAF6dMOjeAIZFDADAlcf2h3GDALWnblbeprYYpItiulSVQ==", "license": "MIT", "dependencies": { "@vue/reactivity": "3.2.41", @@ -979,6 +1402,8 @@ }, "node_modules/@vue/runtime-dom": { "version": "3.2.41", + "resolved": "https://npm.corp.kuaishou.com/@vue%2fruntime-dom/-/runtime-dom-3.2.41.tgz", + "integrity": "sha512-U7zYuR1NVIP8BL6jmOqmapRAHovEFp7CSw4pR2FacqewXNGqZaRfHoNLQsqQvVQ8yuZNZtxSZy0FFyC70YXPpA==", "license": "MIT", "dependencies": { "@vue/runtime-core": "3.2.41", @@ -988,6 +1413,8 @@ }, "node_modules/@vue/server-renderer": { "version": "3.2.41", + "resolved": "https://npm.corp.kuaishou.com/@vue%2fserver-renderer/-/server-renderer-3.2.41.tgz", + "integrity": "sha512-7YHLkfJdTlsZTV0ae5sPwl9Gn/EGr2hrlbcS/8naXm2CDpnKUwC68i1wGlrYAfIgYWL7vUZwk2GkYLQH5CvFig==", "license": "MIT", "dependencies": { "@vue/compiler-ssr": "3.2.41", @@ -999,10 +1426,14 @@ }, "node_modules/@vue/shared": { "version": "3.2.41", + "resolved": "https://npm.corp.kuaishou.com/@vue%2fshared/-/shared-3.2.41.tgz", + "integrity": "sha512-W9mfWLHmJhkfAmV+7gDjcHeAWALQtgGT3JErxULl0oz6R6+3ug91I7IErs93eCFhPCZPHBs4QJS7YWEV7A3sxw==", "license": "MIT" }, "node_modules/@vuepress-reco/shared": { "version": "2.0.0-beta.41", + "resolved": "https://npm.corp.kuaishou.com/@vuepress-reco%2fshared/-/shared-2.0.0-beta.41.tgz", + "integrity": "sha512-MRNpPfcL4CluQd7MKxGPhm58VwFA+il4qOr8ttP7E/GQDr0hpFWhxjBH+GLV/A6wia4IvoMt4JyZ47ps8ITTzw==", "license": "MIT", "dependencies": { "@vuepress-reco/vuepress-plugin-page": "2.0.0-beta.41", @@ -1012,10 +1443,14 @@ }, "node_modules/@vuepress-reco/tailwindcss-config": { "version": "2.0.0-beta.41", + "resolved": "https://npm.corp.kuaishou.com/@vuepress-reco%2ftailwindcss-config/-/tailwindcss-config-2.0.0-beta.41.tgz", + "integrity": "sha512-qcvN2+4Rzg/8cwV7aTNOVkLztymOEGaqa0LIs0UODsxebR2EigSDTGtf6sOM95CKL9IsxoYqOdUi7qf8d5wD5A==", "license": "MIT" }, "node_modules/@vuepress-reco/vuepress-plugin-bulletin-popover": { "version": "2.0.0-beta.41", + "resolved": "https://npm.corp.kuaishou.com/@vuepress-reco%2fvuepress-plugin-bulletin-popover/-/vuepress-plugin-bulletin-popover-2.0.0-beta.41.tgz", + "integrity": "sha512-kj0g0iIfNp4a/YGJ7XS3ySHCHfmSWFcgdi+HfzFMpOWCVgdKUKDpYXTKJNT7n+F2zyn1tDGv9czOUc0NmUSfpQ==", "license": "MIT", "dependencies": { "@vuepress-reco/tailwindcss-config": "2.0.0-beta.41", @@ -1028,6 +1463,8 @@ }, "node_modules/@vuepress-reco/vuepress-plugin-code-copy": { "version": "2.0.0-beta.41", + "resolved": "https://npm.corp.kuaishou.com/@vuepress-reco%2fvuepress-plugin-code-copy/-/vuepress-plugin-code-copy-2.0.0-beta.41.tgz", + "integrity": "sha512-hTiVbTV5L6Ya/qZsvgji0yRczDYc11L3JW1mRT9spgJ3Th21nUaszol7WoX5bTEWnu/myYjLwqufeKTUTVYKEw==", "license": "MIT", "dependencies": { "@vuepress/client": "2.0.0-beta.51", @@ -1038,6 +1475,8 @@ }, "node_modules/@vuepress-reco/vuepress-plugin-comments": { "version": "2.0.0-beta.41", + "resolved": "https://npm.corp.kuaishou.com/@vuepress-reco%2fvuepress-plugin-comments/-/vuepress-plugin-comments-2.0.0-beta.41.tgz", + "integrity": "sha512-EabZjyrO0c1o+dAW/9/MiM3BUXXsJMPeFa+g4yagNcRmROxJxCSO8NW1sRZulWoXVNA3+uLcfzaFoGYI+ra+rg==", "license": "MIT", "dependencies": { "@vuepress-reco/tailwindcss-config": "2.0.0-beta.41", @@ -1053,6 +1492,8 @@ }, "node_modules/@vuepress-reco/vuepress-plugin-page": { "version": "2.0.0-beta.41", + "resolved": "https://npm.corp.kuaishou.com/@vuepress-reco%2fvuepress-plugin-page/-/vuepress-plugin-page-2.0.0-beta.41.tgz", + "integrity": "sha512-fQM9hSnveqm7OIKdWoEdk5yHbdE0XEcMApfzwKTZhck0bnx8QK6n42mnFs1HIb/frq9cxnKuJDMVhuF9ry+y+Q==", "license": "MIT", "dependencies": { "@vuepress-reco/shared": "2.0.0-beta.41", @@ -1065,6 +1506,8 @@ }, "node_modules/@vuepress-reco/vuepress-plugin-vue-preview": { "version": "2.0.0-beta.41", + "resolved": "https://npm.corp.kuaishou.com/@vuepress-reco%2fvuepress-plugin-vue-preview/-/vuepress-plugin-vue-preview-2.0.0-beta.41.tgz", + "integrity": "sha512-ihnzojiFIkS31rGZtdD26I8bNVYz6D8V0DfPk3oS+G7r0tYh8Q7ujGyTkHyWDbardexB5/huo+n+wIpETy3Wqw==", "license": "MIT", "dependencies": { "@babel/core": "^7.16.12", @@ -1082,6 +1525,8 @@ }, "node_modules/@vuepress/bundler-vite": { "version": "2.0.0-beta.51", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fbundler-vite/-/bundler-vite-2.0.0-beta.51.tgz", + "integrity": "sha512-HADQujwuj0KbONq6R0UGSiktMzG0iOFmI2OACgi7r5P4pHAEF06h333g0q4tSH6HQg6VuqelQrVgWwq/0puIfA==", "license": "MIT", "dependencies": { "@vitejs/plugin-vue": "^3.0.3", @@ -1100,6 +1545,8 @@ }, "node_modules/@vuepress/bundler-webpack": { "version": "2.0.0-beta.51", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fbundler-webpack/-/bundler-webpack-2.0.0-beta.51.tgz", + "integrity": "sha512-ell4t2sNiGxtSZGk0m6ygapmrte5RKGEubW0D7qskYvmmCbwvB/g/orIjIVfU2aZSVA1QbuPspQ/N0KMCIzxPg==", "license": "MIT", "dependencies": { "@types/express": "^4.17.13", @@ -1131,6 +1578,8 @@ }, "node_modules/@vuepress/cli": { "version": "2.0.0-beta.51", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fcli/-/cli-2.0.0-beta.51.tgz", + "integrity": "sha512-NcMNpsGxdlPgrHhIMW+hkRd9l+E+89M8IoN9SnBJFTgokKrUOwLm2BEQPVuucebj4ff94IorG1WQR9iah/qOgQ==", "license": "MIT", "dependencies": { "@vuepress/core": "2.0.0-beta.51", @@ -1147,6 +1596,8 @@ }, "node_modules/@vuepress/cli/node_modules/esbuild": { "version": "0.15.13", + "resolved": "https://npm.corp.kuaishou.com/esbuild/-/esbuild-0.15.13.tgz", + "integrity": "sha512-Cu3SC84oyzzhrK/YyN4iEVy2jZu5t2fz66HEOShHURcjSkOSAVL8C/gfUT+lDJxkVHpg8GZ10DD0rMHRPqMFaQ==", "hasInstallScript": true, "license": "MIT", "bin": { @@ -1182,6 +1633,8 @@ }, "node_modules/@vuepress/cli/node_modules/esbuild-darwin-64": { "version": "0.15.13", + "resolved": "https://npm.corp.kuaishou.com/esbuild-darwin-64/-/esbuild-darwin-64-0.15.13.tgz", + "integrity": "sha512-WAx7c2DaOS6CrRcoYCgXgkXDliLnFv3pQLV6GeW1YcGEZq2Gnl8s9Pg7ahValZkpOa0iE/ojRVQ87sbUhF1Cbg==", "cpu": [ "x64" ], @@ -1196,6 +1649,8 @@ }, "node_modules/@vuepress/client": { "version": "2.0.0-beta.51", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fclient/-/client-2.0.0-beta.51.tgz", + "integrity": "sha512-5iQV765kwR6/eIZPMlV5O34DUvHCMjF7zpr91x5i8BEAg7A0jfHvdrwNavAKWiQEU77f4dIBXtWy6nwX+lgmbw==", "license": "MIT", "dependencies": { "@vue/devtools-api": "^6.2.1", @@ -1206,6 +1661,8 @@ }, "node_modules/@vuepress/core": { "version": "2.0.0-beta.51", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fcore/-/core-2.0.0-beta.51.tgz", + "integrity": "sha512-j0KI6PBsf0doMZPXa1H4Vi88NSTrpsnSVhMgcr9gw81atgKl+I13SykHpWZRRkugTRCgL1IOpyY68cond58eeA==", "license": "MIT", "dependencies": { "@vuepress/client": "2.0.0-beta.51", @@ -1217,6 +1674,8 @@ }, "node_modules/@vuepress/markdown": { "version": "2.0.0-beta.51", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fmarkdown/-/markdown-2.0.0-beta.51.tgz", + "integrity": "sha512-q11+6j3OAutuV0LkH7BGdhh4jKOMKMiiX8bKD366mzr7JkjHb34xd+WhM394B7zh410CtYYWvAWS+m9RJGQ/5w==", "license": "MIT", "dependencies": { "@mdit-vue/plugin-component": "^0.10.0", @@ -1239,6 +1698,8 @@ }, "node_modules/@vuepress/plugin-active-header-links": { "version": "2.0.0-beta.51", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fplugin-active-header-links/-/plugin-active-header-links-2.0.0-beta.51.tgz", + "integrity": "sha512-AV9qLVSD3e9Xnp+2Vu9tegUdzbm9HD2bF6pRC3xEdW8GzRlsHBTfMpFwfsKvkKofk90+4ICkPWY9mY95P4mNSw==", "license": "MIT", "dependencies": { "@vuepress/client": "2.0.0-beta.51", @@ -1251,6 +1712,8 @@ }, "node_modules/@vuepress/plugin-back-to-top": { "version": "2.0.0-beta.51", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fplugin-back-to-top/-/plugin-back-to-top-2.0.0-beta.51.tgz", + "integrity": "sha512-VwTkJ9iV5vUFz93RURzk/4wnPPgq0OO4KUB4b9WCWlGg+4iD7Yo2zXnqaGe7Gh7hkQjbrysuPbZdtggbmnxMdg==", "license": "MIT", "dependencies": { "@vuepress/client": "2.0.0-beta.51", @@ -1262,6 +1725,8 @@ }, "node_modules/@vuepress/plugin-container": { "version": "2.0.0-beta.51", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fplugin-container/-/plugin-container-2.0.0-beta.51.tgz", + "integrity": "sha512-81FzcStQs5A0VTReWsS/CSVpaxfcAA5Gj0pzbcc6/QpNTa9Gaj2UywbcWOLIk3wozCrKucCLu8TSL31cj0+LqA==", "license": "MIT", "dependencies": { "@types/markdown-it": "^12.2.3", @@ -1275,6 +1740,8 @@ }, "node_modules/@vuepress/plugin-external-link-icon": { "version": "2.0.0-beta.51", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fplugin-external-link-icon/-/plugin-external-link-icon-2.0.0-beta.51.tgz", + "integrity": "sha512-6ITMmvD/6DX2MLCCnGOJBXkB+rFbRkVboWzBibCzITHfUORsmFwLMjmrDxnIbZl74F0VZ7533zk/BRJIy4uYLA==", "license": "MIT", "dependencies": { "@vuepress/client": "2.0.0-beta.51", @@ -1287,6 +1754,8 @@ }, "node_modules/@vuepress/plugin-git": { "version": "2.0.0-beta.51", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fplugin-git/-/plugin-git-2.0.0-beta.51.tgz", + "integrity": "sha512-lw45Vjg5pI25zNgPOTBcIrBNhNB9jU9o/j+fhb5TnW1j9hX3mwWDeJhdWLLErodSlmnTVdyL3e7qNKJpKo1Wmg==", "license": "MIT", "dependencies": { "@vuepress/core": "2.0.0-beta.51", @@ -1294,8 +1763,19 @@ "execa": "^6.1.0" } }, + "node_modules/@vuepress/plugin-google-analytics": { + "version": "1.9.7", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fplugin-google-analytics/-/plugin-google-analytics-1.9.7.tgz", + "integrity": "sha512-ZpsYrk23JdwbcJo9xArVcdqYHt5VyTX9UN9bLqNrLJRgRTV0X2jKUkM63dlKTJMpBf+0K1PQMJbGBXgOO7Yh0Q==", + "license": "MIT", + "dependencies": { + "@vuepress/types": "1.9.7" + } + }, "node_modules/@vuepress/plugin-medium-zoom": { "version": "2.0.0-beta.51", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fplugin-medium-zoom/-/plugin-medium-zoom-2.0.0-beta.51.tgz", + "integrity": "sha512-pgsKfsuEazHOLEE0xAWWi2McrygR5shQ1Xi4mZzn1MD9cn5o4JKbJxp2BlUs8q+yG5QMUQ0ugAJ9yRgCkMkUBw==", "license": "MIT", "dependencies": { "@vuepress/client": "2.0.0-beta.51", @@ -1307,6 +1787,8 @@ }, "node_modules/@vuepress/plugin-nprogress": { "version": "2.0.0-beta.51", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fplugin-nprogress/-/plugin-nprogress-2.0.0-beta.51.tgz", + "integrity": "sha512-eu3IxuiCS5y+Za9l86xKrNSo13VseoZCnAPSIqZj6I6wvyWI62ffCP5NztdR0Z9izp0g/FL6KBtBlwN1PnkY7A==", "license": "MIT", "dependencies": { "@vuepress/client": "2.0.0-beta.51", @@ -1318,6 +1800,8 @@ }, "node_modules/@vuepress/plugin-palette": { "version": "2.0.0-beta.51", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fplugin-palette/-/plugin-palette-2.0.0-beta.51.tgz", + "integrity": "sha512-Q3uFQxiPC7W3JKlyoAT0Nu1bZy6PXXUadjzwpk8dcHDsh+OmdUQqdNfeU1hc4pPQjHIiGdsBAnnGnb+8dNXqkw==", "license": "MIT", "dependencies": { "@vuepress/core": "2.0.0-beta.51", @@ -1327,6 +1811,8 @@ }, "node_modules/@vuepress/plugin-prismjs": { "version": "2.0.0-beta.51", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fplugin-prismjs/-/plugin-prismjs-2.0.0-beta.51.tgz", + "integrity": "sha512-C1kyhWYlehZVuOQK6H8eyo2Mw8Lj3wAA9Lp3YbX9bt0qNf4kfzviEQL+mTrgzM+j1Jpaijjj6nZS0Ev42mO+kw==", "license": "MIT", "dependencies": { "@vuepress/core": "2.0.0-beta.51", @@ -1335,6 +1821,8 @@ }, "node_modules/@vuepress/plugin-register-components": { "version": "2.0.0-beta.51", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fplugin-register-components/-/plugin-register-components-2.0.0-beta.51.tgz", + "integrity": "sha512-9zZgv37gdQlDwpZnif/CChJvKJVeHQ2LSbkw0ab6L5GIjrTegDBc3AHXjoNJBIG80Xo+/fAdR1dWjAlR7YfgKg==", "license": "MIT", "dependencies": { "@vuepress/core": "2.0.0-beta.51", @@ -1344,6 +1832,8 @@ }, "node_modules/@vuepress/plugin-search": { "version": "2.0.0-beta.51", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fplugin-search/-/plugin-search-2.0.0-beta.51.tgz", + "integrity": "sha512-LUKD1WOhesfbjRmy+3wPz27ZOat5sEL7nRVFrmoZNGjqGoUSuh/AFnd04z2utVEoceeuWWOluVmpoYKhxJVMFQ==", "license": "MIT", "dependencies": { "@vuepress/client": "2.0.0-beta.51", @@ -1355,163 +1845,562 @@ "vue-router": "^4.1.4" } }, - "node_modules/@vuepress/plugin-theme-data": { - "version": "2.0.0-beta.51", + "node_modules/@vuepress/plugin-shiki": { + "version": "2.0.0-beta.5", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fplugin-shiki/-/plugin-shiki-2.0.0-beta.5.tgz", + "integrity": "sha1-hus6iRMdupx50bPgvQODr55YFII=", "license": "MIT", "dependencies": { - "@vue/devtools-api": "^6.2.1", - "@vuepress/client": "2.0.0-beta.51", - "@vuepress/core": "2.0.0-beta.51", - "@vuepress/shared": "2.0.0-beta.51", - "@vuepress/utils": "2.0.0-beta.51", - "vue": "^3.2.37" + "@vuepress/core": "2.0.0-beta.5", + "shiki": "^0.9.3" } }, - "node_modules/@vuepress/shared": { - "version": "2.0.0-beta.51", + "node_modules/@vuepress/plugin-shiki/node_modules/@vuepress/client": { + "version": "2.0.0-beta.5", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fclient/-/client-2.0.0-beta.5.tgz", + "integrity": "sha1-7XA3Bn9tlaXaYo0LmPqN9WPEY/I=", "license": "MIT", "dependencies": { - "@mdit-vue/types": "^0.10.0", - "@vue/shared": "^3.2.37" + "@vuepress/shared": "2.0.0-beta.4", + "vue": "^3.0.7", + "vue-router": "^4.0.5" } }, - "node_modules/@vuepress/theme-default": { - "version": "2.0.0-beta.51", + "node_modules/@vuepress/plugin-shiki/node_modules/@vuepress/core": { + "version": "2.0.0-beta.5", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fcore/-/core-2.0.0-beta.5.tgz", + "integrity": "sha1-g+GqN+8MP8pQmFJuIAhTuaouFJo=", "license": "MIT", "dependencies": { - "@vuepress/client": "2.0.0-beta.51", - "@vuepress/core": "2.0.0-beta.51", - "@vuepress/plugin-active-header-links": "2.0.0-beta.51", - "@vuepress/plugin-back-to-top": "2.0.0-beta.51", - "@vuepress/plugin-container": "2.0.0-beta.51", - "@vuepress/plugin-external-link-icon": "2.0.0-beta.51", - "@vuepress/plugin-git": "2.0.0-beta.51", - "@vuepress/plugin-medium-zoom": "2.0.0-beta.51", - "@vuepress/plugin-nprogress": "2.0.0-beta.51", - "@vuepress/plugin-palette": "2.0.0-beta.51", - "@vuepress/plugin-prismjs": "2.0.0-beta.51", - "@vuepress/plugin-theme-data": "2.0.0-beta.51", - "@vuepress/shared": "2.0.0-beta.51", - "@vuepress/utils": "2.0.0-beta.51", - "@vueuse/core": "^9.1.0", - "sass": "^1.54.5", - "vue": "^3.2.37", - "vue-router": "^4.1.4" - }, - "peerDependencies": { - "sass-loader": "^13.0.2" - }, - "peerDependenciesMeta": { - "sass-loader": { - "optional": true - } + "@vuepress/client": "2.0.0-beta.5", + "@vuepress/markdown": "2.0.0-beta.5", + "@vuepress/shared": "2.0.0-beta.4", + "@vuepress/utils": "2.0.0-beta.5", + "gray-matter": "^4.0.2", + "toml": "^3.0.0" } }, - "node_modules/@vuepress/utils": { - "version": "2.0.0-beta.51", + "node_modules/@vuepress/plugin-shiki/node_modules/@vuepress/markdown": { + "version": "2.0.0-beta.5", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fmarkdown/-/markdown-2.0.0-beta.5.tgz", + "integrity": "sha1-YnodCZmJ748EJLBLVy5eISpTOY4=", "license": "MIT", "dependencies": { - "@types/debug": "^4.1.7", - "@types/fs-extra": "^9.0.13", + "@types/markdown-it": "^12.0.1", + "@vuepress/shared": "2.0.0-beta.4", + "@vuepress/utils": "2.0.0-beta.5", + "markdown-it": "^12.0.4", + "markdown-it-anchor": "^7.1.0", + "markdown-it-emoji": "^2.0.0" + } + }, + "node_modules/@vuepress/plugin-shiki/node_modules/@vuepress/shared": { + "version": "2.0.0-beta.4", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fshared/-/shared-2.0.0-beta.4.tgz", + "integrity": "sha1-G+W4fSqDuZzCxr5upwS6RMtQ7FQ=", + "license": "MIT", + "dependencies": { + "@vue/shared": "^3.0.7" + } + }, + "node_modules/@vuepress/plugin-shiki/node_modules/@vuepress/utils": { + "version": "2.0.0-beta.5", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2futils/-/utils-2.0.0-beta.5.tgz", + "integrity": "sha1-jxcEqCjYLozVm9tGfGzaOKusqDE=", + "license": "MIT", + "dependencies": { + "@types/debug": "^4.1.5", + "@types/fs-extra": "^9.0.8", "@types/hash-sum": "^1.0.0", - "@vuepress/shared": "2.0.0-beta.51", - "chalk": "^5.0.1", - "debug": "^4.3.4", - "fs-extra": "^10.1.0", - "globby": "^13.1.2", + "@vuepress/shared": "2.0.0-beta.4", + "chalk": "^4.1.0", + "debug": "^4.3.1", + "fs-extra": "^9.1.0", + "globby": "^11.0.2", "hash-sum": "^2.0.0", - "ora": "^6.1.2", + "ora": "^5.4.0", "upath": "^2.0.1" } }, - "node_modules/@vuepress/utils/node_modules/debug": { - "version": "4.3.4", + "node_modules/@vuepress/plugin-shiki/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://npm.corp.kuaishou.com/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha1-CCyyyJyf6GWaMRpTvWpNxTAdswQ=", "license": "MIT", - "dependencies": { - "ms": "2.1.2" - }, "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } + "node": ">=8" } }, - "node_modules/@vuepress/utils/node_modules/ms": { - "version": "2.1.2", - "license": "MIT" + "node_modules/@vuepress/plugin-shiki/node_modules/bl": { + "version": "4.1.0", + "resolved": "https://npm.corp.kuaishou.com/bl/-/bl-4.1.0.tgz", + "integrity": "sha1-RRU1JkGCvsL7vIOmKrmM8R2fezo=", + "license": "MIT", + "dependencies": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } }, - "node_modules/@vueuse/core": { - "version": "9.4.0", + "node_modules/@vuepress/plugin-shiki/node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://npm.corp.kuaishou.com/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], "license": "MIT", "dependencies": { - "@types/web-bluetooth": "^0.0.16", - "@vueuse/metadata": "9.4.0", - "@vueuse/shared": "9.4.0", - "vue-demi": "*" - }, - "funding": { - "url": "https://github.com/sponsors/antfu" + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" } }, - "node_modules/@vueuse/metadata": { - "version": "9.4.0", + "node_modules/@vuepress/plugin-shiki/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://npm.corp.kuaishou.com/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, "funding": { - "url": "https://github.com/sponsors/antfu" + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/@vueuse/shared": { - "version": "9.4.0", + "node_modules/@vuepress/plugin-shiki/node_modules/cli-cursor": { + "version": "3.1.0", + "resolved": "https://npm.corp.kuaishou.com/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha1-JkMFp65JDR0Dvwybp8kl0XU68wc=", "license": "MIT", "dependencies": { - "vue-demi": "*" + "restore-cursor": "^3.1.0" }, - "funding": { - "url": "https://github.com/sponsors/antfu" + "engines": { + "node": ">=8" } }, - "node_modules/@waline/client": { - "version": "2.13.0", + "node_modules/@vuepress/plugin-shiki/node_modules/debug": { + "version": "4.3.4", + "resolved": "https://npm.corp.kuaishou.com/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "license": "MIT", "dependencies": { - "@vueuse/core": "^9.3.0", - "autosize": "^5.0.1", - "marked": "^4.1.1", - "vue": "^3.2.40" + "ms": "2.1.2" }, "engines": { - "node": ">=14" + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } } }, - "node_modules/@waline/client/node_modules/autosize": { - "version": "5.0.1", - "license": "MIT" + "node_modules/@vuepress/plugin-shiki/node_modules/entities": { + "version": "2.1.0", + "resolved": "https://npm.corp.kuaishou.com/entities/-/entities-2.1.0.tgz", + "integrity": "sha1-mS0xKc999ocLlsV4WMJJoSD4uLU=", + "license": "BSD-2-Clause", + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } }, - "node_modules/@webassemblyjs/ast": { - "version": "1.11.1", + "node_modules/@vuepress/plugin-shiki/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://npm.corp.kuaishou.com/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha1-WVRGDHZKjaIJS6NVS/g55rmnyG0=", "license": "MIT", "dependencies": { - "@webassemblyjs/helper-numbers": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1" + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" } }, - "node_modules/@webassemblyjs/floating-point-hex-parser": { + "node_modules/@vuepress/plugin-shiki/node_modules/globby": { + "version": "11.1.0", + "resolved": "https://npm.corp.kuaishou.com/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "license": "MIT", + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@vuepress/plugin-shiki/node_modules/is-interactive": { + "version": "1.0.0", + "resolved": "https://npm.corp.kuaishou.com/is-interactive/-/is-interactive-1.0.0.tgz", + "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@vuepress/plugin-shiki/node_modules/is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://npm.corp.kuaishou.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@vuepress/plugin-shiki/node_modules/linkify-it": { + "version": "3.0.3", + "resolved": "https://npm.corp.kuaishou.com/linkify-it/-/linkify-it-3.0.3.tgz", + "integrity": "sha512-ynTsyrFSdE5oZ/O9GEf00kPngmOfVwazR5GKDq6EYfhlpFug3J2zybX56a2PRRpc9P+FuSoGNAwjlbDs9jJBPQ==", + "license": "MIT", + "dependencies": { + "uc.micro": "^1.0.1" + } + }, + "node_modules/@vuepress/plugin-shiki/node_modules/log-symbols": { + "version": "4.1.0", + "resolved": "https://npm.corp.kuaishou.com/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha1-P727lbRoOsn8eFER55LlWNSr1QM=", + "license": "MIT", + "dependencies": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@vuepress/plugin-shiki/node_modules/markdown-it": { + "version": "12.3.2", + "resolved": "https://npm.corp.kuaishou.com/markdown-it/-/markdown-it-12.3.2.tgz", + "integrity": "sha512-TchMembfxfNVpHkbtriWltGWc+m3xszaRD0CZup7GFFhzIgQqxIfn3eGj1yZpfuflzPvfkt611B2Q/Bsk1YnGg==", + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1", + "entities": "~2.1.0", + "linkify-it": "^3.0.1", + "mdurl": "^1.0.1", + "uc.micro": "^1.0.5" + }, + "bin": { + "markdown-it": "bin/markdown-it.js" + } + }, + "node_modules/@vuepress/plugin-shiki/node_modules/markdown-it-anchor": { + "version": "7.1.0", + "resolved": "https://npm.corp.kuaishou.com/markdown-it-anchor/-/markdown-it-anchor-7.1.0.tgz", + "integrity": "sha1-MPshSXv1noP/TR3cBS2CGWLiSJ4=", + "license": "Unlicense", + "peerDependencies": { + "markdown-it": "*" + } + }, + "node_modules/@vuepress/plugin-shiki/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://npm.corp.kuaishou.com/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "license": "MIT" + }, + "node_modules/@vuepress/plugin-shiki/node_modules/ora": { + "version": "5.4.1", + "resolved": "https://npm.corp.kuaishou.com/ora/-/ora-5.4.1.tgz", + "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", + "license": "MIT", + "dependencies": { + "bl": "^4.1.0", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.5.0", + "is-interactive": "^1.0.0", + "is-unicode-supported": "^0.1.0", + "log-symbols": "^4.1.0", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@vuepress/plugin-shiki/node_modules/restore-cursor": { + "version": "3.1.0", + "resolved": "https://npm.corp.kuaishou.com/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "license": "MIT", + "dependencies": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@vuepress/plugin-shiki/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://npm.corp.kuaishou.com/slash/-/slash-3.0.0.tgz", + "integrity": "sha1-ZTm+hwwWWtvVJAIg2+Nh8bxNRjQ=", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@vuepress/plugin-shiki/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://npm.corp.kuaishou.com/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha1-nibGPTD1NEPpSJSVshBdN7Z6hdk=", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@vuepress/plugin-theme-data": { + "version": "2.0.0-beta.51", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fplugin-theme-data/-/plugin-theme-data-2.0.0-beta.51.tgz", + "integrity": "sha512-sfsZRhb7zZATqY1+BXkynZZ7HEZnBZEd4iuEyCNpWEnjwa7/qjPSKJyAb/M0a2SLgN2/UcPdM5URMfE1mV/4QQ==", + "license": "MIT", + "dependencies": { + "@vue/devtools-api": "^6.2.1", + "@vuepress/client": "2.0.0-beta.51", + "@vuepress/core": "2.0.0-beta.51", + "@vuepress/shared": "2.0.0-beta.51", + "@vuepress/utils": "2.0.0-beta.51", + "vue": "^3.2.37" + } + }, + "node_modules/@vuepress/shared": { + "version": "2.0.0-beta.51", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fshared/-/shared-2.0.0-beta.51.tgz", + "integrity": "sha512-0dbJp0M+d/schkD+xUI7MwwoyJRtFxH3QEYMcLTKhgkaNFjgzlIEG/coh1QywVIoQGX9cGQSa8PZk8BeMeePug==", + "license": "MIT", + "dependencies": { + "@mdit-vue/types": "^0.10.0", + "@vue/shared": "^3.2.37" + } + }, + "node_modules/@vuepress/theme-default": { + "version": "2.0.0-beta.51", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2ftheme-default/-/theme-default-2.0.0-beta.51.tgz", + "integrity": "sha512-k1hbvsnPgcpqyBZc54OOytBD2UlL2IlThnasiRxvoV5qEibVcS07JzF7Dydk8BmrcylHEkhGTe2oAuUXwVs7Dg==", + "license": "MIT", + "dependencies": { + "@vuepress/client": "2.0.0-beta.51", + "@vuepress/core": "2.0.0-beta.51", + "@vuepress/plugin-active-header-links": "2.0.0-beta.51", + "@vuepress/plugin-back-to-top": "2.0.0-beta.51", + "@vuepress/plugin-container": "2.0.0-beta.51", + "@vuepress/plugin-external-link-icon": "2.0.0-beta.51", + "@vuepress/plugin-git": "2.0.0-beta.51", + "@vuepress/plugin-medium-zoom": "2.0.0-beta.51", + "@vuepress/plugin-nprogress": "2.0.0-beta.51", + "@vuepress/plugin-palette": "2.0.0-beta.51", + "@vuepress/plugin-prismjs": "2.0.0-beta.51", + "@vuepress/plugin-theme-data": "2.0.0-beta.51", + "@vuepress/shared": "2.0.0-beta.51", + "@vuepress/utils": "2.0.0-beta.51", + "@vueuse/core": "^9.1.0", + "sass": "^1.54.5", + "vue": "^3.2.37", + "vue-router": "^4.1.4" + }, + "peerDependencies": { + "sass-loader": "^13.0.2" + }, + "peerDependenciesMeta": { + "sass-loader": { + "optional": true + } + } + }, + "node_modules/@vuepress/types": { + "version": "1.9.7", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2ftypes/-/types-1.9.7.tgz", + "integrity": "sha512-moLQzkX3ED2o18dimLemUm7UVDKxhcrJmGt5C0Ng3xxrLPaQu7UqbROtEKB3YnMRt4P/CA91J+Ck+b9LmGabog==", + "license": "MIT", + "dependencies": { + "@types/markdown-it": "^10.0.0", + "@types/webpack-dev-server": "^3", + "webpack-chain": "^6.0.0" + } + }, + "node_modules/@vuepress/types/node_modules/@types/markdown-it": { + "version": "10.0.3", + "resolved": "https://npm.corp.kuaishou.com/@types%2fmarkdown-it/-/markdown-it-10.0.3.tgz", + "integrity": "sha1-qYANFLESwX8d527DPv+GSkgV7sc=", + "license": "MIT", + "dependencies": { + "@types/highlight.js": "^9.7.0", + "@types/linkify-it": "*", + "@types/mdurl": "*", + "highlight.js": "^9.7.0" + } + }, + "node_modules/@vuepress/utils": { + "version": "2.0.0-beta.51", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2futils/-/utils-2.0.0-beta.51.tgz", + "integrity": "sha512-BtWK38047GNk3CnzAN9dxm8n7XplHqOU/DhW4BYO84Czl6XZh0NExPny3aPf7SL8roy03eAzF0dgPgmug6whIQ==", + "license": "MIT", + "dependencies": { + "@types/debug": "^4.1.7", + "@types/fs-extra": "^9.0.13", + "@types/hash-sum": "^1.0.0", + "@vuepress/shared": "2.0.0-beta.51", + "chalk": "^5.0.1", + "debug": "^4.3.4", + "fs-extra": "^10.1.0", + "globby": "^13.1.2", + "hash-sum": "^2.0.0", + "ora": "^6.1.2", + "upath": "^2.0.1" + } + }, + "node_modules/@vuepress/utils/node_modules/debug": { + "version": "4.3.4", + "resolved": "https://npm.corp.kuaishou.com/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "license": "MIT", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/@vuepress/utils/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://npm.corp.kuaishou.com/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "license": "MIT" + }, + "node_modules/@vueuse/core": { + "version": "9.4.0", + "resolved": "https://npm.corp.kuaishou.com/@vueuse%2fcore/-/core-9.4.0.tgz", + "integrity": "sha512-JzgenGj1ZF2BHOen5rsFiAyyI9sXAv7aKhNLlm9b7SwYQeKTcxTWdhudonURCSP3Egl9NQaRBzes2lv/1JUt/Q==", + "license": "MIT", + "dependencies": { + "@types/web-bluetooth": "^0.0.16", + "@vueuse/metadata": "9.4.0", + "@vueuse/shared": "9.4.0", + "vue-demi": "*" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@vueuse/metadata": { + "version": "9.4.0", + "resolved": "https://npm.corp.kuaishou.com/@vueuse%2fmetadata/-/metadata-9.4.0.tgz", + "integrity": "sha512-7GKMdGAsJyQJl35MYOz/RDpP0FxuiZBRDSN79QIPbdqYx4Sd0sVTnIC68KJ6Oln0t0SouvSUMvRHuno216Ud2Q==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@vueuse/shared": { + "version": "9.4.0", + "resolved": "https://npm.corp.kuaishou.com/@vueuse%2fshared/-/shared-9.4.0.tgz", + "integrity": "sha512-fTuem51KwMCnqUKkI8B57qAIMcFovtGgsCtAeqxIzH3i6nE9VYge+gVfneNHAAy7lj8twbkNfqQSygOPJTm4tQ==", + "license": "MIT", + "dependencies": { + "vue-demi": "*" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@waline/client": { + "version": "2.13.0", + "resolved": "https://npm.corp.kuaishou.com/@waline%2fclient/-/client-2.13.0.tgz", + "integrity": "sha512-7NrEVpAaT79PTCjjK06WEBRu8gR+/jDU40kn1D4SOJB3fEfvZg1Ztzf2mj1xqy3r4xdOrJ+KWFD88xvPVU96ZA==", + "license": "MIT", + "dependencies": { + "@vueuse/core": "^9.3.0", + "autosize": "^5.0.1", + "marked": "^4.1.1", + "vue": "^3.2.40" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/@waline/client/node_modules/autosize": { + "version": "5.0.1", + "resolved": "https://npm.corp.kuaishou.com/autosize/-/autosize-5.0.1.tgz", + "integrity": "sha1-7SabD6m360dicEihuzKZ6Z4AOg8=", + "license": "MIT" + }, + "node_modules/@webassemblyjs/ast": { + "version": "1.11.1", + "resolved": "https://npm.corp.kuaishou.com/@webassemblyjs%2fast/-/ast-1.11.1.tgz", + "integrity": "sha1-K/12fq4aaZb0Mv9+jX/HVnnAtqc=", + "license": "MIT", + "dependencies": { + "@webassemblyjs/helper-numbers": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1" + } + }, + "node_modules/@webassemblyjs/floating-point-hex-parser": { "version": "1.11.1", + "resolved": "https://npm.corp.kuaishou.com/@webassemblyjs%2ffloating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz", + "integrity": "sha1-9sYacF8P16auyqToGY8j2dwXnk8=", "license": "MIT" }, "node_modules/@webassemblyjs/helper-api-error": { "version": "1.11.1", + "resolved": "https://npm.corp.kuaishou.com/@webassemblyjs%2fhelper-api-error/-/helper-api-error-1.11.1.tgz", + "integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==", "license": "MIT" }, "node_modules/@webassemblyjs/helper-buffer": { "version": "1.11.1", + "resolved": "https://npm.corp.kuaishou.com/@webassemblyjs%2fhelper-buffer/-/helper-buffer-1.11.1.tgz", + "integrity": "sha1-gyqQDrREiEzemnytRn+BUA9eWrU=", "license": "MIT" }, "node_modules/@webassemblyjs/helper-numbers": { "version": "1.11.1", + "resolved": "https://npm.corp.kuaishou.com/@webassemblyjs%2fhelper-numbers/-/helper-numbers-1.11.1.tgz", + "integrity": "sha1-ZNgdohn7u6HjvRv8dPboxOEKYq4=", "license": "MIT", "dependencies": { "@webassemblyjs/floating-point-hex-parser": "1.11.1", @@ -1521,10 +2410,14 @@ }, "node_modules/@webassemblyjs/helper-wasm-bytecode": { "version": "1.11.1", + "resolved": "https://npm.corp.kuaishou.com/@webassemblyjs%2fhelper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz", + "integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==", "license": "MIT" }, "node_modules/@webassemblyjs/helper-wasm-section": { "version": "1.11.1", + "resolved": "https://npm.corp.kuaishou.com/@webassemblyjs%2fhelper-wasm-section/-/helper-wasm-section-1.11.1.tgz", + "integrity": "sha1-Ie4GWntjXzGec48N1zv72igcCXo=", "license": "MIT", "dependencies": { "@webassemblyjs/ast": "1.11.1", @@ -1535,6 +2428,8 @@ }, "node_modules/@webassemblyjs/ieee754": { "version": "1.11.1", + "resolved": "https://npm.corp.kuaishou.com/@webassemblyjs%2fieee754/-/ieee754-1.11.1.tgz", + "integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==", "license": "MIT", "dependencies": { "@xtuc/ieee754": "^1.2.0" @@ -1542,6 +2437,8 @@ }, "node_modules/@webassemblyjs/leb128": { "version": "1.11.1", + "resolved": "https://npm.corp.kuaishou.com/@webassemblyjs%2fleb128/-/leb128-1.11.1.tgz", + "integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==", "license": "Apache-2.0", "dependencies": { "@xtuc/long": "4.2.2" @@ -1549,10 +2446,14 @@ }, "node_modules/@webassemblyjs/utf8": { "version": "1.11.1", + "resolved": "https://npm.corp.kuaishou.com/@webassemblyjs%2futf8/-/utf8-1.11.1.tgz", + "integrity": "sha1-0fi3ZDaefG5rrjUOhU3smlnwo/8=", "license": "MIT" }, "node_modules/@webassemblyjs/wasm-edit": { "version": "1.11.1", + "resolved": "https://npm.corp.kuaishou.com/@webassemblyjs%2fwasm-edit/-/wasm-edit-1.11.1.tgz", + "integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==", "license": "MIT", "dependencies": { "@webassemblyjs/ast": "1.11.1", @@ -1567,6 +2468,8 @@ }, "node_modules/@webassemblyjs/wasm-gen": { "version": "1.11.1", + "resolved": "https://npm.corp.kuaishou.com/@webassemblyjs%2fwasm-gen/-/wasm-gen-1.11.1.tgz", + "integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==", "license": "MIT", "dependencies": { "@webassemblyjs/ast": "1.11.1", @@ -1578,6 +2481,8 @@ }, "node_modules/@webassemblyjs/wasm-opt": { "version": "1.11.1", + "resolved": "https://npm.corp.kuaishou.com/@webassemblyjs%2fwasm-opt/-/wasm-opt-1.11.1.tgz", + "integrity": "sha1-ZXtMIgL0zzs0X4pMZGHIwkGJhfI=", "license": "MIT", "dependencies": { "@webassemblyjs/ast": "1.11.1", @@ -1588,6 +2493,8 @@ }, "node_modules/@webassemblyjs/wasm-parser": { "version": "1.11.1", + "resolved": "https://npm.corp.kuaishou.com/@webassemblyjs%2fwasm-parser/-/wasm-parser-1.11.1.tgz", + "integrity": "sha1-hspzRTT0F+m9PGfHocddi+QfsZk=", "license": "MIT", "dependencies": { "@webassemblyjs/ast": "1.11.1", @@ -1600,6 +2507,8 @@ }, "node_modules/@webassemblyjs/wast-printer": { "version": "1.11.1", + "resolved": "https://npm.corp.kuaishou.com/@webassemblyjs%2fwast-printer/-/wast-printer-1.11.1.tgz", + "integrity": "sha1-0Mc77ajuxUJvEK6O9VzuXnCEwvA=", "license": "MIT", "dependencies": { "@webassemblyjs/ast": "1.11.1", @@ -1608,14 +2517,20 @@ }, "node_modules/@xtuc/ieee754": { "version": "1.2.0", + "resolved": "https://npm.corp.kuaishou.com/@xtuc%2fieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha1-7vAUoxRa5Hehy8AM0eVSM23Ot5A=", "license": "BSD-3-Clause" }, "node_modules/@xtuc/long": { "version": "4.2.2", + "resolved": "https://npm.corp.kuaishou.com/@xtuc%2flong/-/long-4.2.2.tgz", + "integrity": "sha1-0pHGpOl5ibXGHZrPOWrk/hM6cY0=", "license": "Apache-2.0" }, "node_modules/accepts": { "version": "1.3.8", + "resolved": "https://npm.corp.kuaishou.com/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", "license": "MIT", "dependencies": { "mime-types": "~2.1.34", @@ -1627,6 +2542,8 @@ }, "node_modules/acorn": { "version": "8.8.1", + "resolved": "https://npm.corp.kuaishou.com/acorn/-/acorn-8.8.1.tgz", + "integrity": "sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==", "license": "MIT", "bin": { "acorn": "bin/acorn" @@ -1637,6 +2554,8 @@ }, "node_modules/acorn-import-assertions": { "version": "1.8.0", + "resolved": "https://npm.corp.kuaishou.com/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz", + "integrity": "sha1-uitZOc5iwjjbbZPYHJsRGym4Vek=", "license": "MIT", "peerDependencies": { "acorn": "^8" @@ -1644,6 +2563,8 @@ }, "node_modules/acorn-node": { "version": "1.8.2", + "resolved": "https://npm.corp.kuaishou.com/acorn-node/-/acorn-node-1.8.2.tgz", + "integrity": "sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==", "license": "Apache-2.0", "dependencies": { "acorn": "^7.0.0", @@ -1653,6 +2574,8 @@ }, "node_modules/acorn-node/node_modules/acorn": { "version": "7.4.1", + "resolved": "https://npm.corp.kuaishou.com/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", "license": "MIT", "bin": { "acorn": "bin/acorn" @@ -1663,6 +2586,8 @@ }, "node_modules/acorn-walk": { "version": "7.2.0", + "resolved": "https://npm.corp.kuaishou.com/acorn-walk/-/acorn-walk-7.2.0.tgz", + "integrity": "sha1-DeiJpgEgOQmw++B7iTjcIdLpZ7w=", "license": "MIT", "engines": { "node": ">=0.4.0" @@ -1670,6 +2595,8 @@ }, "node_modules/ajv": { "version": "8.11.0", + "resolved": "https://npm.corp.kuaishou.com/ajv/-/ajv-8.11.0.tgz", + "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.1", @@ -1684,6 +2611,8 @@ }, "node_modules/ajv-formats": { "version": "2.1.1", + "resolved": "https://npm.corp.kuaishou.com/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha1-bmaUAGWet0lzu/LjMycYCgmWtSA=", "license": "MIT", "dependencies": { "ajv": "^8.0.0" @@ -1699,6 +2628,8 @@ }, "node_modules/ajv-keywords": { "version": "5.1.0", + "resolved": "https://npm.corp.kuaishou.com/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.3" @@ -1709,6 +2640,8 @@ }, "node_modules/ansi-html-community": { "version": "0.0.8", + "resolved": "https://npm.corp.kuaishou.com/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha1-afvE1sy+OD+XNpNK40w/gpDxv0E=", "engines": [ "node >= 0.8.0" ], @@ -1719,6 +2652,8 @@ }, "node_modules/ansi-regex": { "version": "2.1.1", + "resolved": "https://npm.corp.kuaishou.com/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", "license": "MIT", "engines": { "node": ">=0.10.0" @@ -1726,6 +2661,8 @@ }, "node_modules/ansi-styles": { "version": "4.3.0", + "resolved": "https://npm.corp.kuaishou.com/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "license": "MIT", "dependencies": { "color-convert": "^2.0.1" @@ -1739,6 +2676,8 @@ }, "node_modules/anymatch": { "version": "3.1.2", + "resolved": "https://npm.corp.kuaishou.com/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha1-wFV8CWrzLxBhmPT04qODU343hxY=", "license": "ISC", "dependencies": { "normalize-path": "^3.0.0", @@ -1750,37 +2689,71 @@ }, "node_modules/arg": { "version": "5.0.2", + "resolved": "https://npm.corp.kuaishou.com/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", "license": "MIT" }, "node_modules/argparse": { "version": "2.0.1", + "resolved": "https://npm.corp.kuaishou.com/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha1-JG9Q88p4oyQPbJl+ipvR6sSeSzg=", "license": "Python-2.0" }, "node_modules/array-flatten": { "version": "1.1.1", + "resolved": "https://npm.corp.kuaishou.com/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", "license": "MIT" }, - "node_modules/ascli": { - "version": "1.0.1", - "license": "Apache-2.0", - "dependencies": { + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://npm.corp.kuaishou.com/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha1-t5hCCtvrHego2ErNii4j0+/oXo0=", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ascli": { + "version": "1.0.1", + "resolved": "https://npm.corp.kuaishou.com/ascli/-/ascli-1.0.1.tgz", + "integrity": "sha512-JGQaNxpaCJz9Bd1JvVaFIHuWn9S+l3xhN17R0V/vmUDiGE0QngNMXhjlqpwqV+91plWz9Fg+Lt28Lj7p5vjs8A==", + "license": "Apache-2.0", + "dependencies": { "colour": "~0.7.1", "optjs": "~3.2.2" } }, "node_modules/assignment": { - "version": "2.0.0" + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/assignment/-/assignment-2.0.0.tgz", + "integrity": "sha1-/9F7Ib9dayLnd7mJaBqBVFaj3T4=" }, "node_modules/async-limiter": { "version": "1.0.1", + "resolved": "https://npm.corp.kuaishou.com/async-limiter/-/async-limiter-1.0.1.tgz", + "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==", "license": "MIT" }, "node_modules/asynckit": { "version": "0.4.0", + "resolved": "https://npm.corp.kuaishou.com/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", "license": "MIT" }, + "node_modules/at-least-node": { + "version": "1.0.0", + "resolved": "https://npm.corp.kuaishou.com/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "license": "ISC", + "engines": { + "node": ">= 4.0.0" + } + }, "node_modules/autoprefixer": { "version": "10.4.13", + "resolved": "https://npm.corp.kuaishou.com/autoprefixer/-/autoprefixer-10.4.13.tgz", + "integrity": "sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==", "funding": [ { "type": "opencollective", @@ -1812,28 +2785,40 @@ }, "node_modules/autosize": { "version": "4.0.4", + "resolved": "https://npm.corp.kuaishou.com/autosize/-/autosize-4.0.4.tgz", + "integrity": "sha1-kk8ThTpGa2M7kwkzCDOTbYvMzgM=", "license": "MIT" }, "node_modules/balajs": { "version": "1.0.10", + "resolved": "https://npm.corp.kuaishou.com/balajs/-/balajs-1.0.10.tgz", + "integrity": "sha1-ZCDfHiT8cq9bXpWJyv4ShSVW0Es=", "license": "MIT" }, "node_modules/balalaika": { "version": "1.0.1", + "resolved": "https://npm.corp.kuaishou.com/balalaika/-/balalaika-1.0.1.tgz", + "integrity": "sha1-BmQUeiV+oq1K5mRRcR5SZoMNUdk=", "license": "MIT" }, "node_modules/balanced-match": { "version": "1.0.2", + "resolved": "https://npm.corp.kuaishou.com/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha1-6D46fj8wCzTLnYf2FfoMvzV2kO4=", "license": "MIT" }, "node_modules/base64-arraybuffer": { "version": "0.1.5", + "resolved": "https://npm.corp.kuaishou.com/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz", + "integrity": "sha1-c5JncZI7Whl0etZmqlzUv5xunOg=", "engines": { "node": ">= 0.6.0" } }, "node_modules/base64-js": { "version": "1.5.1", + "resolved": "https://npm.corp.kuaishou.com/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha1-GxtEAWClv3rUC2UPCVljSBkDkwo=", "funding": [ { "type": "github", @@ -1852,10 +2837,14 @@ }, "node_modules/batch": { "version": "0.6.1", + "resolved": "https://npm.corp.kuaishou.com/batch/-/batch-0.6.1.tgz", + "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", "license": "MIT" }, "node_modules/big.js": { "version": "5.2.2", + "resolved": "https://npm.corp.kuaishou.com/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha1-ZfCvOC9Xi83HQr2cKB6cstd2gyg=", "license": "MIT", "engines": { "node": "*" @@ -1863,6 +2852,8 @@ }, "node_modules/binary-extensions": { "version": "2.2.0", + "resolved": "https://npm.corp.kuaishou.com/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", "license": "MIT", "engines": { "node": ">=8" @@ -1870,6 +2861,8 @@ }, "node_modules/bl": { "version": "5.1.0", + "resolved": "https://npm.corp.kuaishou.com/bl/-/bl-5.1.0.tgz", + "integrity": "sha512-tv1ZJHLfTDnXE6tMHv73YgSJaWR2AFuPwMntBe7XL/GBFHnT0CLnsHMogfk5+GzCDC5ZWarSCYaIGATZt9dNsQ==", "license": "MIT", "dependencies": { "buffer": "^6.0.3", @@ -1879,10 +2872,14 @@ }, "node_modules/blueimp-md5": { "version": "2.19.0", + "resolved": "https://npm.corp.kuaishou.com/blueimp-md5/-/blueimp-md5-2.19.0.tgz", + "integrity": "sha512-DRQrD6gJyy8FbiE4s+bDoXS9hiW3Vbx5uCdwvcCf3zLHL+Iv7LtGHLpr+GZV8rHG8tK766FGYBwRbu8pELTt+w==", "license": "MIT" }, "node_modules/body-parser": { "version": "1.20.1", + "resolved": "https://npm.corp.kuaishou.com/body-parser/-/body-parser-1.20.1.tgz", + "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", "license": "MIT", "dependencies": { "bytes": "3.1.2", @@ -1905,6 +2902,8 @@ }, "node_modules/bonjour-service": { "version": "1.0.14", + "resolved": "https://npm.corp.kuaishou.com/bonjour-service/-/bonjour-service-1.0.14.tgz", + "integrity": "sha512-HIMbgLnk1Vqvs6B4Wq5ep7mxvj9sGz5d1JJyDNSGNIdA/w2MCz6GTjWTdjqOJV1bEPj+6IkxDvWNFKEBxNt4kQ==", "license": "MIT", "dependencies": { "array-flatten": "^2.1.2", @@ -1915,14 +2914,20 @@ }, "node_modules/bonjour-service/node_modules/array-flatten": { "version": "2.1.2", + "resolved": "https://npm.corp.kuaishou.com/array-flatten/-/array-flatten-2.1.2.tgz", + "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", "license": "MIT" }, "node_modules/boolbase": { "version": "1.0.0", + "resolved": "https://npm.corp.kuaishou.com/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", "license": "ISC" }, "node_modules/brace-expansion": { "version": "1.1.11", + "resolved": "https://npm.corp.kuaishou.com/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha1-PH/L9SnYcibz0vUrlm/1Jx60Qd0=", "license": "MIT", "dependencies": { "balanced-match": "^1.0.0", @@ -1931,6 +2936,8 @@ }, "node_modules/braces": { "version": "3.0.2", + "resolved": "https://npm.corp.kuaishou.com/braces/-/braces-3.0.2.tgz", + "integrity": "sha1-NFThpGLujVmeI23zNs2epPiv4Qc=", "license": "MIT", "dependencies": { "fill-range": "^7.0.1" @@ -1941,6 +2948,8 @@ }, "node_modules/browserslist": { "version": "4.21.4", + "resolved": "https://npm.corp.kuaishou.com/browserslist/-/browserslist-4.21.4.tgz", + "integrity": "sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==", "funding": [ { "type": "opencollective", @@ -1967,6 +2976,8 @@ }, "node_modules/buffer": { "version": "6.0.3", + "resolved": "https://npm.corp.kuaishou.com/buffer/-/buffer-6.0.3.tgz", + "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", "funding": [ { "type": "github", @@ -1989,10 +3000,14 @@ }, "node_modules/buffer-from": { "version": "1.1.2", + "resolved": "https://npm.corp.kuaishou.com/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", "license": "MIT" }, "node_modules/bytebuffer": { "version": "5.0.1", + "resolved": "https://npm.corp.kuaishou.com/bytebuffer/-/bytebuffer-5.0.1.tgz", + "integrity": "sha1-WC7qSxqHO20CCkjVjfhfC7ps/d0=", "license": "Apache-2.0", "dependencies": { "long": "~3" @@ -2003,6 +3018,8 @@ }, "node_modules/bytes": { "version": "3.1.2", + "resolved": "https://npm.corp.kuaishou.com/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", "license": "MIT", "engines": { "node": ">= 0.8" @@ -2010,6 +3027,8 @@ }, "node_modules/cac": { "version": "6.7.14", + "resolved": "https://npm.corp.kuaishou.com/cac/-/cac-6.7.14.tgz", + "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==", "license": "MIT", "engines": { "node": ">=8" @@ -2017,6 +3036,8 @@ }, "node_modules/call-bind": { "version": "1.0.2", + "resolved": "https://npm.corp.kuaishou.com/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", "license": "MIT", "dependencies": { "function-bind": "^1.1.1", @@ -2028,6 +3049,8 @@ }, "node_modules/callsites": { "version": "3.1.0", + "resolved": "https://npm.corp.kuaishou.com/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha1-s2MKvYlDQy9Us/BRkjjjPNffL3M=", "license": "MIT", "engines": { "node": ">=6" @@ -2035,6 +3058,8 @@ }, "node_modules/camel-case": { "version": "4.1.2", + "resolved": "https://npm.corp.kuaishou.com/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha1-lygHKpVPgFIoIlpt7qazhGHhvVo=", "license": "MIT", "dependencies": { "pascal-case": "^3.1.2", @@ -2043,6 +3068,8 @@ }, "node_modules/camelcase": { "version": "2.1.1", + "resolved": "https://npm.corp.kuaishou.com/camelcase/-/camelcase-2.1.1.tgz", + "integrity": "sha512-DLIsRzJVBQu72meAKPkWQOLcujdXT32hwdfnkI1frSiSRMK1MofjKHf+MEx0SB6fjEFXL8fBDv1dKymBlOp4Qw==", "license": "MIT", "engines": { "node": ">=0.10.0" @@ -2050,6 +3077,8 @@ }, "node_modules/camelcase-css": { "version": "2.0.1", + "resolved": "https://npm.corp.kuaishou.com/camelcase-css/-/camelcase-css-2.0.1.tgz", + "integrity": "sha1-7pePaUeRTMMMa0R0G27R338EP9U=", "license": "MIT", "engines": { "node": ">= 6" @@ -2057,6 +3086,8 @@ }, "node_modules/caniuse-lite": { "version": "1.0.30001431", + "resolved": "https://npm.corp.kuaishou.com/caniuse-lite/-/caniuse-lite-1.0.30001431.tgz", + "integrity": "sha512-zBUoFU0ZcxpvSt9IU66dXVT/3ctO1cy4y9cscs1szkPlcWb6pasYM144GqrUygUbT+k7cmUCW61cvskjcv0enQ==", "funding": [ { "type": "opencollective", @@ -2071,6 +3102,8 @@ }, "node_modules/chalk": { "version": "5.1.2", + "resolved": "https://npm.corp.kuaishou.com/chalk/-/chalk-5.1.2.tgz", + "integrity": "sha512-E5CkT4jWURs1Vy5qGJye+XwCkNj7Od3Af7CP6SujMetSMkLs8Do2RWJK5yx1wamHV/op8Rz+9rltjaTQWDnEFQ==", "license": "MIT", "engines": { "node": "^12.17.0 || ^14.13 || >=16.0.0" @@ -2081,6 +3114,8 @@ }, "node_modules/charenc": { "version": "0.0.2", + "resolved": "https://npm.corp.kuaishou.com/charenc/-/charenc-0.0.2.tgz", + "integrity": "sha1-wKHS86cJLgN3S/qD8UwPxXkKhmc=", "license": "BSD-3-Clause", "engines": { "node": "*" @@ -2088,6 +3123,8 @@ }, "node_modules/chokidar": { "version": "3.5.3", + "resolved": "https://npm.corp.kuaishou.com/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", "funding": [ { "type": "individual", @@ -2113,6 +3150,8 @@ }, "node_modules/chrome-trace-event": { "version": "1.0.3", + "resolved": "https://npm.corp.kuaishou.com/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", + "integrity": "sha1-EBXs7UdB4V0GZkqVfbv1DQQeJqw=", "license": "MIT", "engines": { "node": ">=6.0" @@ -2120,6 +3159,8 @@ }, "node_modules/clean-css": { "version": "5.3.1", + "resolved": "https://npm.corp.kuaishou.com/clean-css/-/clean-css-5.3.1.tgz", + "integrity": "sha512-lCr8OHhiWCTw4v8POJovCoh4T7I9U11yVsPjMWWnnMmp9ZowCxyad1Pathle/9HjaDp+fdQKjO9fQydE6RHTZg==", "license": "MIT", "dependencies": { "source-map": "~0.6.0" @@ -2130,6 +3171,8 @@ }, "node_modules/cli-cursor": { "version": "4.0.0", + "resolved": "https://npm.corp.kuaishou.com/cli-cursor/-/cli-cursor-4.0.0.tgz", + "integrity": "sha1-POz+NzS/T+Aqg2HL3A9v4oxqV+o=", "license": "MIT", "dependencies": { "restore-cursor": "^4.0.0" @@ -2143,6 +3186,8 @@ }, "node_modules/cli-spinners": { "version": "2.7.0", + "resolved": "https://npm.corp.kuaishou.com/cli-spinners/-/cli-spinners-2.7.0.tgz", + "integrity": "sha512-qu3pN8Y3qHNgE2AFweciB1IfMnmZ/fsNTEE+NOFjmGB2F/7rLhnhzppvpCnN4FovtP26k8lHyy9ptEbNwWFLzw==", "license": "MIT", "engines": { "node": ">=6" @@ -2153,6 +3198,8 @@ }, "node_modules/cliui": { "version": "3.2.0", + "resolved": "https://npm.corp.kuaishou.com/cliui/-/cliui-3.2.0.tgz", + "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=", "license": "ISC", "dependencies": { "string-width": "^1.0.1", @@ -2162,6 +3209,8 @@ }, "node_modules/clone": { "version": "1.0.4", + "resolved": "https://npm.corp.kuaishou.com/clone/-/clone-1.0.4.tgz", + "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=", "license": "MIT", "engines": { "node": ">=0.8" @@ -2169,6 +3218,8 @@ }, "node_modules/clone-deep": { "version": "4.0.1", + "resolved": "https://npm.corp.kuaishou.com/clone-deep/-/clone-deep-4.0.1.tgz", + "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", "license": "MIT", "dependencies": { "is-plain-object": "^2.0.4", @@ -2181,6 +3232,8 @@ }, "node_modules/code-point-at": { "version": "1.1.0", + "resolved": "https://npm.corp.kuaishou.com/code-point-at/-/code-point-at-1.1.0.tgz", + "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", "license": "MIT", "engines": { "node": ">=0.10.0" @@ -2188,6 +3241,8 @@ }, "node_modules/color-convert": { "version": "2.0.1", + "resolved": "https://npm.corp.kuaishou.com/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", "license": "MIT", "dependencies": { "color-name": "~1.1.4" @@ -2198,14 +3253,20 @@ }, "node_modules/color-name": { "version": "1.1.4", + "resolved": "https://npm.corp.kuaishou.com/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=", "license": "MIT" }, "node_modules/colorette": { "version": "2.0.19", + "resolved": "https://npm.corp.kuaishou.com/colorette/-/colorette-2.0.19.tgz", + "integrity": "sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==", "license": "MIT" }, "node_modules/colour": { "version": "0.7.1", + "resolved": "https://npm.corp.kuaishou.com/colour/-/colour-0.7.1.tgz", + "integrity": "sha1-nLFpkX7F0SwHNtPoaFdG3xyt93g=", "license": "MIT", "engines": { "node": ">=0.8" @@ -2213,6 +3274,8 @@ }, "node_modules/combined-stream": { "version": "1.0.8", + "resolved": "https://npm.corp.kuaishou.com/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha1-w9RaizT9cwYxoRCoolIGgrMdWn8=", "license": "MIT", "dependencies": { "delayed-stream": "~1.0.0" @@ -2223,10 +3286,14 @@ }, "node_modules/commander": { "version": "2.20.3", + "resolved": "https://npm.corp.kuaishou.com/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", "license": "MIT" }, "node_modules/comment-regex": { "version": "1.0.1", + "resolved": "https://npm.corp.kuaishou.com/comment-regex/-/comment-regex-1.0.1.tgz", + "integrity": "sha1-4HDSxNszIxlV0JedJ8kY/Lb5NWU=", "license": "MIT", "engines": { "node": ">=0.10.0" @@ -2234,10 +3301,14 @@ }, "node_modules/component-emitter": { "version": "1.3.0", + "resolved": "https://npm.corp.kuaishou.com/component-emitter/-/component-emitter-1.3.0.tgz", + "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", "license": "MIT" }, "node_modules/compressible": { "version": "2.0.18", + "resolved": "https://npm.corp.kuaishou.com/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", "license": "MIT", "dependencies": { "mime-db": ">= 1.43.0 < 2" @@ -2248,6 +3319,8 @@ }, "node_modules/compression": { "version": "1.7.4", + "resolved": "https://npm.corp.kuaishou.com/compression/-/compression-1.7.4.tgz", + "integrity": "sha1-lVI+/xcMpXwpoMpB5v4TH0Hlu48=", "license": "MIT", "dependencies": { "accepts": "~1.3.5", @@ -2264,6 +3337,8 @@ }, "node_modules/compression/node_modules/bytes": { "version": "3.0.0", + "resolved": "https://npm.corp.kuaishou.com/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", "license": "MIT", "engines": { "node": ">= 0.8" @@ -2271,14 +3346,20 @@ }, "node_modules/compression/node_modules/safe-buffer": { "version": "5.1.2", + "resolved": "https://npm.corp.kuaishou.com/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha1-mR7GnSluAxN0fVm9/St0XDX4go0=", "license": "MIT" }, "node_modules/concat-map": { "version": "0.0.1", + "resolved": "https://npm.corp.kuaishou.com/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", "license": "MIT" }, "node_modules/connect-history-api-fallback": { "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz", + "integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==", "license": "MIT", "engines": { "node": ">=0.8" @@ -2286,6 +3367,8 @@ }, "node_modules/content-disposition": { "version": "0.5.4", + "resolved": "https://npm.corp.kuaishou.com/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", "license": "MIT", "dependencies": { "safe-buffer": "5.2.1" @@ -2296,6 +3379,8 @@ }, "node_modules/content-type": { "version": "1.0.4", + "resolved": "https://npm.corp.kuaishou.com/content-type/-/content-type-1.0.4.tgz", + "integrity": "sha1-4TjMdeBAxyexlm/l5fjJruJW/js=", "license": "MIT", "engines": { "node": ">= 0.6" @@ -2303,10 +3388,14 @@ }, "node_modules/convert-source-map": { "version": "1.9.0", + "resolved": "https://npm.corp.kuaishou.com/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", "license": "MIT" }, "node_modules/cookie": { "version": "0.5.0", + "resolved": "https://npm.corp.kuaishou.com/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", "license": "MIT", "engines": { "node": ">= 0.6" @@ -2314,14 +3403,20 @@ }, "node_modules/cookie-signature": { "version": "1.0.6", + "resolved": "https://npm.corp.kuaishou.com/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=", "license": "MIT" }, "node_modules/cookiejar": { "version": "2.1.3", + "resolved": "https://npm.corp.kuaishou.com/cookiejar/-/cookiejar-2.1.3.tgz", + "integrity": "sha1-/HpiFuQI50QUuQIwBQhC2s2nWsw=", "license": "MIT" }, "node_modules/copy-webpack-plugin": { "version": "11.0.0", + "resolved": "https://npm.corp.kuaishou.com/copy-webpack-plugin/-/copy-webpack-plugin-11.0.0.tgz", + "integrity": "sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ==", "license": "MIT", "dependencies": { "fast-glob": "^3.2.11", @@ -2344,6 +3439,8 @@ }, "node_modules/copy-webpack-plugin/node_modules/glob-parent": { "version": "6.0.2", + "resolved": "https://npm.corp.kuaishou.com/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", "license": "ISC", "dependencies": { "is-glob": "^4.0.3" @@ -2354,10 +3451,14 @@ }, "node_modules/core-util-is": { "version": "1.0.3", + "resolved": "https://npm.corp.kuaishou.com/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha1-pgQtNjTCsn6TKPg3uWX6yDgI24U=", "license": "MIT" }, "node_modules/cosmiconfig": { "version": "7.0.1", + "resolved": "https://npm.corp.kuaishou.com/cosmiconfig/-/cosmiconfig-7.0.1.tgz", + "integrity": "sha1-cU11ZSLKzoZ4Z8y0R0xdAbuuXW0=", "license": "MIT", "dependencies": { "@types/parse-json": "^4.0.0", @@ -2372,6 +3473,8 @@ }, "node_modules/cross-spawn": { "version": "7.0.3", + "resolved": "https://npm.corp.kuaishou.com/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", "license": "MIT", "dependencies": { "path-key": "^3.1.0", @@ -2384,6 +3487,8 @@ }, "node_modules/crypt": { "version": "0.0.2", + "resolved": "https://npm.corp.kuaishou.com/crypt/-/crypt-0.0.2.tgz", + "integrity": "sha1-iNf/fsDfuG9xPch7u0LQRNPmxBs=", "license": "BSD-3-Clause", "engines": { "node": "*" @@ -2391,6 +3496,8 @@ }, "node_modules/css-loader": { "version": "6.7.1", + "resolved": "https://npm.corp.kuaishou.com/css-loader/-/css-loader-6.7.1.tgz", + "integrity": "sha512-yB5CNFa14MbPJcomwNh3wLThtkZgcNyI2bNMRt8iE5Z8Vwl7f8vQXFAzn2HDOJvtDq2NTZBUGMSUNNyrv3/+cw==", "license": "MIT", "dependencies": { "icss-utils": "^5.1.0", @@ -2415,6 +3522,8 @@ }, "node_modules/css-select": { "version": "4.3.0", + "resolved": "https://npm.corp.kuaishou.com/css-select/-/css-select-4.3.0.tgz", + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", "license": "BSD-2-Clause", "dependencies": { "boolbase": "^1.0.0", @@ -2429,6 +3538,8 @@ }, "node_modules/css-tree": { "version": "2.2.1", + "resolved": "https://npm.corp.kuaishou.com/css-tree/-/css-tree-2.2.1.tgz", + "integrity": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==", "license": "MIT", "dependencies": { "mdn-data": "2.0.28", @@ -2441,6 +3552,8 @@ }, "node_modules/css-what": { "version": "6.1.0", + "resolved": "https://npm.corp.kuaishou.com/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", "license": "BSD-2-Clause", "engines": { "node": ">= 6" @@ -2451,6 +3564,8 @@ }, "node_modules/cssesc": { "version": "3.0.0", + "resolved": "https://npm.corp.kuaishou.com/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", "license": "MIT", "bin": { "cssesc": "bin/cssesc" @@ -2461,10 +3576,14 @@ }, "node_modules/cssfilter": { "version": "0.0.10", + "resolved": "https://npm.corp.kuaishou.com/cssfilter/-/cssfilter-0.0.10.tgz", + "integrity": "sha1-xtJnJjKi5cg+AT5oZKQs6N79IK4=", "license": "MIT" }, "node_modules/csso": { "version": "5.0.5", + "resolved": "https://npm.corp.kuaishou.com/csso/-/csso-5.0.5.tgz", + "integrity": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==", "license": "MIT", "dependencies": { "css-tree": "~2.2.0" @@ -2476,10 +3595,14 @@ }, "node_modules/csstype": { "version": "2.6.21", + "resolved": "https://npm.corp.kuaishou.com/csstype/-/csstype-2.6.21.tgz", + "integrity": "sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==", "license": "MIT" }, "node_modules/debug": { "version": "2.6.9", + "resolved": "https://npm.corp.kuaishou.com/debug/-/debug-2.6.9.tgz", + "integrity": "sha1-XRKFFd8TT/Mn6QpMk/Tgd6U2NB8=", "license": "MIT", "dependencies": { "ms": "2.0.0" @@ -2487,10 +3610,14 @@ }, "node_modules/debug/node_modules/ms": { "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "license": "MIT" }, "node_modules/decamelize": { "version": "1.2.0", + "resolved": "https://npm.corp.kuaishou.com/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", "license": "MIT", "engines": { "node": ">=0.10.0" @@ -2498,6 +3625,8 @@ }, "node_modules/deepmerge": { "version": "1.5.2", + "resolved": "https://npm.corp.kuaishou.com/deepmerge/-/deepmerge-1.5.2.tgz", + "integrity": "sha512-95k0GDqvBjZavkuvzx/YqVLv/6YYa17fz6ILMSf7neqQITCPbnfEnQvEgMPNjH4kgobe7+WIL0yJEHku+H3qtQ==", "license": "MIT", "engines": { "node": ">=0.10.0" @@ -2505,6 +3634,8 @@ }, "node_modules/default-gateway": { "version": "6.0.3", + "resolved": "https://npm.corp.kuaishou.com/default-gateway/-/default-gateway-6.0.3.tgz", + "integrity": "sha1-gZSUyIgFO9t0PtvzQ9bN9/KUOnE=", "license": "BSD-2-Clause", "dependencies": { "execa": "^5.0.0" @@ -2515,6 +3646,8 @@ }, "node_modules/default-gateway/node_modules/execa": { "version": "5.1.1", + "resolved": "https://npm.corp.kuaishou.com/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", "license": "MIT", "dependencies": { "cross-spawn": "^7.0.3", @@ -2536,6 +3669,8 @@ }, "node_modules/default-gateway/node_modules/human-signals": { "version": "2.1.0", + "resolved": "https://npm.corp.kuaishou.com/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha1-3JH8ukLk0G5Kuu0zs+ejwC9RTqA=", "license": "Apache-2.0", "engines": { "node": ">=10.17.0" @@ -2543,6 +3678,8 @@ }, "node_modules/default-gateway/node_modules/is-stream": { "version": "2.0.1", + "resolved": "https://npm.corp.kuaishou.com/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", "license": "MIT", "engines": { "node": ">=8" @@ -2553,6 +3690,8 @@ }, "node_modules/default-gateway/node_modules/npm-run-path": { "version": "4.0.1", + "resolved": "https://npm.corp.kuaishou.com/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha1-t+zR5e1T2o43pV4cImnguX7XSOo=", "license": "MIT", "dependencies": { "path-key": "^3.0.0" @@ -2563,6 +3702,8 @@ }, "node_modules/default-gateway/node_modules/strip-final-newline": { "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", "license": "MIT", "engines": { "node": ">=6" @@ -2570,6 +3711,8 @@ }, "node_modules/defaults": { "version": "1.0.4", + "resolved": "https://npm.corp.kuaishou.com/defaults/-/defaults-1.0.4.tgz", + "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", "license": "MIT", "dependencies": { "clone": "^1.0.2" @@ -2580,6 +3723,8 @@ }, "node_modules/define-lazy-prop": { "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha1-P3rkIRKbyqrJvHSQXJigAJ7J7n8=", "license": "MIT", "engines": { "node": ">=8" @@ -2587,6 +3732,8 @@ }, "node_modules/defined": { "version": "1.0.1", + "resolved": "https://npm.corp.kuaishou.com/defined/-/defined-1.0.1.tgz", + "integrity": "sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q==", "license": "MIT", "funding": { "url": "https://github.com/sponsors/ljharb" @@ -2594,6 +3741,8 @@ }, "node_modules/delayed-stream": { "version": "1.0.0", + "resolved": "https://npm.corp.kuaishou.com/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", "license": "MIT", "engines": { "node": ">=0.4.0" @@ -2601,6 +3750,8 @@ }, "node_modules/depd": { "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", "license": "MIT", "engines": { "node": ">= 0.8" @@ -2608,6 +3759,8 @@ }, "node_modules/destroy": { "version": "1.2.0", + "resolved": "https://npm.corp.kuaishou.com/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", "license": "MIT", "engines": { "node": ">= 0.8", @@ -2616,10 +3769,14 @@ }, "node_modules/detect-node": { "version": "2.1.0", + "resolved": "https://npm.corp.kuaishou.com/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", "license": "MIT" }, "node_modules/detective": { "version": "5.2.1", + "resolved": "https://npm.corp.kuaishou.com/detective/-/detective-5.2.1.tgz", + "integrity": "sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw==", "license": "MIT", "dependencies": { "acorn-node": "^1.8.2", @@ -2635,10 +3792,14 @@ }, "node_modules/didyoumean": { "version": "1.2.2", + "resolved": "https://npm.corp.kuaishou.com/didyoumean/-/didyoumean-1.2.2.tgz", + "integrity": "sha1-mJNG/+noObRVXs9WZu3qDT6K0Dc=", "license": "Apache-2.0" }, "node_modules/dir-glob": { "version": "3.0.1", + "resolved": "https://npm.corp.kuaishou.com/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", "license": "MIT", "dependencies": { "path-type": "^4.0.0" @@ -2649,14 +3810,20 @@ }, "node_modules/dlv": { "version": "1.1.3", + "resolved": "https://npm.corp.kuaishou.com/dlv/-/dlv-1.1.3.tgz", + "integrity": "sha1-XBmKihFFNZbnUUlNSYdLx3MvLnk=", "license": "MIT" }, "node_modules/dns-equal": { "version": "1.0.0", + "resolved": "https://npm.corp.kuaishou.com/dns-equal/-/dns-equal-1.0.0.tgz", + "integrity": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==", "license": "MIT" }, "node_modules/dns-packet": { "version": "5.4.0", + "resolved": "https://npm.corp.kuaishou.com/dns-packet/-/dns-packet-5.4.0.tgz", + "integrity": "sha512-EgqGeaBB8hLiHLZtp/IbaDQTL8pZ0+IvwzSHA6d7VyMDM+B9hgddEMa9xjK5oYnw0ci0JQ6g2XCD7/f6cafU6g==", "license": "MIT", "dependencies": { "@leichtgewicht/ip-codec": "^2.0.1" @@ -2667,6 +3834,8 @@ }, "node_modules/dom-converter": { "version": "0.2.0", + "resolved": "https://npm.corp.kuaishou.com/dom-converter/-/dom-converter-0.2.0.tgz", + "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", "license": "MIT", "dependencies": { "utila": "~0.4" @@ -2674,6 +3843,8 @@ }, "node_modules/dom-serializer": { "version": "1.4.1", + "resolved": "https://npm.corp.kuaishou.com/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", "license": "MIT", "dependencies": { "domelementtype": "^2.0.1", @@ -2686,6 +3857,8 @@ }, "node_modules/domelementtype": { "version": "2.3.0", + "resolved": "https://npm.corp.kuaishou.com/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", "funding": [ { "type": "github", @@ -2696,6 +3869,8 @@ }, "node_modules/domhandler": { "version": "4.3.1", + "resolved": "https://npm.corp.kuaishou.com/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", "license": "BSD-2-Clause", "dependencies": { "domelementtype": "^2.2.0" @@ -2709,6 +3884,8 @@ }, "node_modules/domutils": { "version": "2.8.0", + "resolved": "https://npm.corp.kuaishou.com/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", "license": "BSD-2-Clause", "dependencies": { "dom-serializer": "^1.0.1", @@ -2721,6 +3898,8 @@ }, "node_modules/dot-case": { "version": "3.0.4", + "resolved": "https://npm.corp.kuaishou.com/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha1-mytnDQCkMWZ6inW6Kc0bmICc51E=", "license": "MIT", "dependencies": { "no-case": "^3.0.4", @@ -2729,21 +3908,51 @@ }, "node_modules/ee-first": { "version": "1.1.1", + "resolved": "https://npm.corp.kuaishou.com/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=", "license": "MIT" }, "node_modules/electron-to-chromium": { "version": "1.4.284", + "resolved": "https://npm.corp.kuaishou.com/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz", + "integrity": "sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==", "license": "ISC" }, "node_modules/element-closest": { "version": "3.0.2", + "resolved": "https://npm.corp.kuaishou.com/element-closest/-/element-closest-3.0.2.tgz", + "integrity": "sha1-OBSmmoTzDkjmPq9XNB9Nv0In0qo=", "license": "CC0-1.0", "engines": { "node": ">=0.12.0" } }, + "node_modules/emmet": { + "version": "2.3.6", + "resolved": "https://npm.corp.kuaishou.com/emmet/-/emmet-2.3.6.tgz", + "integrity": "sha512-pLS4PBPDdxuUAmw7Me7+TcHbykTsBKN/S9XJbUOMFQrNv9MoshzyMFK/R57JBm94/6HSL4vHnDeEmxlC82NQ4A==", + "license": "MIT", + "dependencies": { + "@emmetio/abbreviation": "^2.2.3", + "@emmetio/css-abbreviation": "^2.1.4" + } + }, + "node_modules/emmet-monaco-es": { + "version": "5.1.2", + "resolved": "https://npm.corp.kuaishou.com/emmet-monaco-es/-/emmet-monaco-es-5.1.2.tgz", + "integrity": "sha512-P+GwbRfzCAN9socNCLj7hdlmjV1J535wYZX9uoXERRGbbfkzcmfz4i43ClDecqCVt6IsbP0RK8AgX370ClMcJA==", + "license": "MIT", + "dependencies": { + "emmet": "^2.3.6" + }, + "peerDependencies": { + "monaco-editor": ">=0.22.0" + } + }, "node_modules/emojis-list": { "version": "3.0.0", + "resolved": "https://npm.corp.kuaishou.com/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", "license": "MIT", "engines": { "node": ">= 4" @@ -2751,6 +3960,8 @@ }, "node_modules/encodeurl": { "version": "1.0.2", + "resolved": "https://npm.corp.kuaishou.com/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", "license": "MIT", "engines": { "node": ">= 0.8" @@ -2758,6 +3969,8 @@ }, "node_modules/enhanced-resolve": { "version": "5.10.0", + "resolved": "https://npm.corp.kuaishou.com/enhanced-resolve/-/enhanced-resolve-5.10.0.tgz", + "integrity": "sha512-T0yTFjdpldGY8PmuXXR0PyQ1ufZpEGiHVrp7zHKB7jdR4qlmZHhONVM5AQOAWXuF/w3dnHbEQVrNptJgt7F+cQ==", "license": "MIT", "dependencies": { "graceful-fs": "^4.2.4", @@ -2769,6 +3982,8 @@ }, "node_modules/entities": { "version": "2.2.0", + "resolved": "https://npm.corp.kuaishou.com/entities/-/entities-2.2.0.tgz", + "integrity": "sha1-CY3JDruD2N/6CJ1VJWs1HTTE2lU=", "license": "BSD-2-Clause", "funding": { "url": "https://github.com/fb55/entities?sponsor=1" @@ -2776,6 +3991,8 @@ }, "node_modules/envinfo": { "version": "7.8.1", + "resolved": "https://npm.corp.kuaishou.com/envinfo/-/envinfo-7.8.1.tgz", + "integrity": "sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==", "license": "MIT", "bin": { "envinfo": "dist/cli.js" @@ -2786,6 +4003,8 @@ }, "node_modules/error-ex": { "version": "1.3.2", + "resolved": "https://npm.corp.kuaishou.com/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", "license": "MIT", "dependencies": { "is-arrayish": "^0.2.1" @@ -2793,14 +4012,20 @@ }, "node_modules/es-module-lexer": { "version": "0.9.3", + "resolved": "https://npm.corp.kuaishou.com/es-module-lexer/-/es-module-lexer-0.9.3.tgz", + "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==", "license": "MIT" }, "node_modules/es6-promise": { "version": "4.2.3", + "resolved": "https://npm.corp.kuaishou.com/es6-promise/-/es6-promise-4.2.3.tgz", + "integrity": "sha1-KUVLjbIbc/vvHfBww13Am3/WBsQ=", "license": "MIT" }, "node_modules/esbuild": { "version": "0.14.54", + "resolved": "https://npm.corp.kuaishou.com/esbuild/-/esbuild-0.14.54.tgz", + "integrity": "sha512-Cy9llcy8DvET5uznocPyqL3BFRrFXSVqbgpMJ9Wz8oVjZlh/zUSNbPRbov0VX7VxN2JH1Oa0uNxZ7eLRb62pJA==", "hasInstallScript": true, "license": "MIT", "bin": { @@ -2835,6 +4060,8 @@ }, "node_modules/esbuild-darwin-64": { "version": "0.14.54", + "resolved": "https://npm.corp.kuaishou.com/esbuild-darwin-64/-/esbuild-darwin-64-0.14.54.tgz", + "integrity": "sha512-jtdKWV3nBviOd5v4hOpkVmpxsBy90CGzebpbO9beiqUYVMBtSc0AL9zGftFuBon7PNDcdvNCEuQqw2x0wP9yug==", "cpu": [ "x64" ], @@ -2849,6 +4076,8 @@ }, "node_modules/esbuild-loader": { "version": "2.19.0", + "resolved": "https://npm.corp.kuaishou.com/esbuild-loader/-/esbuild-loader-2.19.0.tgz", + "integrity": "sha512-urGNVE6Tl2rqx92ElKi/LiExXjGvcH6HfDBFzJ9Ppwqh4n6Jmx8x7RKAyMzSM78b6CAaJLhDncG5sPrL0ROh5Q==", "license": "MIT", "dependencies": { "esbuild": "^0.14.39", @@ -2867,6 +4096,8 @@ }, "node_modules/escalade": { "version": "3.1.1", + "resolved": "https://npm.corp.kuaishou.com/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", "license": "MIT", "engines": { "node": ">=6" @@ -2874,10 +4105,14 @@ }, "node_modules/escape-html": { "version": "1.0.3", + "resolved": "https://npm.corp.kuaishou.com/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", "license": "MIT" }, "node_modules/escape-string-regexp": { "version": "1.0.5", + "resolved": "https://npm.corp.kuaishou.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", "license": "MIT", "engines": { "node": ">=0.8.0" @@ -2885,6 +4120,8 @@ }, "node_modules/eslint-scope": { "version": "5.1.1", + "resolved": "https://npm.corp.kuaishou.com/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha1-54blmmbLkrP2wfsNUIqrF0hI9Iw=", "license": "BSD-2-Clause", "dependencies": { "esrecurse": "^4.3.0", @@ -2896,6 +4133,8 @@ }, "node_modules/esprima": { "version": "4.0.1", + "resolved": "https://npm.corp.kuaishou.com/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", "license": "BSD-2-Clause", "bin": { "esparse": "bin/esparse.js", @@ -2907,6 +4146,8 @@ }, "node_modules/esrecurse": { "version": "4.3.0", + "resolved": "https://npm.corp.kuaishou.com/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha1-eteWTWeauyi+5yzsY3WLHF0smSE=", "license": "BSD-2-Clause", "dependencies": { "estraverse": "^5.2.0" @@ -2917,6 +4158,8 @@ }, "node_modules/esrecurse/node_modules/estraverse": { "version": "5.3.0", + "resolved": "https://npm.corp.kuaishou.com/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha1-LupSkHAvJquP5TcDcP+GyWXSESM=", "license": "BSD-2-Clause", "engines": { "node": ">=4.0" @@ -2924,6 +4167,8 @@ }, "node_modules/estraverse": { "version": "4.3.0", + "resolved": "https://npm.corp.kuaishou.com/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha1-OYrT88WiSUi+dyXoPRGn3ijNvR0=", "license": "BSD-2-Clause", "engines": { "node": ">=4.0" @@ -2931,10 +4176,14 @@ }, "node_modules/estree-walker": { "version": "2.0.2", + "resolved": "https://npm.corp.kuaishou.com/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha1-UvAQF4wqTBF6d1fP6UKtt9LaTKw=", "license": "MIT" }, "node_modules/etag": { "version": "1.8.1", + "resolved": "https://npm.corp.kuaishou.com/etag/-/etag-1.8.1.tgz", + "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=", "license": "MIT", "engines": { "node": ">= 0.6" @@ -2942,6 +4191,8 @@ }, "node_modules/event-target-shim": { "version": "5.0.1", + "resolved": "https://npm.corp.kuaishou.com/event-target-shim/-/event-target-shim-5.0.1.tgz", + "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", "license": "MIT", "engines": { "node": ">=6" @@ -2949,10 +4200,14 @@ }, "node_modules/eventemitter3": { "version": "2.0.3", + "resolved": "https://npm.corp.kuaishou.com/eventemitter3/-/eventemitter3-2.0.3.tgz", + "integrity": "sha512-jLN68Dx5kyFHaePoXWPsCGW5qdyZQtLYHkxkg02/Mz6g0kYpDx4FyP6XfArhQdlOC4b8Mv+EMxPo/8La7Tzghg==", "license": "MIT" }, "node_modules/events": { "version": "3.3.0", + "resolved": "https://npm.corp.kuaishou.com/events/-/events-3.3.0.tgz", + "integrity": "sha1-Mala0Kkk4tLEGagTrrLE6HjqdAA=", "license": "MIT", "engines": { "node": ">=0.8.x" @@ -2960,6 +4215,8 @@ }, "node_modules/execa": { "version": "6.1.0", + "resolved": "https://npm.corp.kuaishou.com/execa/-/execa-6.1.0.tgz", + "integrity": "sha512-QVWlX2e50heYJcCPG0iWtf8r0xjEYfz/OYLGDYH+IyjWezzPNxz63qNFOu0l4YftGWuizFVZHHs8PrLU5p2IDA==", "license": "MIT", "dependencies": { "cross-spawn": "^7.0.3", @@ -2981,6 +4238,8 @@ }, "node_modules/execa/node_modules/mimic-fn": { "version": "4.0.0", + "resolved": "https://npm.corp.kuaishou.com/mimic-fn/-/mimic-fn-4.0.0.tgz", + "integrity": "sha1-YKkFUNXLCyOcymXYk7GlOymHHsw=", "license": "MIT", "engines": { "node": ">=12" @@ -2991,6 +4250,8 @@ }, "node_modules/execa/node_modules/onetime": { "version": "6.0.0", + "resolved": "https://npm.corp.kuaishou.com/onetime/-/onetime-6.0.0.tgz", + "integrity": "sha1-fCTBjtH9LpvKS9JoBqM2E8d9NLQ=", "license": "MIT", "dependencies": { "mimic-fn": "^4.0.0" @@ -3004,6 +4265,8 @@ }, "node_modules/express": { "version": "4.18.2", + "resolved": "https://npm.corp.kuaishou.com/express/-/express-4.18.2.tgz", + "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", "license": "MIT", "dependencies": { "accepts": "~1.3.8", @@ -3044,10 +4307,14 @@ }, "node_modules/extend": { "version": "3.0.2", + "resolved": "https://npm.corp.kuaishou.com/extend/-/extend-3.0.2.tgz", + "integrity": "sha1-+LETa0Bx+9jrFAr/hYsQGewpFfo=", "license": "MIT" }, "node_modules/extend-shallow": { "version": "2.0.1", + "resolved": "https://npm.corp.kuaishou.com/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", "license": "MIT", "dependencies": { "is-extendable": "^0.1.0" @@ -3058,10 +4325,14 @@ }, "node_modules/fast-deep-equal": { "version": "3.1.3", + "resolved": "https://npm.corp.kuaishou.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha1-On1WtVnWy8PrUSMlJE5hmmXGxSU=", "license": "MIT" }, "node_modules/fast-glob": { "version": "3.2.12", + "resolved": "https://npm.corp.kuaishou.com/fast-glob/-/fast-glob-3.2.12.tgz", + "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", "license": "MIT", "dependencies": { "@nodelib/fs.stat": "^2.0.2", @@ -3076,14 +4347,20 @@ }, "node_modules/fast-json-stable-stringify": { "version": "2.1.0", + "resolved": "https://npm.corp.kuaishou.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", "license": "MIT" }, "node_modules/fast-safe-stringify": { "version": "2.1.1", + "resolved": "https://npm.corp.kuaishou.com/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz", + "integrity": "sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==", "license": "MIT" }, "node_modules/fastq": { "version": "1.13.0", + "resolved": "https://npm.corp.kuaishou.com/fastq/-/fastq-1.13.0.tgz", + "integrity": "sha1-YWdg+Ip1Jr38WWt8q4wYk4w2uYw=", "license": "ISC", "dependencies": { "reusify": "^1.0.4" @@ -3091,6 +4368,8 @@ }, "node_modules/faye-websocket": { "version": "0.11.4", + "resolved": "https://npm.corp.kuaishou.com/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha1-fw2Sdc/dhqHJY9yLZfzEUe3Lsdo=", "license": "Apache-2.0", "dependencies": { "websocket-driver": ">=0.5.1" @@ -3101,6 +4380,8 @@ }, "node_modules/fill-range": { "version": "7.0.1", + "resolved": "https://npm.corp.kuaishou.com/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha1-GRmmp8df44ssfHflGYU12prN2kA=", "license": "MIT", "dependencies": { "to-regex-range": "^5.0.1" @@ -3111,6 +4392,8 @@ }, "node_modules/finalhandler": { "version": "1.2.0", + "resolved": "https://npm.corp.kuaishou.com/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", "license": "MIT", "dependencies": { "debug": "2.6.9", @@ -3127,6 +4410,8 @@ }, "node_modules/follow-redirects": { "version": "1.15.2", + "resolved": "https://npm.corp.kuaishou.com/follow-redirects/-/follow-redirects-1.15.2.tgz", + "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", "funding": [ { "type": "individual", @@ -3145,6 +4430,8 @@ }, "node_modules/form-data": { "version": "2.5.1", + "resolved": "https://npm.corp.kuaishou.com/form-data/-/form-data-2.5.1.tgz", + "integrity": "sha512-m21N3WOmEEURgk6B9GLOE4RuWOFf28Lhh9qGYeNlGq4VDXUlJy2th2slBNU8Gp8EzloYZOibZJ7t5ecIrFSjVA==", "license": "MIT", "dependencies": { "asynckit": "^0.4.0", @@ -3157,6 +4444,8 @@ }, "node_modules/formidable": { "version": "1.2.6", + "resolved": "https://npm.corp.kuaishou.com/formidable/-/formidable-1.2.6.tgz", + "integrity": "sha1-0qUdYBYrvJtKBV2EV6fHUxXRoWg=", "license": "MIT", "funding": { "url": "https://ko-fi.com/tunnckoCore/commissions" @@ -3164,6 +4453,8 @@ }, "node_modules/forwarded": { "version": "0.2.0", + "resolved": "https://npm.corp.kuaishou.com/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha1-ImmTZCiq1MFcfr6XeahL8LKoGBE=", "license": "MIT", "engines": { "node": ">= 0.6" @@ -3171,6 +4462,8 @@ }, "node_modules/fraction.js": { "version": "4.2.0", + "resolved": "https://npm.corp.kuaishou.com/fraction.js/-/fraction.js-4.2.0.tgz", + "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==", "license": "MIT", "engines": { "node": "*" @@ -3182,6 +4475,8 @@ }, "node_modules/fresh": { "version": "0.5.2", + "resolved": "https://npm.corp.kuaishou.com/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", "license": "MIT", "engines": { "node": ">= 0.6" @@ -3189,6 +4484,8 @@ }, "node_modules/fs-extra": { "version": "10.1.0", + "resolved": "https://npm.corp.kuaishou.com/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", "license": "MIT", "dependencies": { "graceful-fs": "^4.2.0", @@ -3201,14 +4498,20 @@ }, "node_modules/fs-monkey": { "version": "1.0.3", + "resolved": "https://npm.corp.kuaishou.com/fs-monkey/-/fs-monkey-1.0.3.tgz", + "integrity": "sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==", "license": "Unlicense" }, "node_modules/fs.realpath": { "version": "1.0.0", + "resolved": "https://npm.corp.kuaishou.com/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", "license": "ISC" }, "node_modules/fsevents": { "version": "2.3.2", + "resolved": "https://npm.corp.kuaishou.com/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", "license": "MIT", "optional": true, "os": [ @@ -3220,10 +4523,14 @@ }, "node_modules/function-bind": { "version": "1.1.1", + "resolved": "https://npm.corp.kuaishou.com/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", "license": "MIT" }, "node_modules/gensync": { "version": "1.0.0-beta.2", + "resolved": "https://npm.corp.kuaishou.com/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", "license": "MIT", "engines": { "node": ">=6.9.0" @@ -3231,6 +4538,8 @@ }, "node_modules/get-intrinsic": { "version": "1.1.3", + "resolved": "https://npm.corp.kuaishou.com/get-intrinsic/-/get-intrinsic-1.1.3.tgz", + "integrity": "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==", "license": "MIT", "dependencies": { "function-bind": "^1.1.1", @@ -3243,6 +4552,8 @@ }, "node_modules/get-stream": { "version": "6.0.1", + "resolved": "https://npm.corp.kuaishou.com/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha1-omLY7vZ6ztV8KFKtYWdSakPL97c=", "license": "MIT", "engines": { "node": ">=10" @@ -3253,6 +4564,8 @@ }, "node_modules/glob": { "version": "7.2.3", + "resolved": "https://npm.corp.kuaishou.com/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "license": "ISC", "dependencies": { "fs.realpath": "^1.0.0", @@ -3271,6 +4584,8 @@ }, "node_modules/glob-parent": { "version": "5.1.2", + "resolved": "https://npm.corp.kuaishou.com/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "license": "ISC", "dependencies": { "is-glob": "^4.0.1" @@ -3281,10 +4596,14 @@ }, "node_modules/glob-to-regexp": { "version": "0.4.1", + "resolved": "https://npm.corp.kuaishou.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha1-x1KXCHyFG5pXi9IX3VmpL1n+VG4=", "license": "BSD-2-Clause" }, "node_modules/globals": { "version": "11.12.0", + "resolved": "https://npm.corp.kuaishou.com/globals/-/globals-11.12.0.tgz", + "integrity": "sha1-q4eVM4hooLq9hSV1gBjCp+uVxC4=", "license": "MIT", "engines": { "node": ">=4" @@ -3292,6 +4611,8 @@ }, "node_modules/globby": { "version": "13.1.2", + "resolved": "https://npm.corp.kuaishou.com/globby/-/globby-13.1.2.tgz", + "integrity": "sha512-LKSDZXToac40u8Q1PQtZihbNdTYSNMuWe+K5l+oa6KgDzSvVrHXlJy40hUP522RjAIoNLJYBJi7ow+rbFpIhHQ==", "license": "MIT", "dependencies": { "dir-glob": "^3.0.1", @@ -3309,10 +4630,14 @@ }, "node_modules/graceful-fs": { "version": "4.2.10", + "resolved": "https://npm.corp.kuaishou.com/graceful-fs/-/graceful-fs-4.2.10.tgz", + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", "license": "ISC" }, "node_modules/gray-matter": { "version": "4.0.3", + "resolved": "https://npm.corp.kuaishou.com/gray-matter/-/gray-matter-4.0.3.tgz", + "integrity": "sha1-6JPAZIJd5z6h9ffYjHqfcnQoh5g=", "license": "MIT", "dependencies": { "js-yaml": "^3.13.1", @@ -3326,6 +4651,8 @@ }, "node_modules/hanabi": { "version": "0.4.0", + "resolved": "https://npm.corp.kuaishou.com/hanabi/-/hanabi-0.4.0.tgz", + "integrity": "sha512-ixJH94fwmmVzUSdxl7TMkVZJmsq4d2JKrxedpM5V1V+91iVHL0q6NnJi4xiDahK6Vo00xT17H8H6b4F6RVbsOg==", "license": "MIT", "dependencies": { "comment-regex": "^1.0.0" @@ -3333,10 +4660,14 @@ }, "node_modules/handle-thing": { "version": "2.0.1", + "resolved": "https://npm.corp.kuaishou.com/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha1-hX95zjWVgMNA1DCBzGSJcNC7I04=", "license": "MIT" }, "node_modules/has": { "version": "1.0.3", + "resolved": "https://npm.corp.kuaishou.com/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", "license": "MIT", "dependencies": { "function-bind": "^1.1.1" @@ -3347,6 +4678,8 @@ }, "node_modules/has-flag": { "version": "4.0.0", + "resolved": "https://npm.corp.kuaishou.com/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=", "license": "MIT", "engines": { "node": ">=8" @@ -3354,6 +4687,8 @@ }, "node_modules/has-symbols": { "version": "1.0.3", + "resolved": "https://npm.corp.kuaishou.com/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", "license": "MIT", "engines": { "node": ">= 0.4" @@ -3364,17 +4699,34 @@ }, "node_modules/hash-sum": { "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/hash-sum/-/hash-sum-2.0.0.tgz", + "integrity": "sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==", "license": "MIT" }, "node_modules/he": { "version": "0.5.0", + "resolved": "https://npm.corp.kuaishou.com/he/-/he-0.5.0.tgz", + "integrity": "sha1-LAX/rvkLaOhg8/0rVO9YCYknfuI=", "license": "MIT", "bin": { "he": "bin/he" } }, + "node_modules/highlight.js": { + "version": "9.18.5", + "resolved": "https://npm.corp.kuaishou.com/highlight.js/-/highlight.js-9.18.5.tgz", + "integrity": "sha512-a5bFyofd/BHCX52/8i8uJkjr9DYwXIPnM/plwI6W7ezItLGqzt7X2G2nXuYSfsIJdkwwj/g9DG1LkcGJI/dDoA==", + "deprecated": "Support has ended for 9.x series. Upgrade to @latest", + "hasInstallScript": true, + "license": "BSD-3-Clause", + "engines": { + "node": "*" + } + }, "node_modules/hpack.js": { "version": "2.1.6", + "resolved": "https://npm.corp.kuaishou.com/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", "license": "MIT", "dependencies": { "inherits": "^2.0.1", @@ -3385,6 +4737,8 @@ }, "node_modules/hpack.js/node_modules/readable-stream": { "version": "2.3.7", + "resolved": "https://npm.corp.kuaishou.com/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", "license": "MIT", "dependencies": { "core-util-is": "~1.0.0", @@ -3398,10 +4752,14 @@ }, "node_modules/hpack.js/node_modules/safe-buffer": { "version": "5.1.2", + "resolved": "https://npm.corp.kuaishou.com/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha1-mR7GnSluAxN0fVm9/St0XDX4go0=", "license": "MIT" }, "node_modules/hpack.js/node_modules/string_decoder": { "version": "1.1.1", + "resolved": "https://npm.corp.kuaishou.com/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha1-nPFhG6YmhdcDCunkujQUnDrwP8g=", "license": "MIT", "dependencies": { "safe-buffer": "~5.1.0" @@ -3409,10 +4767,14 @@ }, "node_modules/html-entities": { "version": "2.3.3", + "resolved": "https://npm.corp.kuaishou.com/html-entities/-/html-entities-2.3.3.tgz", + "integrity": "sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==", "license": "MIT" }, "node_modules/html-minifier-terser": { "version": "6.1.0", + "resolved": "https://npm.corp.kuaishou.com/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==", "license": "MIT", "dependencies": { "camel-case": "^4.1.2", @@ -3432,6 +4794,8 @@ }, "node_modules/html-minifier-terser/node_modules/commander": { "version": "8.3.0", + "resolved": "https://npm.corp.kuaishou.com/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", "license": "MIT", "engines": { "node": ">= 12" @@ -3439,6 +4803,8 @@ }, "node_modules/html-minifier-terser/node_modules/he": { "version": "1.2.0", + "resolved": "https://npm.corp.kuaishou.com/he/-/he-1.2.0.tgz", + "integrity": "sha1-hK5l+n6vsWX922FWauFLrwVmTw8=", "license": "MIT", "bin": { "he": "bin/he" @@ -3446,6 +4812,8 @@ }, "node_modules/html-webpack-plugin": { "version": "5.5.0", + "resolved": "https://npm.corp.kuaishou.com/html-webpack-plugin/-/html-webpack-plugin-5.5.0.tgz", + "integrity": "sha1-w5EZNvV2gcH59Ni2jBWM2d/lL1A=", "license": "MIT", "dependencies": { "@types/html-minifier-terser": "^6.0.0", @@ -3467,6 +4835,8 @@ }, "node_modules/htmlparser2": { "version": "6.1.0", + "resolved": "https://npm.corp.kuaishou.com/htmlparser2/-/htmlparser2-6.1.0.tgz", + "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", "funding": [ "https://github.com/fb55/htmlparser2?sponsor=1", { @@ -3484,10 +4854,14 @@ }, "node_modules/http-deceiver": { "version": "1.2.7", + "resolved": "https://npm.corp.kuaishou.com/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=", "license": "MIT" }, "node_modules/http-errors": { "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", "license": "MIT", "dependencies": { "depd": "2.0.0", @@ -3502,10 +4876,14 @@ }, "node_modules/http-parser-js": { "version": "0.5.8", + "resolved": "https://npm.corp.kuaishou.com/http-parser-js/-/http-parser-js-0.5.8.tgz", + "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==", "license": "MIT" }, "node_modules/http-proxy": { "version": "1.18.1", + "resolved": "https://npm.corp.kuaishou.com/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", "license": "MIT", "dependencies": { "eventemitter3": "^4.0.0", @@ -3518,6 +4896,8 @@ }, "node_modules/http-proxy-middleware": { "version": "2.0.6", + "resolved": "https://npm.corp.kuaishou.com/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz", + "integrity": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==", "license": "MIT", "dependencies": { "@types/http-proxy": "^1.17.8", @@ -3540,10 +4920,14 @@ }, "node_modules/http-proxy/node_modules/eventemitter3": { "version": "4.0.7", + "resolved": "https://npm.corp.kuaishou.com/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", "license": "MIT" }, "node_modules/human-signals": { "version": "3.0.1", + "resolved": "https://npm.corp.kuaishou.com/human-signals/-/human-signals-3.0.1.tgz", + "integrity": "sha1-x0CSCFna+lDloyItqdO/S7Dl7vU=", "license": "Apache-2.0", "engines": { "node": ">=12.20.0" @@ -3551,6 +4935,8 @@ }, "node_modules/iconv-lite": { "version": "0.4.24", + "resolved": "https://npm.corp.kuaishou.com/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", "license": "MIT", "dependencies": { "safer-buffer": ">= 2.1.2 < 3" @@ -3561,6 +4947,8 @@ }, "node_modules/icss-utils": { "version": "5.1.0", + "resolved": "https://npm.corp.kuaishou.com/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha1-xr5oWKvQE9do6YNmrkfiXViHsa4=", "license": "ISC", "engines": { "node": "^10 || ^12 || >= 14" @@ -3571,6 +4959,8 @@ }, "node_modules/ieee754": { "version": "1.2.1", + "resolved": "https://npm.corp.kuaishou.com/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", "funding": [ { "type": "github", @@ -3589,6 +4979,8 @@ }, "node_modules/ignore": { "version": "5.2.0", + "resolved": "https://npm.corp.kuaishou.com/ignore/-/ignore-5.2.0.tgz", + "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", "license": "MIT", "engines": { "node": ">= 4" @@ -3596,10 +4988,14 @@ }, "node_modules/immutable": { "version": "4.1.0", + "resolved": "https://npm.corp.kuaishou.com/immutable/-/immutable-4.1.0.tgz", + "integrity": "sha512-oNkuqVTA8jqG1Q6c+UglTOD1xhC1BtjKI7XkCXRkZHrN5m18/XsnUp8Q89GkQO/z+0WjonSvl0FLhDYftp46nQ==", "license": "MIT" }, "node_modules/import-fresh": { "version": "3.3.0", + "resolved": "https://npm.corp.kuaishou.com/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", "license": "MIT", "dependencies": { "parent-module": "^1.0.0", @@ -3614,6 +5010,8 @@ }, "node_modules/inflight": { "version": "1.0.6", + "resolved": "https://npm.corp.kuaishou.com/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", "license": "ISC", "dependencies": { "once": "^1.3.0", @@ -3622,18 +5020,33 @@ }, "node_modules/inherits": { "version": "2.0.4", + "resolved": "https://npm.corp.kuaishou.com/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha1-D6LGT5MpF8NDOg3tVTY6rjdBa3w=", "license": "ISC" }, "node_modules/insane": { "version": "2.6.2", + "resolved": "https://npm.corp.kuaishou.com/insane/-/insane-2.6.2.tgz", + "integrity": "sha1-wqtouz4AarRRVg0bRGkXMpwKgSA=", "license": "MIT", "dependencies": { "assignment": "2.0.0", "he": "0.5.0" } }, + "node_modules/install": { + "version": "0.13.0", + "resolved": "https://npm.corp.kuaishou.com/install/-/install-0.13.0.tgz", + "integrity": "sha1-avbp2p3QmH3iq0IPeOYNnBcmB3Y=", + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, "node_modules/invert-kv": { "version": "1.0.0", + "resolved": "https://npm.corp.kuaishou.com/invert-kv/-/invert-kv-1.0.0.tgz", + "integrity": "sha512-xgs2NH9AE66ucSq4cNG1nhSFghr5l6tdL15Pk+jl46bmmBapgoaY/AacXyaDznAqmGL99TiLSQgO/XazFSKYeQ==", "license": "MIT", "engines": { "node": ">=0.10.0" @@ -3641,6 +5054,8 @@ }, "node_modules/ipaddr.js": { "version": "2.0.1", + "resolved": "https://npm.corp.kuaishou.com/ipaddr.js/-/ipaddr.js-2.0.1.tgz", + "integrity": "sha1-7KJWp6h36Reus2iwp0l930LvgcA=", "license": "MIT", "engines": { "node": ">= 10" @@ -3648,10 +5063,14 @@ }, "node_modules/is-arrayish": { "version": "0.2.1", + "resolved": "https://npm.corp.kuaishou.com/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", "license": "MIT" }, "node_modules/is-binary-path": { "version": "2.1.0", + "resolved": "https://npm.corp.kuaishou.com/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha1-6h9/O4DwZCNug0cPhsCcJU+0Wwk=", "license": "MIT", "dependencies": { "binary-extensions": "^2.0.0" @@ -3662,10 +5081,14 @@ }, "node_modules/is-buffer": { "version": "1.1.6", + "resolved": "https://npm.corp.kuaishou.com/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", "license": "MIT" }, "node_modules/is-core-module": { "version": "2.11.0", + "resolved": "https://npm.corp.kuaishou.com/is-core-module/-/is-core-module-2.11.0.tgz", + "integrity": "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==", "license": "MIT", "dependencies": { "has": "^1.0.3" @@ -3676,6 +5099,8 @@ }, "node_modules/is-docker": { "version": "2.2.1", + "resolved": "https://npm.corp.kuaishou.com/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha1-M+6r4jz+hvFL3kQIoCwM+4U6zao=", "license": "MIT", "bin": { "is-docker": "cli.js" @@ -3689,6 +5114,8 @@ }, "node_modules/is-extendable": { "version": "0.1.1", + "resolved": "https://npm.corp.kuaishou.com/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", "license": "MIT", "engines": { "node": ">=0.10.0" @@ -3696,6 +5123,8 @@ }, "node_modules/is-extglob": { "version": "2.1.1", + "resolved": "https://npm.corp.kuaishou.com/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", "license": "MIT", "engines": { "node": ">=0.10.0" @@ -3703,6 +5132,8 @@ }, "node_modules/is-fullwidth-code-point": { "version": "1.0.0", + "resolved": "https://npm.corp.kuaishou.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==", "license": "MIT", "dependencies": { "number-is-nan": "^1.0.0" @@ -3713,6 +5144,8 @@ }, "node_modules/is-glob": { "version": "4.0.3", + "resolved": "https://npm.corp.kuaishou.com/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "license": "MIT", "dependencies": { "is-extglob": "^2.1.1" @@ -3723,6 +5156,8 @@ }, "node_modules/is-interactive": { "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/is-interactive/-/is-interactive-2.0.0.tgz", + "integrity": "sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==", "license": "MIT", "engines": { "node": ">=12" @@ -3733,6 +5168,8 @@ }, "node_modules/is-number": { "version": "7.0.0", + "resolved": "https://npm.corp.kuaishou.com/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha1-dTU0W4lnNNX4DE0GxQlVUnoU8Ss=", "license": "MIT", "engines": { "node": ">=0.12.0" @@ -3740,6 +5177,8 @@ }, "node_modules/is-plain-obj": { "version": "3.0.0", + "resolved": "https://npm.corp.kuaishou.com/is-plain-obj/-/is-plain-obj-3.0.0.tgz", + "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", "license": "MIT", "engines": { "node": ">=10" @@ -3750,6 +5189,8 @@ }, "node_modules/is-plain-object": { "version": "2.0.4", + "resolved": "https://npm.corp.kuaishou.com/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", "license": "MIT", "dependencies": { "isobject": "^3.0.1" @@ -3760,6 +5201,8 @@ }, "node_modules/is-stream": { "version": "3.0.0", + "resolved": "https://npm.corp.kuaishou.com/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", "license": "MIT", "engines": { "node": "^12.20.0 || ^14.13.1 || >=16.0.0" @@ -3770,6 +5213,8 @@ }, "node_modules/is-unicode-supported": { "version": "1.3.0", + "resolved": "https://npm.corp.kuaishou.com/is-unicode-supported/-/is-unicode-supported-1.3.0.tgz", + "integrity": "sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==", "license": "MIT", "engines": { "node": ">=12" @@ -3780,6 +5225,8 @@ }, "node_modules/is-wsl": { "version": "2.2.0", + "resolved": "https://npm.corp.kuaishou.com/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha1-dKTHbnfKn9P5MvKQwX6jJs0VcnE=", "license": "MIT", "dependencies": { "is-docker": "^2.0.0" @@ -3790,28 +5237,40 @@ }, "node_modules/isarray": { "version": "1.0.0", + "resolved": "https://npm.corp.kuaishou.com/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", "license": "MIT" }, "node_modules/isexe": { "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", "license": "ISC" }, "node_modules/isobject": { "version": "3.0.1", + "resolved": "https://npm.corp.kuaishou.com/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/javascript-state-machine": { - "version": "2.4.0" + "version": "2.4.0", + "resolved": "https://npm.corp.kuaishou.com/javascript-state-machine/-/javascript-state-machine-2.4.0.tgz", + "integrity": "sha1-2L4x7DjySsGhgy8LZy/DzV95yW4=" }, "node_modules/javascript-stringify": { "version": "2.1.0", + "resolved": "https://npm.corp.kuaishou.com/javascript-stringify/-/javascript-stringify-2.1.0.tgz", + "integrity": "sha1-J8dlOb4U2L0Sghmi1zGwkzeQTnk=", "license": "MIT" }, "node_modules/jest-worker": { "version": "27.5.1", + "resolved": "https://npm.corp.kuaishou.com/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", "license": "MIT", "dependencies": { "@types/node": "*", @@ -3824,6 +5283,8 @@ }, "node_modules/jest-worker/node_modules/supports-color": { "version": "8.1.1", + "resolved": "https://npm.corp.kuaishou.com/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha1-zW/BfihQDP9WwbhsCn/UpUpzAFw=", "license": "MIT", "dependencies": { "has-flag": "^4.0.0" @@ -3837,17 +5298,29 @@ }, "node_modules/joycon": { "version": "3.1.1", + "resolved": "https://npm.corp.kuaishou.com/joycon/-/joycon-3.1.1.tgz", + "integrity": "sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==", "license": "MIT", "engines": { "node": ">=10" } }, + "node_modules/js-base64": { + "version": "3.7.2", + "resolved": "https://npm.corp.kuaishou.com/js-base64/-/js-base64-3.7.2.tgz", + "integrity": "sha512-NnRs6dsyqUXejqk/yv2aiXlAvOs56sLkX6nUdeaNezI5LFFLlsZjOThmwnrcwh5ZZRwZlCMnVAY3CvhIhoVEKQ==", + "license": "BSD-3-Clause" + }, "node_modules/js-tokens": { "version": "4.0.0", + "resolved": "https://npm.corp.kuaishou.com/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha1-GSA/tZmR35jjoocFDUZHzerzJJk=", "license": "MIT" }, "node_modules/js-yaml": { "version": "3.14.1", + "resolved": "https://npm.corp.kuaishou.com/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha1-2ugS/bOCX6MGYJqHFzg8UMNqBTc=", "license": "MIT", "dependencies": { "argparse": "^1.0.7", @@ -3859,6 +5332,8 @@ }, "node_modules/js-yaml/node_modules/argparse": { "version": "1.0.10", + "resolved": "https://npm.corp.kuaishou.com/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha1-vNZ5HqWuCXJeF+WtmIE0zUCz2RE=", "license": "MIT", "dependencies": { "sprintf-js": "~1.0.2" @@ -3866,6 +5341,8 @@ }, "node_modules/jsesc": { "version": "2.5.2", + "resolved": "https://npm.corp.kuaishou.com/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", "license": "MIT", "bin": { "jsesc": "bin/jsesc" @@ -3876,14 +5353,20 @@ }, "node_modules/json-parse-even-better-errors": { "version": "2.3.1", + "resolved": "https://npm.corp.kuaishou.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", "license": "MIT" }, "node_modules/json-schema-traverse": { "version": "1.0.0", + "resolved": "https://npm.corp.kuaishou.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", "license": "MIT" }, "node_modules/json5": { "version": "2.2.1", + "resolved": "https://npm.corp.kuaishou.com/json5/-/json5-2.2.1.tgz", + "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==", "license": "MIT", "bin": { "json5": "lib/cli.js" @@ -3892,8 +5375,16 @@ "node": ">=6" } }, + "node_modules/jsonc-parser": { + "version": "3.2.0", + "resolved": "https://npm.corp.kuaishou.com/jsonc-parser/-/jsonc-parser-3.2.0.tgz", + "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==", + "license": "MIT" + }, "node_modules/jsonfile": { "version": "6.1.0", + "resolved": "https://npm.corp.kuaishou.com/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", "license": "MIT", "dependencies": { "universalify": "^2.0.0" @@ -3904,6 +5395,8 @@ }, "node_modules/kind-of": { "version": "6.0.3", + "resolved": "https://npm.corp.kuaishou.com/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha1-B8BQNKbDSfoG4k+jWqdttFgM5N0=", "license": "MIT", "engines": { "node": ">=0.10.0" @@ -3911,6 +5404,8 @@ }, "node_modules/klona": { "version": "2.0.5", + "resolved": "https://npm.corp.kuaishou.com/klona/-/klona-2.0.5.tgz", + "integrity": "sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==", "license": "MIT", "engines": { "node": ">= 8" @@ -3918,6 +5413,8 @@ }, "node_modules/lcid": { "version": "1.0.0", + "resolved": "https://npm.corp.kuaishou.com/lcid/-/lcid-1.0.0.tgz", + "integrity": "sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=", "license": "MIT", "dependencies": { "invert-kv": "^1.0.0" @@ -3928,6 +5425,8 @@ }, "node_modules/leancloud-realtime": { "version": "5.0.0-rc.7", + "resolved": "https://npm.corp.kuaishou.com/leancloud-realtime/-/leancloud-realtime-5.0.0-rc.7.tgz", + "integrity": "sha1-7zFP31mKCjKj7tlFPMLKMc+nl4E=", "license": "MIT", "dependencies": { "@babel/runtime": "^7.10.2", @@ -3947,6 +5446,8 @@ }, "node_modules/leancloud-realtime-plugin-live-query": { "version": "1.2.0", + "resolved": "https://npm.corp.kuaishou.com/leancloud-realtime-plugin-live-query/-/leancloud-realtime-plugin-live-query-1.2.0.tgz", + "integrity": "sha1-HgfaG1uZ5EzdvDsFIjRCLyeMSrk=", "license": "MIT", "peerDependencies": { "leancloud-realtime": "^3.5.0 || ^4.0.0-beta.2 || ^5.0.0-alpha.2" @@ -3954,10 +5455,14 @@ }, "node_modules/leancloud-realtime/node_modules/@leancloud/adapter-types": { "version": "3.0.0", + "resolved": "https://npm.corp.kuaishou.com/@leancloud%2fadapter-types/-/adapter-types-3.0.0.tgz", + "integrity": "sha1-ccXo43BlvqSRRlCEi1WmJi1lhXc=", "license": "MIT" }, "node_modules/leancloud-realtime/node_modules/debug": { "version": "3.2.7", + "resolved": "https://npm.corp.kuaishou.com/debug/-/debug-3.2.7.tgz", + "integrity": "sha1-clgLfpFF+zm2Z2+cXl+xALk0F5o=", "license": "MIT", "dependencies": { "ms": "^2.1.1" @@ -3965,10 +5470,14 @@ }, "node_modules/leancloud-realtime/node_modules/eventemitter3": { "version": "3.1.2", + "resolved": "https://npm.corp.kuaishou.com/eventemitter3/-/eventemitter3-3.1.2.tgz", + "integrity": "sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q==", "license": "MIT" }, "node_modules/leancloud-storage": { "version": "3.15.0", + "resolved": "https://npm.corp.kuaishou.com/leancloud-storage/-/leancloud-storage-3.15.0.tgz", + "integrity": "sha1-bTsBCjExiZhbtpqwjHXHrXS9F4g=", "license": "MIT", "dependencies": { "debug": "^3.1.0", @@ -3985,6 +5494,8 @@ }, "node_modules/leancloud-storage/node_modules/debug": { "version": "3.2.7", + "resolved": "https://npm.corp.kuaishou.com/debug/-/debug-3.2.7.tgz", + "integrity": "sha1-clgLfpFF+zm2Z2+cXl+xALk0F5o=", "license": "MIT", "dependencies": { "ms": "^2.1.1" @@ -3992,6 +5503,8 @@ }, "node_modules/lilconfig": { "version": "2.0.6", + "resolved": "https://npm.corp.kuaishou.com/lilconfig/-/lilconfig-2.0.6.tgz", + "integrity": "sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==", "license": "MIT", "engines": { "node": ">=10" @@ -3999,10 +5512,14 @@ }, "node_modules/lines-and-columns": { "version": "1.2.4", + "resolved": "https://npm.corp.kuaishou.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", "license": "MIT" }, "node_modules/linkify-it": { "version": "4.0.1", + "resolved": "https://npm.corp.kuaishou.com/linkify-it/-/linkify-it-4.0.1.tgz", + "integrity": "sha512-C7bfi1UZmoj8+PQx22XyeXCuBlokoyWQL5pWSP+EI6nzRylyThouddufc2c1NDIcP9k5agmN9fLpA7VNJfIiqw==", "license": "MIT", "dependencies": { "uc.micro": "^1.0.1" @@ -4010,6 +5527,8 @@ }, "node_modules/loader-runner": { "version": "4.3.0", + "resolved": "https://npm.corp.kuaishou.com/loader-runner/-/loader-runner-4.3.0.tgz", + "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", "license": "MIT", "engines": { "node": ">=6.11.5" @@ -4017,6 +5536,8 @@ }, "node_modules/loader-utils": { "version": "2.0.3", + "resolved": "https://npm.corp.kuaishou.com/loader-utils/-/loader-utils-2.0.3.tgz", + "integrity": "sha512-THWqIsn8QRnvLl0shHYVBN9syumU8pYWEHPTmkiVGd+7K5eFNVSY6AJhRvgGF70gg1Dz+l/k8WicvFCxdEs60A==", "license": "MIT", "dependencies": { "big.js": "^5.2.2", @@ -4029,14 +5550,20 @@ }, "node_modules/localstorage-memory": { "version": "1.0.3", + "resolved": "https://npm.corp.kuaishou.com/localstorage-memory/-/localstorage-memory-1.0.3.tgz", + "integrity": "sha1-Vms3lo/gxNdro2ptpWT6YTlFynI=", "license": "MIT" }, "node_modules/lodash": { "version": "4.17.21", + "resolved": "https://npm.corp.kuaishou.com/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha1-Z5WRxWTDv/quhFTPCz3zcMPWkRw=", "license": "MIT" }, "node_modules/log-symbols": { "version": "5.1.0", + "resolved": "https://npm.corp.kuaishou.com/log-symbols/-/log-symbols-5.1.0.tgz", + "integrity": "sha512-l0x2DvrW294C9uDCoQe1VSU4gf529FkSZ6leBl4TiqZH/e+0R7hSfHQBNut2mNygDgHwvYHfFLn6Oxb3VWj2rA==", "license": "MIT", "dependencies": { "chalk": "^5.0.0", @@ -4051,6 +5578,8 @@ }, "node_modules/long": { "version": "3.2.0", + "resolved": "https://npm.corp.kuaishou.com/long/-/long-3.2.0.tgz", + "integrity": "sha1-2CG3E4yhy1gcFymQ7xTbIAtcR0s=", "license": "Apache-2.0", "engines": { "node": ">=0.6" @@ -4058,6 +5587,8 @@ }, "node_modules/lower-case": { "version": "2.0.2", + "resolved": "https://npm.corp.kuaishou.com/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", "license": "MIT", "dependencies": { "tslib": "^2.0.3" @@ -4065,6 +5596,8 @@ }, "node_modules/lru-cache": { "version": "6.0.0", + "resolved": "https://npm.corp.kuaishou.com/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "license": "ISC", "dependencies": { "yallist": "^4.0.0" @@ -4075,6 +5608,8 @@ }, "node_modules/magic-string": { "version": "0.25.9", + "resolved": "https://npm.corp.kuaishou.com/magic-string/-/magic-string-0.25.9.tgz", + "integrity": "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==", "license": "MIT", "dependencies": { "sourcemap-codec": "^1.4.8" @@ -4082,6 +5617,8 @@ }, "node_modules/markdown-it": { "version": "13.0.1", + "resolved": "https://npm.corp.kuaishou.com/markdown-it/-/markdown-it-13.0.1.tgz", + "integrity": "sha512-lTlxriVoy2criHP0JKRhO2VDG9c2ypWCsT237eDiLqi09rmbKoUetyGHq2uOIRoRS//kfoJckS0eUzzkDR+k2Q==", "license": "MIT", "dependencies": { "argparse": "^2.0.1", @@ -4096,6 +5633,8 @@ }, "node_modules/markdown-it-anchor": { "version": "8.6.5", + "resolved": "https://npm.corp.kuaishou.com/markdown-it-anchor/-/markdown-it-anchor-8.6.5.tgz", + "integrity": "sha512-PI1qEHHkTNWT+X6Ip9w+paonfIQ+QZP9sCeMYi47oqhH+EsW8CrJ8J7CzV19QVOj6il8ATGbK2nTECj22ZHGvQ==", "license": "Unlicense", "peerDependencies": { "@types/markdown-it": "*", @@ -4104,14 +5643,20 @@ }, "node_modules/markdown-it-container": { "version": "3.0.0", + "resolved": "https://npm.corp.kuaishou.com/markdown-it-container/-/markdown-it-container-3.0.0.tgz", + "integrity": "sha1-HRmwYECgIPmoJ1d7t9v2eqXemls=", "license": "MIT" }, "node_modules/markdown-it-emoji": { "version": "2.0.2", + "resolved": "https://npm.corp.kuaishou.com/markdown-it-emoji/-/markdown-it-emoji-2.0.2.tgz", + "integrity": "sha512-zLftSaNrKuYl0kR5zm4gxXjHaOI3FAOEaloKmRA5hijmJZvSjmxcokOLlzycb/HXlUFWzXqpIEoyEMCE4i9MvQ==", "license": "MIT" }, "node_modules/markdown-it/node_modules/entities": { "version": "3.0.1", + "resolved": "https://npm.corp.kuaishou.com/entities/-/entities-3.0.1.tgz", + "integrity": "sha1-K4h8piWF6W2zkDSC0zbBAGwwAdQ=", "license": "BSD-2-Clause", "engines": { "node": ">=0.12" @@ -4122,6 +5667,8 @@ }, "node_modules/marked": { "version": "4.2.2", + "resolved": "https://npm.corp.kuaishou.com/marked/-/marked-4.2.2.tgz", + "integrity": "sha512-JjBTFTAvuTgANXx82a5vzK9JLSMoV6V3LBVn4Uhdso6t7vXrGx7g1Cd2r6NYSsxrYbQGFCMqBDhFHyK5q2UvcQ==", "license": "MIT", "bin": { "marked": "bin/marked.js" @@ -4132,6 +5679,8 @@ }, "node_modules/md5": { "version": "2.3.0", + "resolved": "https://npm.corp.kuaishou.com/md5/-/md5-2.3.0.tgz", + "integrity": "sha1-w9qaaq46MLRreww0m4exENw72k8=", "license": "BSD-3-Clause", "dependencies": { "charenc": "0.0.2", @@ -4141,14 +5690,20 @@ }, "node_modules/mdn-data": { "version": "2.0.28", + "resolved": "https://npm.corp.kuaishou.com/mdn-data/-/mdn-data-2.0.28.tgz", + "integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==", "license": "CC0-1.0" }, "node_modules/mdurl": { "version": "1.0.1", + "resolved": "https://npm.corp.kuaishou.com/mdurl/-/mdurl-1.0.1.tgz", + "integrity": "sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==", "license": "MIT" }, "node_modules/media-typer": { "version": "0.3.0", + "resolved": "https://npm.corp.kuaishou.com/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=", "license": "MIT", "engines": { "node": ">= 0.6" @@ -4156,10 +5711,14 @@ }, "node_modules/medium-zoom": { "version": "1.0.6", + "resolved": "https://npm.corp.kuaishou.com/medium-zoom/-/medium-zoom-1.0.6.tgz", + "integrity": "sha1-kkfyHKkxPYu+lCCsoVOkEN8I0Cc=", "license": "MIT" }, "node_modules/memfs": { "version": "3.4.10", + "resolved": "https://npm.corp.kuaishou.com/memfs/-/memfs-3.4.10.tgz", + "integrity": "sha512-0bCUP+L79P4am30yP1msPzApwuMQG23TjwlwdHeEV5MxioDR1a0AgB0T9FfggU52eJuDCq8WVwb5ekznFyWiTQ==", "license": "Unlicense", "dependencies": { "fs-monkey": "^1.0.3" @@ -4170,14 +5729,20 @@ }, "node_modules/merge-descriptors": { "version": "1.0.1", + "resolved": "https://npm.corp.kuaishou.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", "license": "MIT" }, "node_modules/merge-stream": { "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", "license": "MIT" }, "node_modules/merge2": { "version": "1.4.1", + "resolved": "https://npm.corp.kuaishou.com/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha1-Q2iJL4hekHRVpv19xVwMnUBJkK4=", "license": "MIT", "engines": { "node": ">= 8" @@ -4185,6 +5750,8 @@ }, "node_modules/methods": { "version": "1.1.2", + "resolved": "https://npm.corp.kuaishou.com/methods/-/methods-1.1.2.tgz", + "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=", "license": "MIT", "engines": { "node": ">= 0.6" @@ -4192,6 +5759,8 @@ }, "node_modules/micromatch": { "version": "4.0.5", + "resolved": "https://npm.corp.kuaishou.com/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", "license": "MIT", "dependencies": { "braces": "^3.0.2", @@ -4203,6 +5772,8 @@ }, "node_modules/mime": { "version": "1.6.0", + "resolved": "https://npm.corp.kuaishou.com/mime/-/mime-1.6.0.tgz", + "integrity": "sha1-Ms2eXGRVO9WNGaVor0Uqz/BJgbE=", "license": "MIT", "bin": { "mime": "cli.js" @@ -4213,6 +5784,8 @@ }, "node_modules/mime-db": { "version": "1.52.0", + "resolved": "https://npm.corp.kuaishou.com/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", "license": "MIT", "engines": { "node": ">= 0.6" @@ -4220,6 +5793,8 @@ }, "node_modules/mime-types": { "version": "2.1.35", + "resolved": "https://npm.corp.kuaishou.com/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", "license": "MIT", "dependencies": { "mime-db": "1.52.0" @@ -4230,6 +5805,8 @@ }, "node_modules/mimic-fn": { "version": "2.1.0", + "resolved": "https://npm.corp.kuaishou.com/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha1-ftLCzMyvhNP/y3pptXcR/CCDQBs=", "license": "MIT", "engines": { "node": ">=6" @@ -4237,6 +5814,8 @@ }, "node_modules/mini-css-extract-plugin": { "version": "2.6.1", + "resolved": "https://npm.corp.kuaishou.com/mini-css-extract-plugin/-/mini-css-extract-plugin-2.6.1.tgz", + "integrity": "sha512-wd+SD57/K6DiV7jIR34P+s3uckTRuQvx0tKPcvjFlrEylk6P4mQ2KSWk1hblj1Kxaqok7LogKOieygXqBczNlg==", "license": "MIT", "dependencies": { "schema-utils": "^4.0.0" @@ -4254,10 +5833,14 @@ }, "node_modules/minimalistic-assert": { "version": "1.0.1", + "resolved": "https://npm.corp.kuaishou.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", "license": "ISC" }, "node_modules/minimatch": { "version": "3.1.2", + "resolved": "https://npm.corp.kuaishou.com/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "license": "ISC", "dependencies": { "brace-expansion": "^1.1.7" @@ -4268,6 +5851,8 @@ }, "node_modules/minimist": { "version": "1.2.7", + "resolved": "https://npm.corp.kuaishou.com/minimist/-/minimist-1.2.7.tgz", + "integrity": "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==", "license": "MIT", "funding": { "url": "https://github.com/sponsors/ljharb" @@ -4275,14 +5860,26 @@ }, "node_modules/miniprogram-api-typings": { "version": "2.12.0", + "resolved": "https://npm.corp.kuaishou.com/miniprogram-api-typings/-/miniprogram-api-typings-2.12.0.tgz", + "integrity": "sha1-einJDz5e+jZYhCLR8B4i0zlKqqE=", + "license": "MIT" + }, + "node_modules/monaco-editor": { + "version": "0.34.1", + "resolved": "https://npm.corp.kuaishou.com/monaco-editor/-/monaco-editor-0.34.1.tgz", + "integrity": "sha512-FKc80TyiMaruhJKKPz5SpJPIjL+dflGvz4CpuThaPMc94AyN7SeC9HQ8hrvaxX7EyHdJcUY5i4D0gNyJj1vSZQ==", "license": "MIT" }, "node_modules/ms": { "version": "2.1.3", + "resolved": "https://npm.corp.kuaishou.com/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", "license": "MIT" }, "node_modules/multicast-dns": { "version": "7.2.5", + "resolved": "https://npm.corp.kuaishou.com/multicast-dns/-/multicast-dns-7.2.5.tgz", + "integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==", "license": "MIT", "dependencies": { "dns-packet": "^5.2.2", @@ -4294,6 +5891,8 @@ }, "node_modules/nanoid": { "version": "3.3.4", + "resolved": "https://npm.corp.kuaishou.com/nanoid/-/nanoid-3.3.4.tgz", + "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==", "license": "MIT", "bin": { "nanoid": "bin/nanoid.cjs" @@ -4304,6 +5903,8 @@ }, "node_modules/negotiator": { "version": "0.6.3", + "resolved": "https://npm.corp.kuaishou.com/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", "license": "MIT", "engines": { "node": ">= 0.6" @@ -4311,10 +5912,14 @@ }, "node_modules/neo-async": { "version": "2.6.2", + "resolved": "https://npm.corp.kuaishou.com/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", "license": "MIT" }, "node_modules/no-case": { "version": "3.0.4", + "resolved": "https://npm.corp.kuaishou.com/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha1-02H9XJgA9VhVGoNp/A3NRmK2Ek0=", "license": "MIT", "dependencies": { "lower-case": "^2.0.2", @@ -4323,6 +5928,8 @@ }, "node_modules/node-forge": { "version": "1.3.1", + "resolved": "https://npm.corp.kuaishou.com/node-forge/-/node-forge-1.3.1.tgz", + "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", "license": "(BSD-3-Clause OR GPL-2.0)", "engines": { "node": ">= 6.13.0" @@ -4330,10 +5937,14 @@ }, "node_modules/node-releases": { "version": "2.0.6", + "resolved": "https://npm.corp.kuaishou.com/node-releases/-/node-releases-2.0.6.tgz", + "integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==", "license": "MIT" }, "node_modules/normalize-path": { "version": "3.0.0", + "resolved": "https://npm.corp.kuaishou.com/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", "license": "MIT", "engines": { "node": ">=0.10.0" @@ -4341,13 +5952,185 @@ }, "node_modules/normalize-range": { "version": "0.1.2", + "resolved": "https://npm.corp.kuaishou.com/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=", "license": "MIT", "engines": { "node": ">=0.10.0" } }, + "node_modules/npm": { + "version": "8.19.3", + "resolved": "https://npm.corp.kuaishou.com/npm/-/npm-8.19.3.tgz", + "integrity": "sha512-0QjmyPtDxSyMWWD8I91QGbrgx9KzbV6C9FK1liEb/K0zppiZkr5KxXc990G+LzPwBHDfRjUBlO9T1qZ08vl9mA==", + "bundleDependencies": [ + "@isaacs/string-locale-compare", + "@npmcli/arborist", + "@npmcli/ci-detect", + "@npmcli/config", + "@npmcli/fs", + "@npmcli/map-workspaces", + "@npmcli/package-json", + "@npmcli/run-script", + "abbrev", + "archy", + "cacache", + "chalk", + "chownr", + "cli-columns", + "cli-table3", + "columnify", + "fastest-levenshtein", + "fs-minipass", + "glob", + "graceful-fs", + "hosted-git-info", + "ini", + "init-package-json", + "is-cidr", + "json-parse-even-better-errors", + "libnpmaccess", + "libnpmdiff", + "libnpmexec", + "libnpmfund", + "libnpmhook", + "libnpmorg", + "libnpmpack", + "libnpmpublish", + "libnpmsearch", + "libnpmteam", + "libnpmversion", + "make-fetch-happen", + "minimatch", + "minipass", + "minipass-pipeline", + "mkdirp", + "mkdirp-infer-owner", + "ms", + "node-gyp", + "nopt", + "npm-audit-report", + "npm-install-checks", + "npm-package-arg", + "npm-pick-manifest", + "npm-profile", + "npm-registry-fetch", + "npm-user-validate", + "npmlog", + "opener", + "p-map", + "pacote", + "parse-conflict-json", + "proc-log", + "qrcode-terminal", + "read", + "read-package-json", + "read-package-json-fast", + "readdir-scoped-modules", + "rimraf", + "semver", + "ssri", + "tar", + "text-table", + "tiny-relative-date", + "treeverse", + "validate-npm-package-name", + "which", + "write-file-atomic" + ], + "license": "Artistic-2.0", + "workspaces": [ + "docs", + "smoke-tests", + "workspaces/*" + ], + "dependencies": { + "@isaacs/string-locale-compare": "^1.1.0", + "@npmcli/arborist": "^5.6.3", + "@npmcli/ci-detect": "^2.0.0", + "@npmcli/config": "^4.2.1", + "@npmcli/fs": "^2.1.0", + "@npmcli/map-workspaces": "^2.0.3", + "@npmcli/package-json": "^2.0.0", + "@npmcli/run-script": "^4.2.1", + "abbrev": "~1.1.1", + "archy": "~1.0.0", + "cacache": "^16.1.3", + "chalk": "^4.1.2", + "chownr": "^2.0.0", + "cli-columns": "^4.0.0", + "cli-table3": "^0.6.2", + "columnify": "^1.6.0", + "fastest-levenshtein": "^1.0.12", + "fs-minipass": "^2.1.0", + "glob": "^8.0.1", + "graceful-fs": "^4.2.10", + "hosted-git-info": "^5.2.1", + "ini": "^3.0.1", + "init-package-json": "^3.0.2", + "is-cidr": "^4.0.2", + "json-parse-even-better-errors": "^2.3.1", + "libnpmaccess": "^6.0.4", + "libnpmdiff": "^4.0.5", + "libnpmexec": "^4.0.14", + "libnpmfund": "^3.0.5", + "libnpmhook": "^8.0.4", + "libnpmorg": "^4.0.4", + "libnpmpack": "^4.1.3", + "libnpmpublish": "^6.0.5", + "libnpmsearch": "^5.0.4", + "libnpmteam": "^4.0.4", + "libnpmversion": "^3.0.7", + "make-fetch-happen": "^10.2.0", + "minimatch": "^5.1.0", + "minipass": "^3.1.6", + "minipass-pipeline": "^1.2.4", + "mkdirp": "^1.0.4", + "mkdirp-infer-owner": "^2.0.0", + "ms": "^2.1.2", + "node-gyp": "^9.1.0", + "nopt": "^6.0.0", + "npm-audit-report": "^3.0.0", + "npm-install-checks": "^5.0.0", + "npm-package-arg": "^9.1.0", + "npm-pick-manifest": "^7.0.2", + "npm-profile": "^6.2.0", + "npm-registry-fetch": "^13.3.1", + "npm-user-validate": "^1.0.1", + "npmlog": "^6.0.2", + "opener": "^1.5.2", + "p-map": "^4.0.0", + "pacote": "^13.6.2", + "parse-conflict-json": "^2.0.2", + "proc-log": "^2.0.1", + "qrcode-terminal": "^0.12.0", + "read": "~1.0.7", + "read-package-json": "^5.0.2", + "read-package-json-fast": "^2.0.3", + "readdir-scoped-modules": "^1.1.0", + "rimraf": "^3.0.2", + "semver": "^7.3.7", + "ssri": "^9.0.1", + "tar": "^6.1.11", + "text-table": "~0.2.0", + "tiny-relative-date": "^1.3.0", + "treeverse": "^2.0.0", + "validate-npm-package-name": "^4.0.0", + "which": "^2.0.2", + "write-file-atomic": "^4.0.1" + }, + "bin": { + "npm": "bin/npm-cli.js", + "npx": "bin/npx-cli.js" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, "node_modules/npm-run-path": { "version": "5.1.0", + "resolved": "https://npm.corp.kuaishou.com/npm-run-path/-/npm-run-path-5.1.0.tgz", + "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", "license": "MIT", "dependencies": { "path-key": "^4.0.0" @@ -4361,6 +6144,8 @@ }, "node_modules/npm-run-path/node_modules/path-key": { "version": "4.0.0", + "resolved": "https://npm.corp.kuaishou.com/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", "license": "MIT", "engines": { "node": ">=12" @@ -4369,5109 +6154,12047 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/nth-check": { - "version": "2.1.1", - "license": "BSD-2-Clause", + "node_modules/npm/node_modules/@colors/colors": { + "version": "1.5.0", + "resolved": "https://npm.corp.kuaishou.com/@colors%2fcolors/-/colors-1.5.0.tgz", + "integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==", + "inBundle": true, + "license": "MIT", + "optional": true, + "engines": { + "node": ">=0.1.90" + } + }, + "node_modules/npm/node_modules/@gar/promisify": { + "version": "1.1.3", + "resolved": "https://npm.corp.kuaishou.com/@gar%2fpromisify/-/promisify-1.1.3.tgz", + "integrity": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/@isaacs/string-locale-compare": { + "version": "1.1.0", + "resolved": "https://npm.corp.kuaishou.com/@isaacs%2fstring-locale-compare/-/string-locale-compare-1.1.0.tgz", + "integrity": "sha1-KRwifpP9QHqW7NWYeaNYCRIOQys=", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/@npmcli/arborist": { + "version": "5.6.3", + "resolved": "https://npm.corp.kuaishou.com/@npmcli%2farborist/-/arborist-5.6.3.tgz", + "integrity": "sha512-/7hbqEM6YuRjwTcQXkK1+xKslEblY5kFQe0tZ7jKyMlIR6x4iOmhLErIkBBGtTKvYxRKdpcxnFXjCobg3UqmsA==", + "inBundle": true, + "license": "ISC", "dependencies": { - "boolbase": "^1.0.0" + "@isaacs/string-locale-compare": "^1.1.0", + "@npmcli/installed-package-contents": "^1.0.7", + "@npmcli/map-workspaces": "^2.0.3", + "@npmcli/metavuln-calculator": "^3.0.1", + "@npmcli/move-file": "^2.0.0", + "@npmcli/name-from-folder": "^1.0.1", + "@npmcli/node-gyp": "^2.0.0", + "@npmcli/package-json": "^2.0.0", + "@npmcli/query": "^1.2.0", + "@npmcli/run-script": "^4.1.3", + "bin-links": "^3.0.3", + "cacache": "^16.1.3", + "common-ancestor-path": "^1.0.1", + "hosted-git-info": "^5.2.1", + "json-parse-even-better-errors": "^2.3.1", + "json-stringify-nice": "^1.1.4", + "minimatch": "^5.1.0", + "mkdirp": "^1.0.4", + "mkdirp-infer-owner": "^2.0.0", + "nopt": "^6.0.0", + "npm-install-checks": "^5.0.0", + "npm-package-arg": "^9.0.0", + "npm-pick-manifest": "^7.0.2", + "npm-registry-fetch": "^13.0.0", + "npmlog": "^6.0.2", + "pacote": "^13.6.1", + "parse-conflict-json": "^2.0.1", + "proc-log": "^2.0.0", + "promise-all-reject-late": "^1.0.0", + "promise-call-limit": "^1.0.1", + "read-package-json-fast": "^2.0.2", + "readdir-scoped-modules": "^1.1.0", + "rimraf": "^3.0.2", + "semver": "^7.3.7", + "ssri": "^9.0.0", + "treeverse": "^2.0.0", + "walk-up-path": "^1.0.0" }, - "funding": { - "url": "https://github.com/fb55/nth-check?sponsor=1" + "bin": { + "arborist": "bin/index.js" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/number-is-nan": { - "version": "1.0.1", - "license": "MIT", + "node_modules/npm/node_modules/@npmcli/ci-detect": { + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/@npmcli%2fci-detect/-/ci-detect-2.0.0.tgz", + "integrity": "sha512-8yQtQ9ArHh/TzdUDKQwEvwCgpDuhSWTDAbiKMl3854PcT+Dk4UmWaiawuFTLy9n5twzXOBXVflWe+90/ffXQrA==", + "inBundle": true, + "license": "ISC", "engines": { - "node": ">=0.10.0" + "node": "^12.13.0 || ^14.15.0 || >=16" } }, - "node_modules/object-hash": { - "version": "3.0.0", - "license": "MIT", + "node_modules/npm/node_modules/@npmcli/config": { + "version": "4.2.2", + "resolved": "https://npm.corp.kuaishou.com/@npmcli%2fconfig/-/config-4.2.2.tgz", + "integrity": "sha512-5GNcLd+0c4bYBnFop53+26CO5GQP0R9YcxlernohpHDWdIgzUg9I0+GEMk3sNHnLntATVU39d283A4OO+W402w==", + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/map-workspaces": "^2.0.2", + "ini": "^3.0.0", + "mkdirp-infer-owner": "^2.0.0", + "nopt": "^6.0.0", + "proc-log": "^2.0.0", + "read-package-json-fast": "^2.0.3", + "semver": "^7.3.5", + "walk-up-path": "^1.0.0" + }, "engines": { - "node": ">= 6" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/object-inspect": { - "version": "1.12.2", - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node_modules/npm/node_modules/@npmcli/disparity-colors": { + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/@npmcli%2fdisparity-colors/-/disparity-colors-2.0.0.tgz", + "integrity": "sha512-FFXGrIjhvd2qSZ8iS0yDvbI7nbjdyT2VNO7wotosjYZM2p2r8PN3B7Om3M5NO9KqW/OVzfzLB3L0V5Vo5QXC7A==", + "inBundle": true, + "license": "ISC", + "dependencies": { + "ansi-styles": "^4.3.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/obuf": { - "version": "1.1.2", - "license": "MIT" + "node_modules/npm/node_modules/@npmcli/fs": { + "version": "2.1.2", + "resolved": "https://npm.corp.kuaishou.com/@npmcli%2ffs/-/fs-2.1.2.tgz", + "integrity": "sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==", + "inBundle": true, + "license": "ISC", + "dependencies": { + "@gar/promisify": "^1.1.3", + "semver": "^7.3.5" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } }, - "node_modules/on-finished": { - "version": "2.4.1", - "license": "MIT", + "node_modules/npm/node_modules/@npmcli/git": { + "version": "3.0.2", + "resolved": "https://npm.corp.kuaishou.com/@npmcli%2fgit/-/git-3.0.2.tgz", + "integrity": "sha512-CAcd08y3DWBJqJDpfuVL0uijlq5oaXaOJEKHKc4wqrjd00gkvTZB+nFuLn+doOOKddaQS9JfqtNoFCO2LCvA3w==", + "inBundle": true, + "license": "ISC", "dependencies": { - "ee-first": "1.1.1" + "@npmcli/promise-spawn": "^3.0.0", + "lru-cache": "^7.4.4", + "mkdirp": "^1.0.4", + "npm-pick-manifest": "^7.0.0", + "proc-log": "^2.0.0", + "promise-inflight": "^1.0.1", + "promise-retry": "^2.0.1", + "semver": "^7.3.5", + "which": "^2.0.2" }, "engines": { - "node": ">= 0.8" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/on-headers": { - "version": "1.0.2", - "license": "MIT", + "node_modules/npm/node_modules/@npmcli/installed-package-contents": { + "version": "1.0.7", + "resolved": "https://npm.corp.kuaishou.com/@npmcli%2finstalled-package-contents/-/installed-package-contents-1.0.7.tgz", + "integrity": "sha1-q3QIxhR5EblwqKviYc5RIjKj9Po=", + "inBundle": true, + "license": "ISC", + "dependencies": { + "npm-bundled": "^1.1.1", + "npm-normalize-package-bin": "^1.0.1" + }, + "bin": { + "installed-package-contents": "index.js" + }, "engines": { - "node": ">= 0.8" + "node": ">= 10" } }, - "node_modules/once": { - "version": "1.4.0", + "node_modules/npm/node_modules/@npmcli/installed-package-contents/node_modules/npm-bundled": { + "version": "1.1.2", + "resolved": "https://npm.corp.kuaishou.com/npm-bundled/-/npm-bundled-1.1.2.tgz", + "integrity": "sha1-lEx4eJvXOQNbcLqiylzDK42GC8E=", + "inBundle": true, "license": "ISC", "dependencies": { - "wrappy": "1" + "npm-normalize-package-bin": "^1.0.1" } }, - "node_modules/onetime": { - "version": "5.1.2", - "license": "MIT", + "node_modules/npm/node_modules/@npmcli/map-workspaces": { + "version": "2.0.4", + "resolved": "https://npm.corp.kuaishou.com/@npmcli%2fmap-workspaces/-/map-workspaces-2.0.4.tgz", + "integrity": "sha512-bMo0aAfwhVwqoVM5UzX1DJnlvVvzDCHae821jv48L1EsrYwfOZChlqWYXEtto/+BkBXetPbEWgau++/brh4oVg==", + "inBundle": true, + "license": "ISC", "dependencies": { - "mimic-fn": "^2.1.0" + "@npmcli/name-from-folder": "^1.0.1", + "glob": "^8.0.1", + "minimatch": "^5.0.1", + "read-package-json-fast": "^2.0.3" }, "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/open": { - "version": "8.4.0", - "license": "MIT", + "node_modules/npm/node_modules/@npmcli/metavuln-calculator": { + "version": "3.1.1", + "resolved": "https://npm.corp.kuaishou.com/@npmcli%2fmetavuln-calculator/-/metavuln-calculator-3.1.1.tgz", + "integrity": "sha512-n69ygIaqAedecLeVH3KnO39M6ZHiJ2dEv5A7DGvcqCB8q17BGUgW8QaanIkbWUo2aYGZqJaOORTLAlIvKjNDKA==", + "inBundle": true, + "license": "ISC", "dependencies": { - "define-lazy-prop": "^2.0.0", - "is-docker": "^2.1.1", - "is-wsl": "^2.2.0" + "cacache": "^16.0.0", + "json-parse-even-better-errors": "^2.3.1", + "pacote": "^13.0.3", + "semver": "^7.3.5" }, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/optjs": { - "version": "3.2.2", - "license": "MIT" - }, - "node_modules/ora": { - "version": "6.1.2", + "node_modules/npm/node_modules/@npmcli/move-file": { + "version": "2.0.1", + "resolved": "https://npm.corp.kuaishou.com/@npmcli%2fmove-file/-/move-file-2.0.1.tgz", + "integrity": "sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==", + "inBundle": true, "license": "MIT", "dependencies": { - "bl": "^5.0.0", - "chalk": "^5.0.0", - "cli-cursor": "^4.0.0", - "cli-spinners": "^2.6.1", - "is-interactive": "^2.0.0", - "is-unicode-supported": "^1.1.0", - "log-symbols": "^5.1.0", - "strip-ansi": "^7.0.1", - "wcwidth": "^1.0.1" + "mkdirp": "^1.0.4", + "rimraf": "^3.0.2" }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/ora/node_modules/ansi-regex": { - "version": "6.0.1", - "license": "MIT", + "node_modules/npm/node_modules/@npmcli/name-from-folder": { + "version": "1.0.1", + "resolved": "https://npm.corp.kuaishou.com/@npmcli%2fname-from-folder/-/name-from-folder-1.0.1.tgz", + "integrity": "sha1-d+zQpPy3crpv6Sfi4uFV++wuaxo=", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/@npmcli/node-gyp": { + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/@npmcli%2fnode-gyp/-/node-gyp-2.0.0.tgz", + "integrity": "sha512-doNI35wIe3bBaEgrlPfdJPaCpUR89pJWep4Hq3aRdh6gKazIVWfs0jHttvSSoq47ZXgC7h73kDsUl8AoIQUB+A==", + "inBundle": true, + "license": "ISC", "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/ora/node_modules/strip-ansi": { - "version": "7.0.1", - "license": "MIT", + "node_modules/npm/node_modules/@npmcli/package-json": { + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/@npmcli%2fpackage-json/-/package-json-2.0.0.tgz", + "integrity": "sha512-42jnZ6yl16GzjWSH7vtrmWyJDGVa/LXPdpN2rcUWolFjc9ON2N3uz0qdBbQACfmhuJZ2lbKYtmK5qx68ZPLHMA==", + "inBundle": true, + "license": "ISC", "dependencies": { - "ansi-regex": "^6.0.1" + "json-parse-even-better-errors": "^2.3.1" }, "engines": { - "node": ">=12" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/npm/node_modules/@npmcli/promise-spawn": { + "version": "3.0.0", + "resolved": "https://npm.corp.kuaishou.com/@npmcli%2fpromise-spawn/-/promise-spawn-3.0.0.tgz", + "integrity": "sha512-s9SgS+p3a9Eohe68cSI3fi+hpcZUmXq5P7w0kMlAsWVtR7XbK3ptkZqKT2cK1zLDObJ3sR+8P59sJE0w/KTL1g==", + "inBundle": true, + "license": "ISC", + "dependencies": { + "infer-owner": "^1.0.4" }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/os-locale": { - "version": "1.4.0", - "license": "MIT", + "node_modules/npm/node_modules/@npmcli/query": { + "version": "1.2.0", + "resolved": "https://npm.corp.kuaishou.com/@npmcli%2fquery/-/query-1.2.0.tgz", + "integrity": "sha512-uWglsUM3PjBLgTSmZ3/vygeGdvWEIZ3wTUnzGFbprC/RtvQSaT+GAXu1DXmSFj2bD3oOZdcRm1xdzsV2z1YWdw==", + "inBundle": true, + "license": "ISC", "dependencies": { - "lcid": "^1.0.0" + "npm-package-arg": "^9.1.0", + "postcss-selector-parser": "^6.0.10", + "semver": "^7.3.7" }, "engines": { - "node": ">=0.10.0" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/p-retry": { - "version": "4.6.2", - "license": "MIT", + "node_modules/npm/node_modules/@npmcli/run-script": { + "version": "4.2.1", + "resolved": "https://npm.corp.kuaishou.com/@npmcli%2frun-script/-/run-script-4.2.1.tgz", + "integrity": "sha512-7dqywvVudPSrRCW5nTHpHgeWnbBtz8cFkOuKrecm6ih+oO9ciydhWt6OF7HlqupRRmB8Q/gECVdB9LMfToJbRg==", + "inBundle": true, + "license": "ISC", "dependencies": { - "@types/retry": "0.12.0", - "retry": "^0.13.1" + "@npmcli/node-gyp": "^2.0.0", + "@npmcli/promise-spawn": "^3.0.0", + "node-gyp": "^9.0.0", + "read-package-json-fast": "^2.0.3", + "which": "^2.0.2" }, "engines": { - "node": ">=8" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/param-case": { - "version": "3.0.4", + "node_modules/npm/node_modules/@tootallnate/once": { + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/@tootallnate%2fonce/-/once-2.0.0.tgz", + "integrity": "sha1-9UShSNOrNYAcH2M6dEH9h8LkhL8=", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">= 10" + } + }, + "node_modules/npm/node_modules/abbrev": { + "version": "1.1.1", + "resolved": "https://npm.corp.kuaishou.com/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha1-+PLIh60Qv2f2NPAFtph/7TF5qsg=", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://npm.corp.kuaishou.com/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha1-Sf/1hXfP7j83F2/qtMIuAPhtf3c=", + "inBundle": true, "license": "MIT", "dependencies": { - "dot-case": "^3.0.4", - "tslib": "^2.0.3" + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" } }, - "node_modules/parent-module": { - "version": "1.0.1", + "node_modules/npm/node_modules/agentkeepalive": { + "version": "4.2.1", + "resolved": "https://npm.corp.kuaishou.com/agentkeepalive/-/agentkeepalive-4.2.1.tgz", + "integrity": "sha512-Zn4cw2NEqd+9fiSVWMscnjyQ1a8Yfoc5oBajLeo5w+YBHgDUcEBY2hS4YpTz6iN5f/2zQiktcuM6tS8x1p9dpA==", + "inBundle": true, "license": "MIT", "dependencies": { - "callsites": "^3.0.0" + "debug": "^4.1.0", + "depd": "^1.1.2", + "humanize-ms": "^1.2.1" }, "engines": { - "node": ">=6" + "node": ">= 8.0.0" } }, - "node_modules/parse-json": { - "version": "5.2.0", + "node_modules/npm/node_modules/aggregate-error": { + "version": "3.1.0", + "resolved": "https://npm.corp.kuaishou.com/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "inBundle": true, "license": "MIT", "dependencies": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" }, "engines": { "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/parseurl": { - "version": "1.3.3", + "node_modules/npm/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://npm.corp.kuaishou.com/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha1-CCyyyJyf6GWaMRpTvWpNxTAdswQ=", + "inBundle": true, "license": "MIT", "engines": { - "node": ">= 0.8" + "node": ">=8" } }, - "node_modules/pascal-case": { - "version": "3.1.2", + "node_modules/npm/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://npm.corp.kuaishou.com/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "inBundle": true, "license": "MIT", "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "license": "MIT", + "color-convert": "^2.0.1" + }, "engines": { - "node": ">=0.10.0" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/path-key": { - "version": "3.1.1", - "license": "MIT", + "node_modules/npm/node_modules/aproba": { + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/aproba/-/aproba-2.0.0.tgz", + "integrity": "sha1-UlILiuW1aSFbNU78DKo/4eRaitw=", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/archy": { + "version": "1.0.0", + "resolved": "https://npm.corp.kuaishou.com/archy/-/archy-1.0.0.tgz", + "integrity": "sha1-+cjBN1fMHde8N5rHeyxipcKGjEA=", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/are-we-there-yet": { + "version": "3.0.1", + "resolved": "https://npm.corp.kuaishou.com/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz", + "integrity": "sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==", + "inBundle": true, + "license": "ISC", + "dependencies": { + "delegates": "^1.0.0", + "readable-stream": "^3.6.0" + }, "engines": { - "node": ">=8" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/path-parse": { - "version": "1.0.7", + "node_modules/npm/node_modules/asap": { + "version": "2.0.6", + "resolved": "https://npm.corp.kuaishou.com/asap/-/asap-2.0.6.tgz", + "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==", + "inBundle": true, "license": "MIT" }, - "node_modules/path-to-regexp": { - "version": "0.1.7", + "node_modules/npm/node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://npm.corp.kuaishou.com/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha1-6D46fj8wCzTLnYf2FfoMvzV2kO4=", + "inBundle": true, "license": "MIT" }, - "node_modules/path-type": { - "version": "4.0.0", - "license": "MIT", + "node_modules/npm/node_modules/bin-links": { + "version": "3.0.3", + "resolved": "https://npm.corp.kuaishou.com/bin-links/-/bin-links-3.0.3.tgz", + "integrity": "sha512-zKdnMPWEdh4F5INR07/eBrodC7QrF5JKvqskjz/ZZRXg5YSAZIbn8zGhbhUrElzHBZ2fvEQdOU59RHcTG3GiwA==", + "inBundle": true, + "license": "ISC", + "dependencies": { + "cmd-shim": "^5.0.0", + "mkdirp-infer-owner": "^2.0.0", + "npm-normalize-package-bin": "^2.0.0", + "read-cmd-shim": "^3.0.0", + "rimraf": "^3.0.0", + "write-file-atomic": "^4.0.0" + }, "engines": { - "node": ">=8" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/picocolors": { - "version": "1.0.0", - "license": "ISC" - }, - "node_modules/picomatch": { - "version": "2.3.1", - "license": "MIT", + "node_modules/npm/node_modules/bin-links/node_modules/npm-normalize-package-bin": { + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/npm-normalize-package-bin/-/npm-normalize-package-bin-2.0.0.tgz", + "integrity": "sha512-awzfKUO7v0FscrSpRoogyNm0sajikhBWpU0QMrW09AMi9n1PoKU6WaIqUzuJSQnpciZZmJ/jMZ2Egfmb/9LiWQ==", + "inBundle": true, + "license": "ISC", "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/pify": { - "version": "2.3.0", + "node_modules/npm/node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://npm.corp.kuaishou.com/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "inBundle": true, "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/postcss": { - "version": "8.4.18", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - } - ], + "node_modules/npm/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://npm.corp.kuaishou.com/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha1-HtxFng8MVISG7Pn8mfIiE2S5oK4=", + "inBundle": true, "license": "MIT", "dependencies": { - "nanoid": "^3.3.4", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" - }, - "engines": { - "node": "^10 || ^12 || >=14" + "balanced-match": "^1.0.0" } }, - "node_modules/postcss-csso": { - "version": "6.0.1", + "node_modules/npm/node_modules/builtins": { + "version": "5.0.1", + "resolved": "https://npm.corp.kuaishou.com/builtins/-/builtins-5.0.1.tgz", + "integrity": "sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==", + "inBundle": true, "license": "MIT", "dependencies": { - "csso": "^5.0.5" + "semver": "^7.0.0" + } + }, + "node_modules/npm/node_modules/cacache": { + "version": "16.1.3", + "resolved": "https://npm.corp.kuaishou.com/cacache/-/cacache-16.1.3.tgz", + "integrity": "sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==", + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/fs": "^2.1.0", + "@npmcli/move-file": "^2.0.0", + "chownr": "^2.0.0", + "fs-minipass": "^2.1.0", + "glob": "^8.0.1", + "infer-owner": "^1.0.4", + "lru-cache": "^7.7.1", + "minipass": "^3.1.6", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "mkdirp": "^1.0.4", + "p-map": "^4.0.0", + "promise-inflight": "^1.0.1", + "rimraf": "^3.0.2", + "ssri": "^9.0.0", + "tar": "^6.1.11", + "unique-filename": "^2.0.0" }, "engines": { - "node": "^12.20.0 || ^14.13.0 || >=15.0.0", - "npm": ">=7.0.0" - }, - "peerDependencies": { - "postcss": "^8.0.0" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/postcss-loader": { - "version": "7.0.1", + "node_modules/npm/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://npm.corp.kuaishou.com/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "inBundle": true, "license": "MIT", "dependencies": { - "cosmiconfig": "^7.0.0", - "klona": "^2.0.5", - "semver": "^7.3.7" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">= 14.15.0" + "node": ">=10" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "postcss": "^7.0.0 || ^8.0.1", - "webpack": "^5.0.0" + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/postcss-modules-extract-imports": { - "version": "3.0.0", + "node_modules/npm/node_modules/chownr": { + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha1-Fb++U9LqtM9w8YqM1o6+Wzyx3s4=", + "inBundle": true, "license": "ISC", "engines": { - "node": "^10 || ^12 || >= 14" + "node": ">=10" + } + }, + "node_modules/npm/node_modules/cidr-regex": { + "version": "3.1.1", + "resolved": "https://npm.corp.kuaishou.com/cidr-regex/-/cidr-regex-3.1.1.tgz", + "integrity": "sha1-uhlyxXxm9hh18Y/X3Uh0aXcLVx0=", + "inBundle": true, + "license": "BSD-2-Clause", + "dependencies": { + "ip-regex": "^4.1.0" }, - "peerDependencies": { - "postcss": "^8.1.0" + "engines": { + "node": ">=10" } }, - "node_modules/postcss-modules-local-by-default": { + "node_modules/npm/node_modules/clean-stack": { + "version": "2.2.0", + "resolved": "https://npm.corp.kuaishou.com/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/npm/node_modules/cli-columns": { "version": "4.0.0", + "resolved": "https://npm.corp.kuaishou.com/cli-columns/-/cli-columns-4.0.0.tgz", + "integrity": "sha1-n+TWWXUjjVUhjEG9LtKWp/pVVkY=", + "inBundle": true, "license": "MIT", "dependencies": { - "icss-utils": "^5.0.0", - "postcss-selector-parser": "^6.0.2", - "postcss-value-parser": "^4.1.0" + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1" }, "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" + "node": ">= 10" } }, - "node_modules/postcss-modules-scope": { - "version": "3.0.0", - "license": "ISC", + "node_modules/npm/node_modules/cli-table3": { + "version": "0.6.2", + "inBundle": true, + "license": "MIT", "dependencies": { - "postcss-selector-parser": "^6.0.4" + "string-width": "^4.2.0" }, "engines": { - "node": "^10 || ^12 || >= 14" + "node": "10.* || >= 12.*" }, - "peerDependencies": { - "postcss": "^8.1.0" + "optionalDependencies": { + "@colors/colors": "1.5.0" } }, - "node_modules/postcss-modules-values": { - "version": "4.0.0", + "node_modules/npm/node_modules/clone": { + "version": "1.0.4", + "resolved": "https://npm.corp.kuaishou.com/clone/-/clone-1.0.4.tgz", + "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/npm/node_modules/cmd-shim": { + "version": "5.0.0", + "resolved": "https://npm.corp.kuaishou.com/cmd-shim/-/cmd-shim-5.0.0.tgz", + "integrity": "sha512-qkCtZ59BidfEwHltnJwkyVZn+XQojdAySM1D1gSeh11Z4pW1Kpolkyo53L5noc0nrxmIvyFwTmJRo4xs7FFLPw==", + "inBundle": true, "license": "ISC", "dependencies": { - "icss-utils": "^5.0.0" + "mkdirp-infer-owner": "^2.0.0" }, "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/postcss-selector-parser": { - "version": "6.0.10", + "node_modules/npm/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://npm.corp.kuaishou.com/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "inBundle": true, "license": "MIT", "dependencies": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" + "color-name": "~1.1.4" }, "engines": { - "node": ">=4" + "node": ">=7.0.0" } }, - "node_modules/postcss-value-parser": { - "version": "4.2.0", + "node_modules/npm/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://npm.corp.kuaishou.com/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=", + "inBundle": true, "license": "MIT" }, - "node_modules/pretty-error": { - "version": "4.0.0", - "license": "MIT", - "dependencies": { - "lodash": "^4.17.20", - "renderkid": "^3.0.0" + "node_modules/npm/node_modules/color-support": { + "version": "1.1.3", + "resolved": "https://npm.corp.kuaishou.com/color-support/-/color-support-1.1.3.tgz", + "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", + "inBundle": true, + "license": "ISC", + "bin": { + "color-support": "bin.js" } }, - "node_modules/prismjs": { - "version": "1.29.0", + "node_modules/npm/node_modules/columnify": { + "version": "1.6.0", + "resolved": "https://npm.corp.kuaishou.com/columnify/-/columnify-1.6.0.tgz", + "integrity": "sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q==", + "inBundle": true, "license": "MIT", + "dependencies": { + "strip-ansi": "^6.0.1", + "wcwidth": "^1.0.0" + }, "engines": { - "node": ">=6" + "node": ">=8.0.0" } }, - "node_modules/process-nextick-args": { - "version": "2.0.1", - "license": "MIT" + "node_modules/npm/node_modules/common-ancestor-path": { + "version": "1.0.1", + "resolved": "https://npm.corp.kuaishou.com/common-ancestor-path/-/common-ancestor-path-1.0.1.tgz", + "integrity": "sha1-T30tE5TZG3q99Rhxxi9x6tsBgqc=", + "inBundle": true, + "license": "ISC" }, - "node_modules/promise-timeout": { - "version": "1.3.0", + "node_modules/npm/node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://npm.corp.kuaishou.com/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "inBundle": true, "license": "MIT" }, - "node_modules/protobufjs": { - "version": "5.0.3", - "license": "Apache-2.0", - "dependencies": { - "ascli": "~1", - "bytebuffer": "~5", - "glob": "^7.0.5", - "yargs": "^3.10.0" - }, + "node_modules/npm/node_modules/console-control-strings": { + "version": "1.1.0", + "resolved": "https://npm.corp.kuaishou.com/console-control-strings/-/console-control-strings-1.1.0.tgz", + "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://npm.corp.kuaishou.com/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "inBundle": true, + "license": "MIT", "bin": { - "pbjs": "bin/pbjs" + "cssesc": "bin/cssesc" }, "engines": { - "node": ">=0.8" + "node": ">=4" } }, - "node_modules/proxy-addr": { - "version": "2.0.7", + "node_modules/npm/node_modules/debug": { + "version": "4.3.4", + "resolved": "https://npm.corp.kuaishou.com/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "inBundle": true, "license": "MIT", "dependencies": { - "forwarded": "0.2.0", - "ipaddr.js": "1.9.1" + "ms": "2.1.2" }, "engines": { - "node": ">= 0.10" + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } } }, - "node_modules/proxy-addr/node_modules/ipaddr.js": { - "version": "1.9.1", + "node_modules/npm/node_modules/debug/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://npm.corp.kuaishou.com/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/debuglog": { + "version": "1.0.1", + "resolved": "https://npm.corp.kuaishou.com/debuglog/-/debuglog-1.0.1.tgz", + "integrity": "sha1-qiT/uaw9+aI1GDfPstJ5NgzXhJI=", + "inBundle": true, "license": "MIT", "engines": { - "node": ">= 0.10" + "node": "*" } }, - "node_modules/punycode": { - "version": "2.1.1", + "node_modules/npm/node_modules/defaults": { + "version": "1.0.3", + "inBundle": true, "license": "MIT", - "engines": { - "node": ">=6" + "dependencies": { + "clone": "^1.0.2" } }, - "node_modules/qs": { - "version": "6.11.0", - "license": "BSD-3-Clause", - "dependencies": { - "side-channel": "^1.0.4" - }, + "node_modules/npm/node_modules/delegates": { + "version": "1.0.0", + "resolved": "https://npm.corp.kuaishou.com/delegates/-/delegates-1.0.0.tgz", + "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/depd": { + "version": "1.1.2", + "resolved": "https://npm.corp.kuaishou.com/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", + "inBundle": true, + "license": "MIT", "engines": { - "node": ">=0.6" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">= 0.6" } }, - "node_modules/queue-microtask": { - "version": "1.2.3", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT" + "node_modules/npm/node_modules/dezalgo": { + "version": "1.0.4", + "resolved": "https://npm.corp.kuaishou.com/dezalgo/-/dezalgo-1.0.4.tgz", + "integrity": "sha512-rXSP0bf+5n0Qonsb+SVVfNfIsimO4HEtmnIpPHY8Q1UCzKlQrDMfdobr8nJOOsRgWCyMRqeSBQzmWUMq7zvVig==", + "inBundle": true, + "license": "ISC", + "dependencies": { + "asap": "^2.0.0", + "wrappy": "1" + } }, - "node_modules/quick-lru": { - "version": "5.1.1", - "license": "MIT", + "node_modules/npm/node_modules/diff": { + "version": "5.1.0", + "resolved": "https://npm.corp.kuaishou.com/diff/-/diff-5.1.0.tgz", + "integrity": "sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==", + "inBundle": true, + "license": "BSD-3-Clause", "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=0.3.1" } }, - "node_modules/randombytes": { - "version": "2.1.0", + "node_modules/npm/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://npm.corp.kuaishou.com/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha1-6Bj9ac5cz8tARZT4QpY79TFkzDc=", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/encoding": { + "version": "0.1.13", + "resolved": "https://npm.corp.kuaishou.com/encoding/-/encoding-0.1.13.tgz", + "integrity": "sha1-VldK/deR9UqOmyeFwFgqLSYhD6k=", + "inBundle": true, "license": "MIT", + "optional": true, "dependencies": { - "safe-buffer": "^5.1.0" + "iconv-lite": "^0.6.2" } }, - "node_modules/range-parser": { - "version": "1.2.1", + "node_modules/npm/node_modules/env-paths": { + "version": "2.2.1", + "resolved": "https://npm.corp.kuaishou.com/env-paths/-/env-paths-2.2.1.tgz", + "integrity": "sha1-QgOZ1BbOH76bwKB8Yvpo1n/Q+PI=", + "inBundle": true, "license": "MIT", "engines": { - "node": ">= 0.6" + "node": ">=6" } }, - "node_modules/raw-body": { - "version": "2.5.1", - "license": "MIT", + "node_modules/npm/node_modules/err-code": { + "version": "2.0.3", + "resolved": "https://npm.corp.kuaishou.com/err-code/-/err-code-2.0.3.tgz", + "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/fastest-levenshtein": { + "version": "1.0.12", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/fs-minipass": { + "version": "2.1.0", + "resolved": "https://npm.corp.kuaishou.com/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha1-f1A2/b8SxjwWkZDL5BmchSJx+fs=", + "inBundle": true, + "license": "ISC", "dependencies": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" + "minipass": "^3.0.0" }, "engines": { - "node": ">= 0.8" + "node": ">= 8" } }, - "node_modules/read-cache": { + "node_modules/npm/node_modules/fs.realpath": { "version": "1.0.0", - "license": "MIT", + "resolved": "https://npm.corp.kuaishou.com/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://npm.corp.kuaishou.com/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/gauge": { + "version": "4.0.4", + "resolved": "https://npm.corp.kuaishou.com/gauge/-/gauge-4.0.4.tgz", + "integrity": "sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==", + "inBundle": true, + "license": "ISC", "dependencies": { - "pify": "^2.3.0" + "aproba": "^1.0.3 || ^2.0.0", + "color-support": "^1.1.3", + "console-control-strings": "^1.1.0", + "has-unicode": "^2.0.1", + "signal-exit": "^3.0.7", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1", + "wide-align": "^1.1.5" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/readable-stream": { - "version": "3.6.0", - "license": "MIT", + "node_modules/npm/node_modules/glob": { + "version": "8.0.3", + "resolved": "https://npm.corp.kuaishou.com/glob/-/glob-8.0.3.tgz", + "integrity": "sha512-ull455NHSHI/Y1FqGaaYFaLGkNMMJbavMrEGFXG/PGrg6y7sutWHUHrz6gy6WEBH6akM1M414dWKCNs+IhKdiQ==", + "inBundle": true, + "license": "ISC", "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" }, "engines": { - "node": ">= 6" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/readdirp": { - "version": "3.6.0", + "node_modules/npm/node_modules/graceful-fs": { + "version": "4.2.10", + "resolved": "https://npm.corp.kuaishou.com/graceful-fs/-/graceful-fs-4.2.10.tgz", + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/has": { + "version": "1.0.3", + "resolved": "https://npm.corp.kuaishou.com/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "inBundle": true, "license": "MIT", "dependencies": { - "picomatch": "^2.2.1" + "function-bind": "^1.1.1" }, "engines": { - "node": ">=8.10.0" + "node": ">= 0.4.0" } }, - "node_modules/regenerator-runtime": { - "version": "0.13.10", - "license": "MIT" - }, - "node_modules/relateurl": { - "version": "0.2.7", + "node_modules/npm/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://npm.corp.kuaishou.com/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=", + "inBundle": true, "license": "MIT", "engines": { - "node": ">= 0.10" + "node": ">=8" } }, - "node_modules/renderkid": { - "version": "3.0.0", - "license": "MIT", + "node_modules/npm/node_modules/has-unicode": { + "version": "2.0.1", + "resolved": "https://npm.corp.kuaishou.com/has-unicode/-/has-unicode-2.0.1.tgz", + "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/hosted-git-info": { + "version": "5.2.1", + "resolved": "https://npm.corp.kuaishou.com/hosted-git-info/-/hosted-git-info-5.2.1.tgz", + "integrity": "sha512-xIcQYMnhcx2Nr4JTjsFmwwnr9vldugPy9uVm0o87bjqqWMv9GaqsTeT+i99wTl0mk1uLxJtHxLb8kymqTENQsw==", + "inBundle": true, + "license": "ISC", "dependencies": { - "css-select": "^4.1.3", - "dom-converter": "^0.2.0", - "htmlparser2": "^6.1.0", - "lodash": "^4.17.21", - "strip-ansi": "^6.0.1" + "lru-cache": "^7.5.1" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/renderkid/node_modules/ansi-regex": { - "version": "5.0.1", + "node_modules/npm/node_modules/http-cache-semantics": { + "version": "4.1.0", + "resolved": "https://npm.corp.kuaishou.com/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz", + "integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==", + "inBundle": true, + "license": "BSD-2-Clause" + }, + "node_modules/npm/node_modules/http-proxy-agent": { + "version": "5.0.0", + "resolved": "https://npm.corp.kuaishou.com/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", + "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", + "inBundle": true, "license": "MIT", + "dependencies": { + "@tootallnate/once": "2", + "agent-base": "6", + "debug": "4" + }, "engines": { - "node": ">=8" + "node": ">= 6" } }, - "node_modules/renderkid/node_modules/strip-ansi": { - "version": "6.0.1", + "node_modules/npm/node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://npm.corp.kuaishou.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "inBundle": true, "license": "MIT", "dependencies": { - "ansi-regex": "^5.0.1" + "agent-base": "6", + "debug": "4" }, "engines": { - "node": ">=8" + "node": ">= 6" } }, - "node_modules/require-from-string": { - "version": "2.0.2", + "node_modules/npm/node_modules/humanize-ms": { + "version": "1.2.1", + "resolved": "https://npm.corp.kuaishou.com/humanize-ms/-/humanize-ms-1.2.1.tgz", + "integrity": "sha1-xG4xWaKT9riW2ikxbYtv6Lt5u+0=", + "inBundle": true, "license": "MIT", - "engines": { - "node": ">=0.10.0" + "dependencies": { + "ms": "^2.0.0" } }, - "node_modules/requires-port": { - "version": "1.0.0", - "license": "MIT" - }, - "node_modules/resolve": { - "version": "1.22.1", + "node_modules/npm/node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://npm.corp.kuaishou.com/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "inBundle": true, "license": "MIT", + "optional": true, "dependencies": { - "is-core-module": "^2.9.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" + "safer-buffer": ">= 2.1.2 < 3.0.0" }, - "bin": { - "resolve": "bin/resolve" + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm/node_modules/ignore-walk": { + "version": "5.0.1", + "resolved": "https://npm.corp.kuaishou.com/ignore-walk/-/ignore-walk-5.0.1.tgz", + "integrity": "sha512-yemi4pMf51WKT7khInJqAvsIGzoqYXblnsz0ql8tM+yi1EKYTY1evX4NAbJrLL/Aanr2HyZeluqU+Oi7MGHokw==", + "inBundle": true, + "license": "ISC", + "dependencies": { + "minimatch": "^5.0.1" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/resolve-from": { - "version": "4.0.0", + "node_modules/npm/node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://npm.corp.kuaishou.com/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "inBundle": true, "license": "MIT", "engines": { - "node": ">=4" + "node": ">=0.8.19" } }, - "node_modules/restore-cursor": { + "node_modules/npm/node_modules/indent-string": { "version": "4.0.0", + "resolved": "https://npm.corp.kuaishou.com/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "inBundle": true, "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/infer-owner": { + "version": "1.0.4", + "resolved": "https://npm.corp.kuaishou.com/infer-owner/-/infer-owner-1.0.4.tgz", + "integrity": "sha1-xM78qo5RBRwqQLos6KPScpWvlGc=", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://npm.corp.kuaishou.com/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "inBundle": true, + "license": "ISC", "dependencies": { - "onetime": "^5.1.0", - "signal-exit": "^3.0.2" - }, + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/npm/node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://npm.corp.kuaishou.com/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha1-D6LGT5MpF8NDOg3tVTY6rjdBa3w=", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/ini": { + "version": "3.0.1", + "resolved": "https://npm.corp.kuaishou.com/ini/-/ini-3.0.1.tgz", + "integrity": "sha512-it4HyVAUTKBc6m8e1iXWvXSTdndF7HbdN713+kvLrymxTaU4AUBWrJ4vEooP+V7fexnVD3LKcBshjGGPefSMUQ==", + "inBundle": true, + "license": "ISC", "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/retry": { - "version": "0.13.1", - "license": "MIT", + "node_modules/npm/node_modules/init-package-json": { + "version": "3.0.2", + "resolved": "https://npm.corp.kuaishou.com/init-package-json/-/init-package-json-3.0.2.tgz", + "integrity": "sha512-YhlQPEjNFqlGdzrBfDNRLhvoSgX7iQRgSxgsNknRQ9ITXFT7UMfVMWhBTOh2Y+25lRnGrv5Xz8yZwQ3ACR6T3A==", + "inBundle": true, + "license": "ISC", + "dependencies": { + "npm-package-arg": "^9.0.1", + "promzard": "^0.3.0", + "read": "^1.0.7", + "read-package-json": "^5.0.0", + "semver": "^7.3.5", + "validate-npm-package-license": "^3.0.4", + "validate-npm-package-name": "^4.0.0" + }, "engines": { - "node": ">= 4" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/reusify": { - "version": "1.0.4", + "node_modules/npm/node_modules/ip": { + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/ip/-/ip-2.0.0.tgz", + "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/ip-regex": { + "version": "4.3.0", + "resolved": "https://npm.corp.kuaishou.com/ip-regex/-/ip-regex-4.3.0.tgz", + "integrity": "sha1-aHJ1qw9X+naXj/j03dyKI9WZDbU=", + "inBundle": true, "license": "MIT", "engines": { - "iojs": ">=1.0.0", - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/rimraf": { - "version": "3.0.2", - "license": "ISC", + "node_modules/npm/node_modules/is-cidr": { + "version": "4.0.2", + "resolved": "https://npm.corp.kuaishou.com/is-cidr/-/is-cidr-4.0.2.tgz", + "integrity": "sha1-lMdYXkxsd86r+SD4zeUbjA/aiBQ=", + "inBundle": true, + "license": "BSD-2-Clause", "dependencies": { - "glob": "^7.1.3" + "cidr-regex": "^3.1.1" }, - "bin": { - "rimraf": "bin.js" + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/is-core-module": { + "version": "2.10.0", + "inBundle": true, + "license": "MIT", + "dependencies": { + "has": "^1.0.3" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/rollup": { - "version": "2.79.1", + "node_modules/npm/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://npm.corp.kuaishou.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "inBundle": true, "license": "MIT", - "bin": { - "rollup": "dist/bin/rollup" - }, "engines": { - "node": ">=10.0.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" + "node": ">=8" } }, - "node_modules/run-parallel": { - "version": "1.2.0", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT", - "dependencies": { - "queue-microtask": "^1.2.2" + "node_modules/npm/node_modules/is-lambda": { + "version": "1.0.1", + "resolved": "https://npm.corp.kuaishou.com/is-lambda/-/is-lambda-1.0.1.tgz", + "integrity": "sha1-PZh3iZ5qU+/AFgUEzeFfgubwYdU=", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://npm.corp.kuaishou.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/json-stringify-nice": { + "version": "1.1.4", + "resolved": "https://npm.corp.kuaishou.com/json-stringify-nice/-/json-stringify-nice-1.1.4.tgz", + "integrity": "sha1-LJN5YrgBgdPzF905qjI+FPWmCmc=", + "inBundle": true, + "license": "ISC", + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/safe-buffer": { - "version": "5.2.1", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } + "node_modules/npm/node_modules/jsonparse": { + "version": "1.3.1", + "resolved": "https://npm.corp.kuaishou.com/jsonparse/-/jsonparse-1.3.1.tgz", + "integrity": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==", + "engines": [ + "node >= 0.2.0" ], + "inBundle": true, "license": "MIT" }, - "node_modules/safer-buffer": { - "version": "2.1.2", + "node_modules/npm/node_modules/just-diff": { + "version": "5.1.1", + "resolved": "https://npm.corp.kuaishou.com/just-diff/-/just-diff-5.1.1.tgz", + "integrity": "sha512-u8HXJ3HlNrTzY7zrYYKjNEfBlyjqhdBkoyTVdjtn7p02RJD5NvR8rIClzeGA7t+UYP1/7eAkWNLU0+P3QrEqKQ==", + "inBundle": true, "license": "MIT" }, - "node_modules/sass": { - "version": "1.56.0", - "license": "MIT", + "node_modules/npm/node_modules/just-diff-apply": { + "version": "5.4.1", + "resolved": "https://npm.corp.kuaishou.com/just-diff-apply/-/just-diff-apply-5.4.1.tgz", + "integrity": "sha512-AAV5Jw7tsniWwih8Ly3fXxEZ06y+6p5TwQMsw0dzZ/wPKilzyDgdAnL0Ug4NNIquPUOh1vfFWEHbmXUqM5+o8g==", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/libnpmaccess": { + "version": "6.0.4", + "resolved": "https://npm.corp.kuaishou.com/libnpmaccess/-/libnpmaccess-6.0.4.tgz", + "integrity": "sha512-qZ3wcfIyUoW0+qSFkMBovcTrSGJ3ZeyvpR7d5N9pEYv/kXs8sHP2wiqEIXBKLFrZlmM0kR0RJD7mtfLngtlLag==", + "inBundle": true, + "license": "ISC", "dependencies": { - "chokidar": ">=3.0.0 <4.0.0", - "immutable": "^4.0.0", - "source-map-js": ">=0.6.2 <2.0.0" - }, - "bin": { - "sass": "sass.js" + "aproba": "^2.0.0", + "minipass": "^3.1.1", + "npm-package-arg": "^9.0.1", + "npm-registry-fetch": "^13.0.0" }, "engines": { - "node": ">=12.0.0" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/schema-utils": { - "version": "4.0.0", - "license": "MIT", + "node_modules/npm/node_modules/libnpmdiff": { + "version": "4.0.5", + "resolved": "https://npm.corp.kuaishou.com/libnpmdiff/-/libnpmdiff-4.0.5.tgz", + "integrity": "sha512-9fICQIzmH892UwHHPmb+Seup50UIBWcMIK2FdxvlXm9b4kc1nSH0b/BuY1mORJQtB6ydPMnn+BLzOTmd/SKJmw==", + "inBundle": true, + "license": "ISC", "dependencies": { - "@types/json-schema": "^7.0.9", - "ajv": "^8.8.0", - "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.0.0" + "@npmcli/disparity-colors": "^2.0.0", + "@npmcli/installed-package-contents": "^1.0.7", + "binary-extensions": "^2.2.0", + "diff": "^5.1.0", + "minimatch": "^5.0.1", + "npm-package-arg": "^9.0.1", + "pacote": "^13.6.1", + "tar": "^6.1.0" }, "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/section-matter": { - "version": "1.0.0", - "license": "MIT", + "node_modules/npm/node_modules/libnpmexec": { + "version": "4.0.14", + "resolved": "https://npm.corp.kuaishou.com/libnpmexec/-/libnpmexec-4.0.14.tgz", + "integrity": "sha512-dwmzv2K29SdoAHBOa7QR6CfQbFG/PiZDRF6HZrlI6C4DLt2hNgOHTFaUGOpqE2C+YGu0ZwYTDywxRe0eOnf0ZA==", + "inBundle": true, + "license": "ISC", "dependencies": { - "extend-shallow": "^2.0.1", - "kind-of": "^6.0.0" + "@npmcli/arborist": "^5.6.3", + "@npmcli/ci-detect": "^2.0.0", + "@npmcli/fs": "^2.1.1", + "@npmcli/run-script": "^4.2.0", + "chalk": "^4.1.0", + "mkdirp-infer-owner": "^2.0.0", + "npm-package-arg": "^9.0.1", + "npmlog": "^6.0.2", + "pacote": "^13.6.1", + "proc-log": "^2.0.0", + "read": "^1.0.7", + "read-package-json-fast": "^2.0.2", + "semver": "^7.3.7", + "walk-up-path": "^1.0.0" }, "engines": { - "node": ">=4" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/select-hose": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/selfsigned": { - "version": "2.1.1", - "license": "MIT", + "node_modules/npm/node_modules/libnpmfund": { + "version": "3.0.5", + "resolved": "https://npm.corp.kuaishou.com/libnpmfund/-/libnpmfund-3.0.5.tgz", + "integrity": "sha512-KdeRoG/dem8H3PcEU2/0SKi3ip7AWwczgS72y/3PE+PBrz/s/G52FNIA9jeLnBirkLC0sOyQHfeM3b7e24ZM+g==", + "inBundle": true, + "license": "ISC", "dependencies": { - "node-forge": "^1" + "@npmcli/arborist": "^5.6.3" }, "engines": { - "node": ">=10" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/semver": { - "version": "7.3.8", + "node_modules/npm/node_modules/libnpmhook": { + "version": "8.0.4", + "resolved": "https://npm.corp.kuaishou.com/libnpmhook/-/libnpmhook-8.0.4.tgz", + "integrity": "sha512-nuD6e+Nx0OprjEi0wOeqASMl6QIH235th/Du2/8upK3evByFhzIgdfOeP1OhstavW4xtsl0hk5Vw4fAWWuSUgA==", + "inBundle": true, "license": "ISC", "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" + "aproba": "^2.0.0", + "npm-registry-fetch": "^13.0.0" }, "engines": { - "node": ">=10" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/send": { - "version": "0.18.0", - "license": "MIT", + "node_modules/npm/node_modules/libnpmorg": { + "version": "4.0.4", + "resolved": "https://npm.corp.kuaishou.com/libnpmorg/-/libnpmorg-4.0.4.tgz", + "integrity": "sha512-1bTpD7iub1rDCsgiBguhJhiDufLQuc8DEti20euqsXz9O0ncXVpCYqf2SMmHR4GEdmAvAj2r7FMiyA9zGdaTpA==", + "inBundle": true, + "license": "ISC", "dependencies": { - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "mime": "1.6.0", - "ms": "2.1.3", - "on-finished": "2.4.1", - "range-parser": "~1.2.1", - "statuses": "2.0.1" + "aproba": "^2.0.0", + "npm-registry-fetch": "^13.0.0" }, "engines": { - "node": ">= 0.8.0" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/serialize-javascript": { - "version": "6.0.0", - "license": "BSD-3-Clause", + "node_modules/npm/node_modules/libnpmpack": { + "version": "4.1.3", + "resolved": "https://npm.corp.kuaishou.com/libnpmpack/-/libnpmpack-4.1.3.tgz", + "integrity": "sha512-rYP4X++ME3ZiFO+2iN3YnXJ4LB4Gsd0z5cgszWJZxaEpDN4lRIXirSyynGNsN/hn4taqnlxD+3DPlFDShvRM8w==", + "inBundle": true, + "license": "ISC", "dependencies": { - "randombytes": "^2.1.0" + "@npmcli/run-script": "^4.1.3", + "npm-package-arg": "^9.0.1", + "pacote": "^13.6.1" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/serve-index": { - "version": "1.9.1", - "license": "MIT", + "node_modules/npm/node_modules/libnpmpublish": { + "version": "6.0.5", + "resolved": "https://npm.corp.kuaishou.com/libnpmpublish/-/libnpmpublish-6.0.5.tgz", + "integrity": "sha512-LUR08JKSviZiqrYTDfywvtnsnxr+tOvBU0BF8H+9frt7HMvc6Qn6F8Ubm72g5hDTHbq8qupKfDvDAln2TVPvFg==", + "inBundle": true, + "license": "ISC", "dependencies": { - "accepts": "~1.3.4", - "batch": "0.6.1", - "debug": "2.6.9", - "escape-html": "~1.0.3", - "http-errors": "~1.6.2", - "mime-types": "~2.1.17", - "parseurl": "~1.3.2" + "normalize-package-data": "^4.0.0", + "npm-package-arg": "^9.0.1", + "npm-registry-fetch": "^13.0.0", + "semver": "^7.3.7", + "ssri": "^9.0.0" }, "engines": { - "node": ">= 0.8.0" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/serve-index/node_modules/depd": { - "version": "1.1.2", - "license": "MIT", + "node_modules/npm/node_modules/libnpmsearch": { + "version": "5.0.4", + "resolved": "https://npm.corp.kuaishou.com/libnpmsearch/-/libnpmsearch-5.0.4.tgz", + "integrity": "sha512-XHDmsvpN5+pufvGnfLRqpy218gcGGbbbXR6wPrDJyd1em6agKdYByzU5ccskDHH9iVm2UeLydpDsW1ksYuU0cg==", + "inBundle": true, + "license": "ISC", + "dependencies": { + "npm-registry-fetch": "^13.0.0" + }, "engines": { - "node": ">= 0.6" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/serve-index/node_modules/http-errors": { - "version": "1.6.3", - "license": "MIT", + "node_modules/npm/node_modules/libnpmteam": { + "version": "4.0.4", + "resolved": "https://npm.corp.kuaishou.com/libnpmteam/-/libnpmteam-4.0.4.tgz", + "integrity": "sha512-rzKSwi6MLzwwevbM/vl+BBQTErgn24tCfgPUdzBlszrw3j5necOu7WnTzgvZMDv6maGUwec6Ut1rxszOgH0l+Q==", + "inBundle": true, + "license": "ISC", "dependencies": { - "depd": "~1.1.2", - "inherits": "2.0.3", - "setprototypeof": "1.1.0", - "statuses": ">= 1.4.0 < 2" + "aproba": "^2.0.0", + "npm-registry-fetch": "^13.0.0" }, "engines": { - "node": ">= 0.6" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/serve-index/node_modules/inherits": { - "version": "2.0.3", - "license": "ISC" - }, - "node_modules/serve-index/node_modules/setprototypeof": { - "version": "1.1.0", - "license": "ISC" + "node_modules/npm/node_modules/libnpmversion": { + "version": "3.0.7", + "resolved": "https://npm.corp.kuaishou.com/libnpmversion/-/libnpmversion-3.0.7.tgz", + "integrity": "sha512-O0L4eNMUIMQ+effi1HsZPKp2N6wecwqGqB8PvkvmLPWN7EsdabdzAVG48nv0p/OjlbIai5KQg/L+qMMfCA4ZjA==", + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/git": "^3.0.0", + "@npmcli/run-script": "^4.1.3", + "json-parse-even-better-errors": "^2.3.1", + "proc-log": "^2.0.0", + "semver": "^7.3.7" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } }, - "node_modules/serve-index/node_modules/statuses": { - "version": "1.5.0", - "license": "MIT", + "node_modules/npm/node_modules/lru-cache": { + "version": "7.13.2", + "inBundle": true, + "license": "ISC", "engines": { - "node": ">= 0.6" + "node": ">=12" } }, - "node_modules/serve-static": { - "version": "1.15.0", - "license": "MIT", + "node_modules/npm/node_modules/make-fetch-happen": { + "version": "10.2.1", + "resolved": "https://npm.corp.kuaishou.com/make-fetch-happen/-/make-fetch-happen-10.2.1.tgz", + "integrity": "sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==", + "inBundle": true, + "license": "ISC", "dependencies": { - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.18.0" + "agentkeepalive": "^4.2.1", + "cacache": "^16.1.0", + "http-cache-semantics": "^4.1.0", + "http-proxy-agent": "^5.0.0", + "https-proxy-agent": "^5.0.0", + "is-lambda": "^1.0.1", + "lru-cache": "^7.7.1", + "minipass": "^3.1.6", + "minipass-collect": "^1.0.2", + "minipass-fetch": "^2.0.3", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "negotiator": "^0.6.3", + "promise-retry": "^2.0.1", + "socks-proxy-agent": "^7.0.0", + "ssri": "^9.0.0" }, "engines": { - "node": ">= 0.8.0" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/setprototypeof": { - "version": "1.2.0", - "license": "ISC" - }, - "node_modules/shallow-clone": { - "version": "3.0.1", - "license": "MIT", + "node_modules/npm/node_modules/minimatch": { + "version": "5.1.0", + "resolved": "https://npm.corp.kuaishou.com/minimatch/-/minimatch-5.1.0.tgz", + "integrity": "sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==", + "inBundle": true, + "license": "ISC", "dependencies": { - "kind-of": "^6.0.2" + "brace-expansion": "^2.0.1" }, "engines": { - "node": ">=8" + "node": ">=10" } }, - "node_modules/shebang-command": { - "version": "2.0.0", - "license": "MIT", + "node_modules/npm/node_modules/minipass": { + "version": "3.3.4", + "resolved": "https://npm.corp.kuaishou.com/minipass/-/minipass-3.3.4.tgz", + "integrity": "sha512-I9WPbWHCGu8W+6k1ZiGpPu0GkoKBeorkfKNuAFBNS1HNFJvke82sxvI5bzcCNpWPorkOO5QQ+zomzzwRxejXiw==", + "inBundle": true, + "license": "ISC", "dependencies": { - "shebang-regex": "^3.0.0" + "yallist": "^4.0.0" }, "engines": { "node": ">=8" } }, - "node_modules/shebang-regex": { - "version": "3.0.0", - "license": "MIT", + "node_modules/npm/node_modules/minipass-collect": { + "version": "1.0.2", + "resolved": "https://npm.corp.kuaishou.com/minipass-collect/-/minipass-collect-1.0.2.tgz", + "integrity": "sha1-IrgTv3Rdxu26JXa5QAIq1u3Ixhc=", + "inBundle": true, + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, "engines": { - "node": ">=8" + "node": ">= 8" } }, - "node_modules/side-channel": { - "version": "1.0.4", + "node_modules/npm/node_modules/minipass-fetch": { + "version": "2.1.1", + "inBundle": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" + "minipass": "^3.1.6", + "minipass-sized": "^1.0.3", + "minizlib": "^2.1.2" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/signal-exit": { - "version": "3.0.7", - "license": "ISC" - }, - "node_modules/slash": { - "version": "4.0.0", - "license": "MIT", "engines": { - "node": ">=12" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "optionalDependencies": { + "encoding": "^0.1.13" } }, - "node_modules/slash2": { - "version": "2.0.0", - "license": "MIT", + "node_modules/npm/node_modules/minipass-flush": { + "version": "1.0.5", + "resolved": "https://npm.corp.kuaishou.com/minipass-flush/-/minipass-flush-1.0.5.tgz", + "integrity": "sha1-gucTXX6JpQ/+ZGEKeHlTxMTLs3M=", + "inBundle": true, + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, "engines": { - "node": ">=6" + "node": ">= 8" } }, - "node_modules/sockjs": { - "version": "0.3.24", + "node_modules/npm/node_modules/minipass-json-stream": { + "version": "1.0.1", + "resolved": "https://npm.corp.kuaishou.com/minipass-json-stream/-/minipass-json-stream-1.0.1.tgz", + "integrity": "sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==", + "inBundle": true, "license": "MIT", "dependencies": { - "faye-websocket": "^0.11.3", - "uuid": "^8.3.2", - "websocket-driver": "^0.7.4" + "jsonparse": "^1.3.1", + "minipass": "^3.0.0" } }, - "node_modules/sockjs/node_modules/uuid": { - "version": "8.3.2", - "license": "MIT", - "bin": { - "uuid": "dist/bin/uuid" - } - }, - "node_modules/source-list-map": { - "version": "2.0.1", - "license": "MIT" - }, - "node_modules/source-map": { - "version": "0.6.1", - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/source-map-js": { - "version": "1.0.2", - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/source-map-support": { - "version": "0.5.21", - "license": "MIT", + "node_modules/npm/node_modules/minipass-pipeline": { + "version": "1.2.4", + "resolved": "https://npm.corp.kuaishou.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", + "integrity": "sha1-aEcveXEcCEZXwGfFxq2Tzd6oIUw=", + "inBundle": true, + "license": "ISC", "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" + "minipass": "^3.0.0" + }, + "engines": { + "node": ">=8" } }, - "node_modules/sourcemap-codec": { - "version": "1.4.8", - "license": "MIT" - }, - "node_modules/spdy": { - "version": "4.0.2", - "license": "MIT", + "node_modules/npm/node_modules/minipass-sized": { + "version": "1.0.3", + "resolved": "https://npm.corp.kuaishou.com/minipass-sized/-/minipass-sized-1.0.3.tgz", + "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==", + "inBundle": true, + "license": "ISC", "dependencies": { - "debug": "^4.1.0", - "handle-thing": "^2.0.0", - "http-deceiver": "^1.2.7", - "select-hose": "^2.0.0", - "spdy-transport": "^3.0.0" + "minipass": "^3.0.0" }, "engines": { - "node": ">=6.0.0" + "node": ">=8" } }, - "node_modules/spdy-transport": { - "version": "3.0.0", + "node_modules/npm/node_modules/minizlib": { + "version": "2.1.2", + "resolved": "https://npm.corp.kuaishou.com/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha1-6Q00Zrogm5MkUVCKEc49NjIUWTE=", + "inBundle": true, "license": "MIT", "dependencies": { - "debug": "^4.1.0", - "detect-node": "^2.0.4", - "hpack.js": "^2.1.6", - "obuf": "^1.1.2", - "readable-stream": "^3.0.6", - "wbuf": "^1.7.3" + "minipass": "^3.0.0", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">= 8" } }, - "node_modules/spdy-transport/node_modules/debug": { - "version": "4.3.4", + "node_modules/npm/node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://npm.corp.kuaishou.com/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha1-PrXtYmInVteaXw4qIh3+utdcL34=", + "inBundle": true, "license": "MIT", - "dependencies": { - "ms": "2.1.2" + "bin": { + "mkdirp": "bin/cmd.js" }, "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } + "node": ">=10" } }, - "node_modules/spdy-transport/node_modules/ms": { - "version": "2.1.2", - "license": "MIT" - }, - "node_modules/spdy/node_modules/debug": { - "version": "4.3.4", - "license": "MIT", + "node_modules/npm/node_modules/mkdirp-infer-owner": { + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/mkdirp-infer-owner/-/mkdirp-infer-owner-2.0.0.tgz", + "integrity": "sha1-VdOzaOfYkGXDjzL9OOY48Kth0xY=", + "inBundle": true, + "license": "ISC", "dependencies": { - "ms": "2.1.2" + "chownr": "^2.0.0", + "infer-owner": "^1.0.4", + "mkdirp": "^1.0.3" }, "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } + "node": ">=10" } }, - "node_modules/spdy/node_modules/ms": { - "version": "2.1.2", + "node_modules/npm/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://npm.corp.kuaishou.com/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "inBundle": true, "license": "MIT" }, - "node_modules/sprintf-js": { - "version": "1.0.3", - "license": "BSD-3-Clause" + "node_modules/npm/node_modules/mute-stream": { + "version": "0.0.8", + "resolved": "https://npm.corp.kuaishou.com/mute-stream/-/mute-stream-0.0.8.tgz", + "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", + "inBundle": true, + "license": "ISC" }, - "node_modules/statuses": { - "version": "2.0.1", + "node_modules/npm/node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://npm.corp.kuaishou.com/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "inBundle": true, "license": "MIT", "engines": { - "node": ">= 0.8" + "node": ">= 0.6" } }, - "node_modules/storejs": { - "version": "1.1.0", - "license": "MIT" - }, - "node_modules/string_decoder": { - "version": "1.3.0", + "node_modules/npm/node_modules/node-gyp": { + "version": "9.1.0", + "inBundle": true, "license": "MIT", "dependencies": { - "safe-buffer": "~5.2.0" + "env-paths": "^2.2.0", + "glob": "^7.1.4", + "graceful-fs": "^4.2.6", + "make-fetch-happen": "^10.0.3", + "nopt": "^5.0.0", + "npmlog": "^6.0.0", + "rimraf": "^3.0.2", + "semver": "^7.3.5", + "tar": "^6.1.2", + "which": "^2.0.2" + }, + "bin": { + "node-gyp": "bin/node-gyp.js" + }, + "engines": { + "node": "^12.22 || ^14.13 || >=16" } }, - "node_modules/string-width": { - "version": "1.0.2", + "node_modules/npm/node_modules/node-gyp/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://npm.corp.kuaishou.com/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha1-PH/L9SnYcibz0vUrlm/1Jx60Qd0=", + "inBundle": true, "license": "MIT", "dependencies": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/npm/node_modules/node-gyp/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://npm.corp.kuaishou.com/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "inBundle": true, + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" }, "engines": { - "node": ">=0.10.0" + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/strip-ansi": { - "version": "3.0.1", - "license": "MIT", + "node_modules/npm/node_modules/node-gyp/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://npm.corp.kuaishou.com/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "inBundle": true, + "license": "ISC", "dependencies": { - "ansi-regex": "^2.0.0" + "brace-expansion": "^1.1.7" }, "engines": { - "node": ">=0.10.0" + "node": "*" } }, - "node_modules/strip-bom-string": { - "version": "1.0.0", - "license": "MIT", + "node_modules/npm/node_modules/node-gyp/node_modules/nopt": { + "version": "5.0.0", + "inBundle": true, + "license": "ISC", + "dependencies": { + "abbrev": "1" + }, + "bin": { + "nopt": "bin/nopt.js" + }, "engines": { - "node": ">=0.10.0" + "node": ">=6" } }, - "node_modules/strip-final-newline": { - "version": "3.0.0", - "license": "MIT", - "engines": { - "node": ">=12" + "node_modules/npm/node_modules/nopt": { + "version": "6.0.0", + "resolved": "https://npm.corp.kuaishou.com/nopt/-/nopt-6.0.0.tgz", + "integrity": "sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==", + "inBundle": true, + "license": "ISC", + "dependencies": { + "abbrev": "^1.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "bin": { + "nopt": "bin/nopt.js" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/style-loader": { - "version": "3.3.1", - "license": "MIT", - "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "node_modules/npm/node_modules/normalize-package-data": { + "version": "4.0.1", + "resolved": "https://npm.corp.kuaishou.com/normalize-package-data/-/normalize-package-data-4.0.1.tgz", + "integrity": "sha512-EBk5QKKuocMJhB3BILuKhmaPjI8vNRSpIfO9woLC6NyHVkKKdVEdAO1mrT0ZfxNR1lKwCcTkuZfmGIFdizZ8Pg==", + "inBundle": true, + "license": "BSD-2-Clause", + "dependencies": { + "hosted-git-info": "^5.0.0", + "is-core-module": "^2.8.1", + "semver": "^7.3.5", + "validate-npm-package-license": "^3.0.4" }, - "peerDependencies": { - "webpack": "^5.0.0" + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/superagent": { - "version": "3.8.3", - "license": "MIT", + "node_modules/npm/node_modules/npm-audit-report": { + "version": "3.0.0", + "resolved": "https://npm.corp.kuaishou.com/npm-audit-report/-/npm-audit-report-3.0.0.tgz", + "integrity": "sha512-tWQzfbwz1sc4244Bx2BVELw0EmZlCsCF0X93RDcmmwhonCsPMoEviYsi+32R+mdRvOWXolPce9zo64n2xgPESw==", + "inBundle": true, + "license": "ISC", "dependencies": { - "component-emitter": "^1.2.0", - "cookiejar": "^2.1.0", - "debug": "^3.1.0", - "extend": "^3.0.0", - "form-data": "^2.3.1", - "formidable": "^1.2.0", - "methods": "^1.1.1", - "mime": "^1.4.1", - "qs": "^6.5.1", - "readable-stream": "^2.3.5" + "chalk": "^4.0.0" }, "engines": { - "node": ">= 4.0" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/superagent/node_modules/debug": { - "version": "3.2.7", - "license": "MIT", + "node_modules/npm/node_modules/npm-bundled": { + "version": "2.0.1", + "resolved": "https://npm.corp.kuaishou.com/npm-bundled/-/npm-bundled-2.0.1.tgz", + "integrity": "sha512-gZLxXdjEzE/+mOstGDqR6b0EkhJ+kM6fxM6vUuckuctuVPh80Q6pw/rSZj9s4Gex9GxWtIicO1pc8DB9KZWudw==", + "inBundle": true, + "license": "ISC", "dependencies": { - "ms": "^2.1.1" + "npm-normalize-package-bin": "^2.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/superagent/node_modules/readable-stream": { - "version": "2.3.7", - "license": "MIT", + "node_modules/npm/node_modules/npm-bundled/node_modules/npm-normalize-package-bin": { + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/npm-normalize-package-bin/-/npm-normalize-package-bin-2.0.0.tgz", + "integrity": "sha512-awzfKUO7v0FscrSpRoogyNm0sajikhBWpU0QMrW09AMi9n1PoKU6WaIqUzuJSQnpciZZmJ/jMZ2Egfmb/9LiWQ==", + "inBundle": true, + "license": "ISC", + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/npm/node_modules/npm-install-checks": { + "version": "5.0.0", + "resolved": "https://npm.corp.kuaishou.com/npm-install-checks/-/npm-install-checks-5.0.0.tgz", + "integrity": "sha512-65lUsMI8ztHCxFz5ckCEC44DRvEGdZX5usQFriauxHEwt7upv1FKaQEmAtU0YnOAdwuNWCmk64xYiQABNrEyLA==", + "inBundle": true, + "license": "BSD-2-Clause", "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" + "semver": "^7.1.1" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/superagent/node_modules/safe-buffer": { - "version": "5.1.2", - "license": "MIT" + "node_modules/npm/node_modules/npm-normalize-package-bin": { + "version": "1.0.1", + "resolved": "https://npm.corp.kuaishou.com/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz", + "integrity": "sha1-bnmkHyP9I1wGIyGCKNp9nCO49uI=", + "inBundle": true, + "license": "ISC" }, - "node_modules/superagent/node_modules/string_decoder": { - "version": "1.1.1", - "license": "MIT", + "node_modules/npm/node_modules/npm-package-arg": { + "version": "9.1.0", + "inBundle": true, + "license": "ISC", "dependencies": { - "safe-buffer": "~5.1.0" + "hosted-git-info": "^5.0.0", + "proc-log": "^2.0.1", + "semver": "^7.3.5", + "validate-npm-package-name": "^4.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/supports-color": { - "version": "7.2.0", - "license": "MIT", + "node_modules/npm/node_modules/npm-packlist": { + "version": "5.1.3", + "resolved": "https://npm.corp.kuaishou.com/npm-packlist/-/npm-packlist-5.1.3.tgz", + "integrity": "sha512-263/0NGrn32YFYi4J533qzrQ/krmmrWwhKkzwTuM4f/07ug51odoaNjUexxO4vxlzURHcmYMH1QjvHjsNDKLVg==", + "inBundle": true, + "license": "ISC", "dependencies": { - "has-flag": "^4.0.0" + "glob": "^8.0.1", + "ignore-walk": "^5.0.1", + "npm-bundled": "^2.0.0", + "npm-normalize-package-bin": "^2.0.0" + }, + "bin": { + "npm-packlist": "bin/index.js" }, "engines": { - "node": ">=8" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/supports-preserve-symlinks-flag": { - "version": "1.0.0", - "license": "MIT", + "node_modules/npm/node_modules/npm-packlist/node_modules/npm-normalize-package-bin": { + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/npm-normalize-package-bin/-/npm-normalize-package-bin-2.0.0.tgz", + "integrity": "sha512-awzfKUO7v0FscrSpRoogyNm0sajikhBWpU0QMrW09AMi9n1PoKU6WaIqUzuJSQnpciZZmJ/jMZ2Egfmb/9LiWQ==", + "inBundle": true, + "license": "ISC", "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/tapable": { - "version": "2.2.1", - "license": "MIT", + "node_modules/npm/node_modules/npm-pick-manifest": { + "version": "7.0.2", + "resolved": "https://npm.corp.kuaishou.com/npm-pick-manifest/-/npm-pick-manifest-7.0.2.tgz", + "integrity": "sha512-gk37SyRmlIjvTfcYl6RzDbSmS9Y4TOBXfsPnoYqTHARNgWbyDiCSMLUpmALDj4jjcTZpURiEfsSHJj9k7EV4Rw==", + "inBundle": true, + "license": "ISC", + "dependencies": { + "npm-install-checks": "^5.0.0", + "npm-normalize-package-bin": "^2.0.0", + "npm-package-arg": "^9.0.0", + "semver": "^7.3.5" + }, "engines": { - "node": ">=6" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/terser": { - "version": "5.15.1", - "license": "BSD-2-Clause", + "node_modules/npm/node_modules/npm-pick-manifest/node_modules/npm-normalize-package-bin": { + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/npm-normalize-package-bin/-/npm-normalize-package-bin-2.0.0.tgz", + "integrity": "sha512-awzfKUO7v0FscrSpRoogyNm0sajikhBWpU0QMrW09AMi9n1PoKU6WaIqUzuJSQnpciZZmJ/jMZ2Egfmb/9LiWQ==", + "inBundle": true, + "license": "ISC", + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/npm/node_modules/npm-profile": { + "version": "6.2.1", + "resolved": "https://npm.corp.kuaishou.com/npm-profile/-/npm-profile-6.2.1.tgz", + "integrity": "sha512-Tlu13duByHyDd4Xy0PgroxzxnBYWbGGL5aZifNp8cx2DxUrHSoETXtPKg38aRPsBWMRfDtvcvVfJNasj7oImQQ==", + "inBundle": true, + "license": "ISC", "dependencies": { - "@jridgewell/source-map": "^0.3.2", - "acorn": "^8.5.0", - "commander": "^2.20.0", - "source-map-support": "~0.5.20" - }, - "bin": { - "terser": "bin/terser" + "npm-registry-fetch": "^13.0.1", + "proc-log": "^2.0.0" }, "engines": { - "node": ">=10" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/terser-webpack-plugin": { - "version": "5.3.6", - "license": "MIT", + "node_modules/npm/node_modules/npm-registry-fetch": { + "version": "13.3.1", + "resolved": "https://npm.corp.kuaishou.com/npm-registry-fetch/-/npm-registry-fetch-13.3.1.tgz", + "integrity": "sha512-eukJPi++DKRTjSBRcDZSDDsGqRK3ehbxfFUcgaRd0Yp6kRwOwh2WVn0r+8rMB4nnuzvAk6rQVzl6K5CkYOmnvw==", + "inBundle": true, + "license": "ISC", "dependencies": { - "@jridgewell/trace-mapping": "^0.3.14", - "jest-worker": "^27.4.5", - "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.0", - "terser": "^5.14.1" + "make-fetch-happen": "^10.0.6", + "minipass": "^3.1.6", + "minipass-fetch": "^2.0.3", + "minipass-json-stream": "^1.0.1", + "minizlib": "^2.1.2", + "npm-package-arg": "^9.0.1", + "proc-log": "^2.0.0" }, "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.1.0" - }, - "peerDependenciesMeta": { - "@swc/core": { - "optional": true - }, - "esbuild": { - "optional": true - }, - "uglify-js": { - "optional": true - } + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/terser-webpack-plugin/node_modules/ajv": { - "version": "6.12.6", - "license": "MIT", + "node_modules/npm/node_modules/npm-user-validate": { + "version": "1.0.1", + "resolved": "https://npm.corp.kuaishou.com/npm-user-validate/-/npm-user-validate-1.0.1.tgz", + "integrity": "sha1-MUKPxUdf6EFgI/F4wKtHk1rYxWE=", + "inBundle": true, + "license": "BSD-2-Clause" + }, + "node_modules/npm/node_modules/npmlog": { + "version": "6.0.2", + "resolved": "https://npm.corp.kuaishou.com/npmlog/-/npmlog-6.0.2.tgz", + "integrity": "sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==", + "inBundle": true, + "license": "ISC", "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" + "are-we-there-yet": "^3.0.0", + "console-control-strings": "^1.1.0", + "gauge": "^4.0.3", + "set-blocking": "^2.0.0" }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/terser-webpack-plugin/node_modules/ajv-keywords": { - "version": "3.5.2", - "license": "MIT", - "peerDependencies": { - "ajv": "^6.9.1" + "node_modules/npm/node_modules/once": { + "version": "1.4.0", + "resolved": "https://npm.corp.kuaishou.com/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "inBundle": true, + "license": "ISC", + "dependencies": { + "wrappy": "1" } }, - "node_modules/terser-webpack-plugin/node_modules/json-schema-traverse": { - "version": "0.4.1", - "license": "MIT" + "node_modules/npm/node_modules/opener": { + "version": "1.5.2", + "resolved": "https://npm.corp.kuaishou.com/opener/-/opener-1.5.2.tgz", + "integrity": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==", + "inBundle": true, + "license": "(WTFPL OR MIT)", + "bin": { + "opener": "bin/opener-bin.js" + } }, - "node_modules/terser-webpack-plugin/node_modules/schema-utils": { - "version": "3.1.1", + "node_modules/npm/node_modules/p-map": { + "version": "4.0.0", + "resolved": "https://npm.corp.kuaishou.com/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "inBundle": true, "license": "MIT", "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" + "aggregate-error": "^3.0.0" }, "engines": { - "node": ">= 10.13.0" + "node": ">=10" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/thunky": { - "version": "1.1.0", - "license": "MIT" - }, - "node_modules/to-fast-properties": { - "version": "2.0.0", - "license": "MIT", + "node_modules/npm/node_modules/pacote": { + "version": "13.6.2", + "resolved": "https://npm.corp.kuaishou.com/pacote/-/pacote-13.6.2.tgz", + "integrity": "sha512-Gu8fU3GsvOPkak2CkbojR7vjs3k3P9cA6uazKTHdsdV0gpCEQq2opelnEv30KRQWgVzP5Vd/5umjcedma3MKtg==", + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/git": "^3.0.0", + "@npmcli/installed-package-contents": "^1.0.7", + "@npmcli/promise-spawn": "^3.0.0", + "@npmcli/run-script": "^4.1.0", + "cacache": "^16.0.0", + "chownr": "^2.0.0", + "fs-minipass": "^2.1.0", + "infer-owner": "^1.0.4", + "minipass": "^3.1.6", + "mkdirp": "^1.0.4", + "npm-package-arg": "^9.0.0", + "npm-packlist": "^5.1.0", + "npm-pick-manifest": "^7.0.0", + "npm-registry-fetch": "^13.0.1", + "proc-log": "^2.0.0", + "promise-retry": "^2.0.1", + "read-package-json": "^5.0.0", + "read-package-json-fast": "^2.0.3", + "rimraf": "^3.0.2", + "ssri": "^9.0.0", + "tar": "^6.1.11" + }, + "bin": { + "pacote": "lib/bin.js" + }, "engines": { - "node": ">=4" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/to-regex-range": { - "version": "5.0.1", - "license": "MIT", + "node_modules/npm/node_modules/parse-conflict-json": { + "version": "2.0.2", + "resolved": "https://npm.corp.kuaishou.com/parse-conflict-json/-/parse-conflict-json-2.0.2.tgz", + "integrity": "sha512-jDbRGb00TAPFsKWCpZZOT93SxVP9nONOSgES3AevqRq/CHvavEBvKAjxX9p5Y5F0RZLxH9Ufd9+RwtCsa+lFDA==", + "inBundle": true, + "license": "ISC", "dependencies": { - "is-number": "^7.0.0" + "json-parse-even-better-errors": "^2.3.1", + "just-diff": "^5.0.1", + "just-diff-apply": "^5.2.0" }, "engines": { - "node": ">=8.0" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/toidentifier": { + "node_modules/npm/node_modules/path-is-absolute": { "version": "1.0.1", + "resolved": "https://npm.corp.kuaishou.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "inBundle": true, "license": "MIT", "engines": { - "node": ">=0.6" + "node": ">=0.10.0" } }, - "node_modules/ts-debounce": { - "version": "4.0.0", - "license": "MIT" - }, - "node_modules/tslib": { - "version": "2.4.1", - "license": "0BSD" - }, - "node_modules/type-is": { - "version": "1.6.18", + "node_modules/npm/node_modules/postcss-selector-parser": { + "version": "6.0.10", + "resolved": "https://npm.corp.kuaishou.com/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz", + "integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==", + "inBundle": true, "license": "MIT", "dependencies": { - "media-typer": "0.3.0", - "mime-types": "~2.1.24" + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" }, "engines": { - "node": ">= 0.6" + "node": ">=4" } }, - "node_modules/uc.micro": { - "version": "1.0.6", - "license": "MIT" - }, - "node_modules/underscore": { - "version": "1.13.6", - "license": "MIT" - }, - "node_modules/universalify": { - "version": "2.0.0", - "license": "MIT", + "node_modules/npm/node_modules/proc-log": { + "version": "2.0.1", + "resolved": "https://npm.corp.kuaishou.com/proc-log/-/proc-log-2.0.1.tgz", + "integrity": "sha512-Kcmo2FhfDTXdcbfDH76N7uBYHINxc/8GW7UAVuVP9I+Va3uHSerrnKV6dLooga/gh7GlgzuCCr/eoldnL1muGw==", + "inBundle": true, + "license": "ISC", "engines": { - "node": ">= 10.0.0" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/unpipe": { - "version": "1.0.0", - "license": "MIT", - "engines": { - "node": ">= 0.8" + "node_modules/npm/node_modules/promise-all-reject-late": { + "version": "1.0.1", + "resolved": "https://npm.corp.kuaishou.com/promise-all-reject-late/-/promise-all-reject-late-1.0.1.tgz", + "integrity": "sha1-+OvxNIPlypGtgJzML88l8m+GQ8I=", + "inBundle": true, + "license": "ISC", + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/upath": { - "version": "2.0.1", - "license": "MIT", - "engines": { - "node": ">=4", - "yarn": "*" + "node_modules/npm/node_modules/promise-call-limit": { + "version": "1.0.1", + "resolved": "https://npm.corp.kuaishou.com/promise-call-limit/-/promise-call-limit-1.0.1.tgz", + "integrity": "sha1-S97gOuuFZ0OFypNNpxFOm808biQ=", + "inBundle": true, + "license": "ISC", + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/update-browserslist-db": { - "version": "1.0.10", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - } - ], + "node_modules/npm/node_modules/promise-inflight": { + "version": "1.0.1", + "resolved": "https://npm.corp.kuaishou.com/promise-inflight/-/promise-inflight-1.0.1.tgz", + "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/promise-retry": { + "version": "2.0.1", + "resolved": "https://npm.corp.kuaishou.com/promise-retry/-/promise-retry-2.0.1.tgz", + "integrity": "sha1-/3R6E2IKtXumiPX8Z4VUEMNw2iI=", + "inBundle": true, "license": "MIT", "dependencies": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" + "err-code": "^2.0.2", + "retry": "^0.12.0" }, - "bin": { - "browserslist-lint": "cli.js" - }, - "peerDependencies": { - "browserslist": ">= 4.21.0" + "engines": { + "node": ">=10" } }, - "node_modules/uri-js": { - "version": "4.4.1", - "license": "BSD-2-Clause", + "node_modules/npm/node_modules/promzard": { + "version": "0.3.0", + "resolved": "https://npm.corp.kuaishou.com/promzard/-/promzard-0.3.0.tgz", + "integrity": "sha1-JqXW7ox97kyxIggwWs+5O6OCqe4=", + "inBundle": true, + "license": "ISC", "dependencies": { - "punycode": "^2.1.0" - } - }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "license": "MIT" - }, - "node_modules/utila": { - "version": "0.4.0", - "license": "MIT" - }, - "node_modules/utils-merge": { - "version": "1.0.1", - "license": "MIT", - "engines": { - "node": ">= 0.4.0" + "read": "1" } }, - "node_modules/uuid": { - "version": "3.4.0", - "license": "MIT", + "node_modules/npm/node_modules/qrcode-terminal": { + "version": "0.12.0", + "resolved": "https://npm.corp.kuaishou.com/qrcode-terminal/-/qrcode-terminal-0.12.0.tgz", + "integrity": "sha1-u1tpnvf58FBQkqN0i+RGT+cbWBk=", + "inBundle": true, "bin": { - "uuid": "bin/uuid" + "qrcode-terminal": "bin/qrcode-terminal.js" } }, - "node_modules/valine": { - "version": "1.4.18", - "license": "GPL-2.0", + "node_modules/npm/node_modules/read": { + "version": "1.0.7", + "resolved": "https://npm.corp.kuaishou.com/read/-/read-1.0.7.tgz", + "integrity": "sha1-s9oZvQUkMal2cdRKQmNK33ELQMQ=", + "inBundle": true, + "license": "ISC", "dependencies": { - "autosize": "^4.0.2", - "balajs": "^1.0.7", - "balalaika": "^1.0.1", - "blueimp-md5": "^2.8.0", - "element-closest": "^3.0.2", - "hanabi": "^0.4.0", - "insane": "^2.6.2", - "leancloud-storage": "^3.0.4", - "marked": "^4.0.8", - "storejs": "^1.0.25", - "xss": "^1.0.6" + "mute-stream": "~0.0.4" + }, + "engines": { + "node": ">=0.8" } }, - "node_modules/vary": { - "version": "1.1.2", - "license": "MIT", + "node_modules/npm/node_modules/read-cmd-shim": { + "version": "3.0.0", + "inBundle": true, + "license": "ISC", "engines": { - "node": ">= 0.8" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/vite": { - "version": "3.0.9", - "license": "MIT", + "node_modules/npm/node_modules/read-package-json": { + "version": "5.0.2", + "resolved": "https://npm.corp.kuaishou.com/read-package-json/-/read-package-json-5.0.2.tgz", + "integrity": "sha512-BSzugrt4kQ/Z0krro8zhTwV1Kd79ue25IhNN/VtHFy1mG/6Tluyi+msc0UpwaoQzxSHa28mntAjIZY6kEgfR9Q==", + "inBundle": true, + "license": "ISC", "dependencies": { - "esbuild": "^0.14.47", - "postcss": "^8.4.16", - "resolve": "^1.22.1", - "rollup": ">=2.75.6 <2.77.0 || ~2.77.0" - }, - "bin": { - "vite": "bin/vite.js" + "glob": "^8.0.1", + "json-parse-even-better-errors": "^2.3.1", + "normalize-package-data": "^4.0.0", + "npm-normalize-package-bin": "^2.0.0" }, "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - }, - "peerDependencies": { - "less": "*", - "sass": "*", - "stylus": "*", - "terser": "^5.4.0" - }, - "peerDependenciesMeta": { - "less": { - "optional": true - }, - "sass": { - "optional": true - }, - "stylus": { - "optional": true - }, - "terser": { - "optional": true - } + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/vite/node_modules/rollup": { - "version": "2.77.3", - "license": "MIT", - "bin": { - "rollup": "dist/bin/rollup" + "node_modules/npm/node_modules/read-package-json-fast": { + "version": "2.0.3", + "resolved": "https://npm.corp.kuaishou.com/read-package-json-fast/-/read-package-json-fast-2.0.3.tgz", + "integrity": "sha1-MjylKWMNqCyzSzbMC5lmk8mMK4M=", + "inBundle": true, + "license": "ISC", + "dependencies": { + "json-parse-even-better-errors": "^2.3.0", + "npm-normalize-package-bin": "^1.0.1" }, "engines": { - "node": ">=10.0.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" + "node": ">=10" } }, - "node_modules/vue": { - "version": "3.2.41", - "license": "MIT", - "dependencies": { - "@vue/compiler-dom": "3.2.41", - "@vue/compiler-sfc": "3.2.41", - "@vue/runtime-dom": "3.2.41", - "@vue/server-renderer": "3.2.41", - "@vue/shared": "3.2.41" + "node_modules/npm/node_modules/read-package-json/node_modules/npm-normalize-package-bin": { + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/npm-normalize-package-bin/-/npm-normalize-package-bin-2.0.0.tgz", + "integrity": "sha512-awzfKUO7v0FscrSpRoogyNm0sajikhBWpU0QMrW09AMi9n1PoKU6WaIqUzuJSQnpciZZmJ/jMZ2Egfmb/9LiWQ==", + "inBundle": true, + "license": "ISC", + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/vue-demi": { - "version": "0.13.11", - "hasInstallScript": true, + "node_modules/npm/node_modules/readable-stream": { + "version": "3.6.0", + "resolved": "https://npm.corp.kuaishou.com/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "inBundle": true, "license": "MIT", - "bin": { - "vue-demi-fix": "bin/vue-demi-fix.js", - "vue-demi-switch": "bin/vue-demi-switch.js" + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" }, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/antfu" - }, - "peerDependencies": { - "@vue/composition-api": "^1.0.0-rc.1", - "vue": "^3.0.0-0 || ^2.6.0" - }, - "peerDependenciesMeta": { - "@vue/composition-api": { - "optional": true - } + "node": ">= 6" } }, - "node_modules/vue-loader": { - "version": "17.0.1", - "license": "MIT", + "node_modules/npm/node_modules/readdir-scoped-modules": { + "version": "1.1.0", + "resolved": "https://npm.corp.kuaishou.com/readdir-scoped-modules/-/readdir-scoped-modules-1.1.0.tgz", + "integrity": "sha512-asaikDeqAQg7JifRsZn1NJZXo9E+VwlyCfbkZhwyISinqk5zNS6266HS5kah6P0SaQKGF6SkNnZVHUzHFYxYDw==", + "inBundle": true, + "license": "ISC", "dependencies": { - "chalk": "^4.1.0", - "hash-sum": "^2.0.0", - "loader-utils": "^2.0.0" - }, - "peerDependencies": { - "webpack": "^4.1.0 || ^5.0.0-0" - }, - "peerDependenciesMeta": { - "@vue/compiler-sfc": { - "optional": true - }, - "vue": { - "optional": true - } + "debuglog": "^1.0.1", + "dezalgo": "^1.0.0", + "graceful-fs": "^4.1.2", + "once": "^1.3.0" } }, - "node_modules/vue-loader/node_modules/chalk": { - "version": "4.1.2", + "node_modules/npm/node_modules/retry": { + "version": "0.12.0", + "resolved": "https://npm.corp.kuaishou.com/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==", + "inBundle": true, "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/npm/node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://npm.corp.kuaishou.com/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha1-8aVAK6YiCtUswSgrrBrjqkn9Bho=", + "inBundle": true, + "license": "ISC", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "glob": "^7.1.3" }, - "engines": { - "node": ">=10" + "bin": { + "rimraf": "bin.js" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/vue-router": { - "version": "4.1.6", + "node_modules/npm/node_modules/rimraf/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://npm.corp.kuaishou.com/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha1-PH/L9SnYcibz0vUrlm/1Jx60Qd0=", + "inBundle": true, "license": "MIT", "dependencies": { - "@vue/devtools-api": "^6.4.5" - }, - "funding": { - "url": "https://github.com/sponsors/posva" - }, - "peerDependencies": { - "vue": "^3.2.0" + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" } }, - "node_modules/vuepress": { - "version": "2.0.0-beta.51", - "license": "MIT", + "node_modules/npm/node_modules/rimraf/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://npm.corp.kuaishou.com/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "inBundle": true, + "license": "ISC", "dependencies": { - "vuepress-vite": "2.0.0-beta.51" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" }, - "bin": { - "vuepress": "bin/vuepress.js" + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/vuepress-theme-reco": { - "version": "2.0.0-beta.41", - "license": "MIT", + "node_modules/npm/node_modules/rimraf/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://npm.corp.kuaishou.com/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "inBundle": true, + "license": "ISC", "dependencies": { - "@vicons/fa": "^0.12.0", - "@vicons/tabler": "^0.12.0", - "@vuepress-reco/shared": "2.0.0-beta.41", - "@vuepress-reco/tailwindcss-config": "2.0.0-beta.41", - "@vuepress-reco/vuepress-plugin-bulletin-popover": "2.0.0-beta.41", - "@vuepress-reco/vuepress-plugin-code-copy": "2.0.0-beta.41", - "@vuepress-reco/vuepress-plugin-comments": "2.0.0-beta.41", - "@vuepress-reco/vuepress-plugin-page": "2.0.0-beta.41", - "@vuepress-reco/vuepress-plugin-vue-preview": "2.0.0-beta.41", - "@vuepress/bundler-vite": "2.0.0-beta.51", - "@vuepress/bundler-webpack": "2.0.0-beta.51", - "@vuepress/client": "2.0.0-beta.51", - "@vuepress/core": "2.0.0-beta.51", - "@vuepress/plugin-active-header-links": "2.0.0-beta.51", - "@vuepress/plugin-back-to-top": "2.0.0-beta.51", - "@vuepress/plugin-container": "2.0.0-beta.51", - "@vuepress/plugin-external-link-icon": "2.0.0-beta.51", - "@vuepress/plugin-git": "2.0.0-beta.51", - "@vuepress/plugin-nprogress": "2.0.0-beta.51", - "@vuepress/plugin-palette": "2.0.0-beta.51", - "@vuepress/plugin-prismjs": "2.0.0-beta.51", - "@vuepress/plugin-register-components": "2.0.0-beta.51", - "@vuepress/plugin-search": "2.0.0-beta.51", - "@vuepress/plugin-theme-data": "2.0.0-beta.51", - "@vuepress/shared": "2.0.0-beta.51", - "@vuepress/utils": "2.0.0-beta.51", - "autoprefixer": "10.4.7", - "postcss": "8.4.14", - "postcss-each": "1.1.0", - "postcss-import": "14.0.2", - "tailwindcss": "3.1.6", - "vue": "^3.2.38", - "vue-router": "^4.1.5" + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" } }, - "node_modules/vuepress-theme-reco/node_modules/autoprefixer": { - "version": "10.4.7", + "node_modules/npm/node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://npm.corp.kuaishou.com/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha1-Hq+fqb2x/dTsdfWPnNtOa3gn7sY=", "funding": [ { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" + "type": "github", + "url": "https://github.com/sponsors/feross" }, { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/autoprefixer" + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" } ], + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://npm.corp.kuaishou.com/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "inBundle": true, "license": "MIT", + "optional": true + }, + "node_modules/npm/node_modules/semver": { + "version": "7.3.7", + "inBundle": true, + "license": "ISC", "dependencies": { - "browserslist": "^4.20.3", - "caniuse-lite": "^1.0.30001335", - "fraction.js": "^4.2.0", - "normalize-range": "^0.1.2", - "picocolors": "^1.0.0", - "postcss-value-parser": "^4.2.0" + "lru-cache": "^6.0.0" }, "bin": { - "autoprefixer": "bin/autoprefixer" + "semver": "bin/semver.js" }, "engines": { - "node": "^10 || ^12 || >=14" - }, - "peerDependencies": { - "postcss": "^8.1.0" + "node": ">=10" } }, - "node_modules/vuepress-theme-reco/node_modules/glob-parent": { - "version": "6.0.2", + "node_modules/npm/node_modules/semver/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://npm.corp.kuaishou.com/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "inBundle": true, "license": "ISC", "dependencies": { - "is-glob": "^4.0.3" + "yallist": "^4.0.0" }, "engines": { - "node": ">=10.13.0" + "node": ">=10" } }, - "node_modules/vuepress-theme-reco/node_modules/postcss": { - "version": "8.4.14", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - } - ], + "node_modules/npm/node_modules/set-blocking": { + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://npm.corp.kuaishou.com/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/smart-buffer": { + "version": "4.2.0", + "resolved": "https://npm.corp.kuaishou.com/smart-buffer/-/smart-buffer-4.2.0.tgz", + "integrity": "sha1-bh1x+k8YwF99D/IW3RakgdDo2a4=", + "inBundle": true, "license": "MIT", - "dependencies": { - "nanoid": "^3.3.4", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" - }, "engines": { - "node": "^10 || ^12 || >=14" + "node": ">= 6.0.0", + "npm": ">= 3.0.0" } }, - "node_modules/vuepress-theme-reco/node_modules/postcss-each": { - "version": "1.1.0", + "node_modules/npm/node_modules/socks": { + "version": "2.7.0", + "inBundle": true, "license": "MIT", "dependencies": { - "postcss-simple-vars": "^6.0.0" + "ip": "^2.0.0", + "smart-buffer": "^4.2.0" }, - "peerDependencies": { - "postcss": "^8.0.0" + "engines": { + "node": ">= 10.13.0", + "npm": ">= 3.0.0" } }, - "node_modules/vuepress-theme-reco/node_modules/postcss-import": { - "version": "14.0.2", + "node_modules/npm/node_modules/socks-proxy-agent": { + "version": "7.0.0", + "resolved": "https://npm.corp.kuaishou.com/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz", + "integrity": "sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==", + "inBundle": true, "license": "MIT", "dependencies": { - "postcss-value-parser": "^4.0.0", - "read-cache": "^1.0.0", - "resolve": "^1.1.7" + "agent-base": "^6.0.2", + "debug": "^4.3.3", + "socks": "^2.6.2" }, "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "postcss": "^8.0.0" + "node": ">= 10" } }, - "node_modules/vuepress-theme-reco/node_modules/postcss-simple-vars": { - "version": "6.0.3", - "license": "MIT", - "engines": { - "node": ">=10.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - "peerDependencies": { - "postcss": "^8.2.1" + "node_modules/npm/node_modules/spdx-correct": { + "version": "3.1.1", + "resolved": "https://npm.corp.kuaishou.com/spdx-correct/-/spdx-correct-3.1.1.tgz", + "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", + "inBundle": true, + "license": "Apache-2.0", + "dependencies": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" } }, - "node_modules/vuepress-theme-reco/node_modules/tailwindcss": { - "version": "3.1.6", + "node_modules/npm/node_modules/spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://npm.corp.kuaishou.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", + "inBundle": true, + "license": "CC-BY-3.0" + }, + "node_modules/npm/node_modules/spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://npm.corp.kuaishou.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha1-z3D1BILu/cmOPOCmgz5KU87rpnk=", + "inBundle": true, "license": "MIT", "dependencies": { - "arg": "^5.0.2", - "chokidar": "^3.5.3", - "color-name": "^1.1.4", - "detective": "^5.2.1", - "didyoumean": "^1.2.2", - "dlv": "^1.1.3", - "fast-glob": "^3.2.11", - "glob-parent": "^6.0.2", - "is-glob": "^4.0.3", - "lilconfig": "^2.0.5", - "normalize-path": "^3.0.0", - "object-hash": "^3.0.0", - "picocolors": "^1.0.0", - "postcss": "^8.4.14", - "postcss-import": "^14.1.0", - "postcss-js": "^4.0.0", - "postcss-load-config": "^3.1.4", - "postcss-nested": "5.0.6", - "postcss-selector-parser": "^6.0.10", - "postcss-value-parser": "^4.2.0", - "quick-lru": "^5.1.1", - "resolve": "^1.22.1" - }, - "bin": { - "tailwind": "lib/cli.js", - "tailwindcss": "lib/cli.js" + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/npm/node_modules/spdx-license-ids": { + "version": "3.0.11", + "inBundle": true, + "license": "CC0-1.0" + }, + "node_modules/npm/node_modules/ssri": { + "version": "9.0.1", + "resolved": "https://npm.corp.kuaishou.com/ssri/-/ssri-9.0.1.tgz", + "integrity": "sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==", + "inBundle": true, + "license": "ISC", + "dependencies": { + "minipass": "^3.1.1" }, "engines": { - "node": ">=12.13.0" - }, - "peerDependencies": { - "postcss": "^8.0.9" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/vuepress-theme-reco/node_modules/tailwindcss/node_modules/postcss": { - "version": "8.4.18", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - } - ], + "node_modules/npm/node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://npm.corp.kuaishou.com/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha1-QvEUWUpGzxqOMLCoT1bHjD7awh4=", + "inBundle": true, "license": "MIT", "dependencies": { - "nanoid": "^3.3.4", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" + "safe-buffer": "~5.2.0" + } + }, + "node_modules/npm/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://npm.corp.kuaishou.com/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "inBundle": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" }, "engines": { - "node": "^10 || ^12 || >=14" + "node": ">=8" } }, - "node_modules/vuepress-theme-reco/node_modules/tailwindcss/node_modules/postcss-import": { - "version": "14.1.0", + "node_modules/npm/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://npm.corp.kuaishou.com/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha1-nibGPTD1NEPpSJSVshBdN7Z6hdk=", + "inBundle": true, "license": "MIT", "dependencies": { - "postcss-value-parser": "^4.0.0", - "read-cache": "^1.0.0", - "resolve": "^1.1.7" + "ansi-regex": "^5.0.1" }, "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "postcss": "^8.0.0" + "node": ">=8" } }, - "node_modules/vuepress-theme-reco/node_modules/tailwindcss/node_modules/postcss-js": { - "version": "4.0.0", + "node_modules/npm/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://npm.corp.kuaishou.com/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "inBundle": true, "license": "MIT", "dependencies": { - "camelcase-css": "^2.0.1" + "has-flag": "^4.0.0" }, "engines": { - "node": "^12 || ^14 || >= 16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - "peerDependencies": { - "postcss": "^8.3.3" + "node": ">=8" } }, - "node_modules/vuepress-theme-reco/node_modules/tailwindcss/node_modules/postcss-load-config": { - "version": "3.1.4", - "license": "MIT", + "node_modules/npm/node_modules/tar": { + "version": "6.1.11", + "inBundle": true, + "license": "ISC", "dependencies": { - "lilconfig": "^2.0.5", - "yaml": "^1.10.2" + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^3.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" }, "engines": { "node": ">= 10" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - "peerDependencies": { - "postcss": ">=8.0.9", - "ts-node": ">=9.0.0" - }, - "peerDependenciesMeta": { - "postcss": { - "optional": true - }, - "ts-node": { - "optional": true - } } }, - "node_modules/vuepress-theme-reco/node_modules/tailwindcss/node_modules/postcss-nested": { - "version": "5.0.6", - "license": "MIT", + "node_modules/npm/node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://npm.corp.kuaishou.com/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/tiny-relative-date": { + "version": "1.3.0", + "resolved": "https://npm.corp.kuaishou.com/tiny-relative-date/-/tiny-relative-date-1.3.0.tgz", + "integrity": "sha1-+giq1QHtcw8xzAQxgdmVw5qTXgc=", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/treeverse": { + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/treeverse/-/treeverse-2.0.0.tgz", + "integrity": "sha512-N5gJCkLu1aXccpOTtqV6ddSEi6ZmGkh3hjmbu1IjcavJK4qyOVQmi0myQKM7z5jVGmD68SJoliaVrMmVObhj6A==", + "inBundle": true, + "license": "ISC", + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/npm/node_modules/unique-filename": { + "version": "2.0.1", + "resolved": "https://npm.corp.kuaishou.com/unique-filename/-/unique-filename-2.0.1.tgz", + "integrity": "sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==", + "inBundle": true, + "license": "ISC", "dependencies": { - "postcss-selector-parser": "^6.0.6" + "unique-slug": "^3.0.0" }, "engines": { - "node": ">=12.0" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/npm/node_modules/unique-slug": { + "version": "3.0.0", + "resolved": "https://npm.corp.kuaishou.com/unique-slug/-/unique-slug-3.0.0.tgz", + "integrity": "sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==", + "inBundle": true, + "license": "ISC", + "dependencies": { + "imurmurhash": "^0.1.4" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/npm/node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://npm.corp.kuaishou.com/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://npm.corp.kuaishou.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "inBundle": true, + "license": "Apache-2.0", + "dependencies": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "node_modules/npm/node_modules/validate-npm-package-name": { + "version": "4.0.0", + "resolved": "https://npm.corp.kuaishou.com/validate-npm-package-name/-/validate-npm-package-name-4.0.0.tgz", + "integrity": "sha512-mzR0L8ZDktZjpX4OB46KT+56MAhl4EIazWP/+G/HPGuvfdaqg4YsCdtOm6U9+LOFyYDoh4dpnpxZRB9MQQns5Q==", + "inBundle": true, + "license": "ISC", + "dependencies": { + "builtins": "^5.0.0" }, - "peerDependencies": { - "postcss": "^8.2.14" + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/vuepress-vite": { - "version": "2.0.0-beta.51", + "node_modules/npm/node_modules/walk-up-path": { + "version": "1.0.0", + "resolved": "https://npm.corp.kuaishou.com/walk-up-path/-/walk-up-path-1.0.0.tgz", + "integrity": "sha1-1HReiT3V/Q27WN0KTGoz2cn+xT4=", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/wcwidth": { + "version": "1.0.1", + "resolved": "https://npm.corp.kuaishou.com/wcwidth/-/wcwidth-1.0.1.tgz", + "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", + "inBundle": true, "license": "MIT", "dependencies": { - "@vuepress/bundler-vite": "2.0.0-beta.51", - "@vuepress/cli": "2.0.0-beta.51", - "@vuepress/core": "2.0.0-beta.51", - "@vuepress/theme-default": "2.0.0-beta.51" + "defaults": "^1.0.3" + } + }, + "node_modules/npm/node_modules/which": { + "version": "2.0.2", + "resolved": "https://npm.corp.kuaishou.com/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "inBundle": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" }, "bin": { - "vuepress": "bin/vuepress.js", - "vuepress-vite": "bin/vuepress.js" + "node-which": "bin/node-which" }, - "peerDependencies": { - "@vuepress/client": "^2.0.0-beta.50", - "vue": "^3.2.37" + "engines": { + "node": ">= 8" } }, - "node_modules/watchpack": { - "version": "2.4.0", - "license": "MIT", + "node_modules/npm/node_modules/wide-align": { + "version": "1.1.5", + "resolved": "https://npm.corp.kuaishou.com/wide-align/-/wide-align-1.1.5.tgz", + "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", + "inBundle": true, + "license": "ISC", "dependencies": { - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.1.2" + "string-width": "^1.0.2 || 2 || 3 || 4" + } + }, + "node_modules/npm/node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://npm.corp.kuaishou.com/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/write-file-atomic": { + "version": "4.0.2", + "resolved": "https://npm.corp.kuaishou.com/write-file-atomic/-/write-file-atomic-4.0.2.tgz", + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", + "inBundle": true, + "license": "ISC", + "dependencies": { + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.7" }, "engines": { - "node": ">=10.13.0" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/wbuf": { - "version": "1.7.3", - "license": "MIT", + "node_modules/npm/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://npm.corp.kuaishou.com/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha1-m7knkNnA7/7GO+c1GeEaNQGaOnI=", + "inBundle": true, + "license": "ISC" + }, + "node_modules/nth-check": { + "version": "2.1.1", + "resolved": "https://npm.corp.kuaishou.com/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "license": "BSD-2-Clause", "dependencies": { - "minimalistic-assert": "^1.0.0" + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" } }, - "node_modules/wcwidth": { + "node_modules/number-is-nan": { "version": "1.0.1", + "resolved": "https://npm.corp.kuaishou.com/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==", "license": "MIT", - "dependencies": { - "defaults": "^1.0.3" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/webpack": { - "version": "5.74.0", + "node_modules/object-hash": { + "version": "3.0.0", + "resolved": "https://npm.corp.kuaishou.com/object-hash/-/object-hash-3.0.0.tgz", + "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", "license": "MIT", - "dependencies": { - "@types/eslint-scope": "^3.7.3", - "@types/estree": "^0.0.51", - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/wasm-edit": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", - "acorn": "^8.7.1", - "acorn-import-assertions": "^1.7.6", - "browserslist": "^4.14.5", - "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.10.0", - "es-module-lexer": "^0.9.0", - "eslint-scope": "5.1.1", - "events": "^3.2.0", - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.2.9", - "json-parse-even-better-errors": "^2.3.1", - "loader-runner": "^4.2.0", - "mime-types": "^2.1.27", - "neo-async": "^2.6.2", - "schema-utils": "^3.1.0", - "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.1.3", - "watchpack": "^2.4.0", - "webpack-sources": "^3.2.3" - }, - "bin": { - "webpack": "bin/webpack.js" - }, "engines": { - "node": ">=10.13.0" - }, + "node": ">= 6" + } + }, + "node_modules/object-inspect": { + "version": "1.12.2", + "resolved": "https://npm.corp.kuaishou.com/object-inspect/-/object-inspect-1.12.2.tgz", + "integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==", + "license": "MIT", "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependenciesMeta": { - "webpack-cli": { - "optional": true - } + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/webpack-chain": { - "version": "6.5.1", - "license": "MPL-2.0", + "node_modules/obuf": { + "version": "1.1.2", + "resolved": "https://npm.corp.kuaishou.com/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha1-Cb6jND1BhZ69RGKS0RydTbYZCE4=", + "license": "MIT" + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://npm.corp.kuaishou.com/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "license": "MIT", "dependencies": { - "deepmerge": "^1.5.2", - "javascript-stringify": "^2.0.1" + "ee-first": "1.1.1" }, "engines": { - "node": ">=8" + "node": ">= 0.8" } }, - "node_modules/webpack-dev-middleware": { - "version": "5.3.3", + "node_modules/on-headers": { + "version": "1.0.2", + "resolved": "https://npm.corp.kuaishou.com/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", "license": "MIT", - "dependencies": { - "colorette": "^2.0.10", - "memfs": "^3.4.3", - "mime-types": "^2.1.31", - "range-parser": "^1.2.1", - "schema-utils": "^4.0.0" - }, "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^4.0.0 || ^5.0.0" + "node": ">= 0.8" } }, - "node_modules/webpack-dev-server": { - "version": "4.11.1", - "license": "MIT", + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://npm.corp.kuaishou.com/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "license": "ISC", "dependencies": { - "@types/bonjour": "^3.5.9", - "@types/connect-history-api-fallback": "^1.3.5", - "@types/express": "^4.17.13", - "@types/serve-index": "^1.9.1", - "@types/serve-static": "^1.13.10", - "@types/sockjs": "^0.3.33", - "@types/ws": "^8.5.1", - "ansi-html-community": "^0.0.8", - "bonjour-service": "^1.0.11", - "chokidar": "^3.5.3", - "colorette": "^2.0.10", - "compression": "^1.7.4", - "connect-history-api-fallback": "^2.0.0", - "default-gateway": "^6.0.3", - "express": "^4.17.3", - "graceful-fs": "^4.2.6", - "html-entities": "^2.3.2", - "http-proxy-middleware": "^2.0.3", - "ipaddr.js": "^2.0.1", - "open": "^8.0.9", - "p-retry": "^4.5.0", - "rimraf": "^3.0.2", - "schema-utils": "^4.0.0", - "selfsigned": "^2.1.1", - "serve-index": "^1.9.1", - "sockjs": "^0.3.24", - "spdy": "^4.0.2", - "webpack-dev-middleware": "^5.3.1", - "ws": "^8.4.2" - }, - "bin": { - "webpack-dev-server": "bin/webpack-dev-server.js" - }, - "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^4.37.0 || ^5.0.0" - }, - "peerDependenciesMeta": { - "webpack-cli": { - "optional": true - } + "wrappy": "1" } }, - "node_modules/webpack-merge": { - "version": "5.8.0", + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://npm.corp.kuaishou.com/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha1-0Oluu1awdHbfHdnEgG5SN5hcpF4=", "license": "MIT", "dependencies": { - "clone-deep": "^4.0.1", - "wildcard": "^2.0.0" + "mimic-fn": "^2.1.0" }, "engines": { - "node": ">=10.0.0" + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/webpack-sources": { - "version": "2.3.1", + "node_modules/open": { + "version": "8.4.0", + "resolved": "https://npm.corp.kuaishou.com/open/-/open-8.4.0.tgz", + "integrity": "sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==", "license": "MIT", "dependencies": { - "source-list-map": "^2.0.1", - "source-map": "^0.6.1" + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" }, "engines": { - "node": ">=10.13.0" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/webpack/node_modules/@types/estree": { - "version": "0.0.51", + "node_modules/optjs": { + "version": "3.2.2", + "resolved": "https://npm.corp.kuaishou.com/optjs/-/optjs-3.2.2.tgz", + "integrity": "sha1-aabOicRCpEQDFBrS+bNwvVu29O4=", "license": "MIT" }, - "node_modules/webpack/node_modules/ajv": { - "version": "6.12.6", + "node_modules/ora": { + "version": "6.1.2", + "resolved": "https://npm.corp.kuaishou.com/ora/-/ora-6.1.2.tgz", + "integrity": "sha512-EJQ3NiP5Xo94wJXIzAyOtSb0QEIAUu7m8t6UZ9krbz0vAJqr92JpcK/lEXg91q6B9pEGqrykkd2EQplnifDSBw==", "license": "MIT", "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" + "bl": "^5.0.0", + "chalk": "^5.0.0", + "cli-cursor": "^4.0.0", + "cli-spinners": "^2.6.1", + "is-interactive": "^2.0.0", + "is-unicode-supported": "^1.1.0", + "log-symbols": "^5.1.0", + "strip-ansi": "^7.0.1", + "wcwidth": "^1.0.1" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/webpack/node_modules/ajv-keywords": { - "version": "3.5.2", + "node_modules/ora/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://npm.corp.kuaishou.com/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha1-MYPjj66aZdfLXlOUXNWJfQJgoGo=", "license": "MIT", - "peerDependencies": { - "ajv": "^6.9.1" + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" } }, - "node_modules/webpack/node_modules/json-schema-traverse": { - "version": "0.4.1", - "license": "MIT" - }, - "node_modules/webpack/node_modules/schema-utils": { - "version": "3.1.1", + "node_modules/ora/node_modules/strip-ansi": { + "version": "7.0.1", + "resolved": "https://npm.corp.kuaishou.com/strip-ansi/-/strip-ansi-7.0.1.tgz", + "integrity": "sha1-YXQKCM42th5Q5lZT8HBg0ACXX7I=", "license": "MIT", "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" + "ansi-regex": "^6.0.1" }, "engines": { - "node": ">= 10.13.0" + "node": ">=12" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "url": "https://github.com/chalk/strip-ansi?sponsor=1" } }, - "node_modules/webpack/node_modules/webpack-sources": { - "version": "3.2.3", + "node_modules/os-locale": { + "version": "1.4.0", + "resolved": "https://npm.corp.kuaishou.com/os-locale/-/os-locale-1.4.0.tgz", + "integrity": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=", "license": "MIT", + "dependencies": { + "lcid": "^1.0.0" + }, "engines": { - "node": ">=10.13.0" + "node": ">=0.10.0" } }, - "node_modules/websocket-driver": { - "version": "0.7.4", - "license": "Apache-2.0", + "node_modules/p-retry": { + "version": "4.6.2", + "resolved": "https://npm.corp.kuaishou.com/p-retry/-/p-retry-4.6.2.tgz", + "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==", + "license": "MIT", "dependencies": { - "http-parser-js": ">=0.5.1", - "safe-buffer": ">=5.1.0", - "websocket-extensions": ">=0.1.1" + "@types/retry": "0.12.0", + "retry": "^0.13.1" }, "engines": { - "node": ">=0.8.0" + "node": ">=8" } }, - "node_modules/websocket-extensions": { - "version": "0.1.4", - "license": "Apache-2.0", - "engines": { - "node": ">=0.8.0" + "node_modules/param-case": { + "version": "3.0.4", + "resolved": "https://npm.corp.kuaishou.com/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha1-fRf+SqEr3jTUp32RrPtiGcqtAcU=", + "license": "MIT", + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" } }, - "node_modules/which": { - "version": "2.0.2", - "license": "ISC", + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://npm.corp.kuaishou.com/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "license": "MIT", "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" + "callsites": "^3.0.0" }, "engines": { - "node": ">= 8" + "node": ">=6" } }, - "node_modules/wildcard": { - "version": "2.0.0", - "license": "MIT" - }, - "node_modules/window-size": { - "version": "0.1.4", + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://npm.corp.kuaishou.com/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha1-x2/Gbe5UIxyWKyK8yKcs8vmXU80=", "license": "MIT", - "bin": { - "window-size": "cli.js" + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" }, "engines": { - "node": ">= 0.10.0" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/wrap-ansi": { - "version": "2.1.0", + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://npm.corp.kuaishou.com/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha1-naGee+6NEt/wUT7Vt2lXeTvC6NQ=", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/pascal-case": { + "version": "3.1.2", + "resolved": "https://npm.corp.kuaishou.com/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha1-tI4O8rmOIF58Ha50fQsVCCN2YOs=", "license": "MIT", "dependencies": { - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1" - }, + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://npm.corp.kuaishou.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, - "node_modules/wrappy": { - "version": "1.0.2", + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://npm.corp.kuaishou.com/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://npm.corp.kuaishou.com/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha1-+8EUtgykKzDZ2vWFjkvWi77bZzU=", + "license": "MIT" + }, + "node_modules/path-to-regexp": { + "version": "0.1.7", + "resolved": "https://npm.corp.kuaishou.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", + "license": "MIT" + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://npm.corp.kuaishou.com/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha1-hO0BwKe6OAr+CdkKjBgNzZ0DBDs=", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://npm.corp.kuaishou.com/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha1-y1vcdP8/UYkiNur3nWi8RFZKuBw=", "license": "ISC" }, - "node_modules/ws": { - "version": "8.11.0", + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://npm.corp.kuaishou.com/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", "license": "MIT", "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": "^5.0.2" + "node": ">=8.6" }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "2.3.0", + "resolved": "https://npm.corp.kuaishou.com/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss": { + "version": "8.4.18", + "resolved": "https://npm.corp.kuaishou.com/postcss/-/postcss-8.4.18.tgz", + "integrity": "sha512-Wi8mWhncLJm11GATDaQKobXSNEYGUHeQLiQqDFG1qQ5UTDPTEvKw0Xt5NsTpktGTwLps3ByrWsBrG0rB8YQ9oA==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" }, - "utf-8-validate": { - "optional": true + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.4", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" } }, - "node_modules/xss": { - "version": "1.0.14", + "node_modules/postcss-csso": { + "version": "6.0.1", + "resolved": "https://npm.corp.kuaishou.com/postcss-csso/-/postcss-csso-6.0.1.tgz", + "integrity": "sha512-ZV4yEziMrx6CEiqabGLrDva0pMD7Fbw7yP+LzJvaynM4OJgTssGN6dHiMsJMJdpmNaLJltXVLsrb/5sxbFa8sA==", "license": "MIT", "dependencies": { - "commander": "^2.20.3", - "cssfilter": "0.0.10" - }, - "bin": { - "xss": "bin/xss" + "csso": "^5.0.5" }, "engines": { - "node": ">= 0.10.0" + "node": "^12.20.0 || ^14.13.0 || >=15.0.0", + "npm": ">=7.0.0" + }, + "peerDependencies": { + "postcss": "^8.0.0" } }, - "node_modules/xtend": { - "version": "4.0.2", + "node_modules/postcss-loader": { + "version": "7.0.1", + "resolved": "https://npm.corp.kuaishou.com/postcss-loader/-/postcss-loader-7.0.1.tgz", + "integrity": "sha512-VRviFEyYlLjctSM93gAZtcJJ/iSkPZ79zWbN/1fSH+NisBByEiVLqpdVDrPLVSi8DX0oJo12kL/GppTBdKVXiQ==", "license": "MIT", + "dependencies": { + "cosmiconfig": "^7.0.0", + "klona": "^2.0.5", + "semver": "^7.3.7" + }, "engines": { - "node": ">=0.4" + "node": ">= 14.15.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "postcss": "^7.0.0 || ^8.0.1", + "webpack": "^5.0.0" } }, - "node_modules/y18n": { - "version": "3.2.2", - "license": "ISC" + "node_modules/postcss-modules-extract-imports": { + "version": "3.0.0", + "resolved": "https://npm.corp.kuaishou.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", + "integrity": "sha1-zaHwR8CugMl9vijD52pDuIAldB0=", + "license": "ISC", + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } }, - "node_modules/yallist": { + "node_modules/postcss-modules-local-by-default": { "version": "4.0.0", - "license": "ISC" + "resolved": "https://npm.corp.kuaishou.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz", + "integrity": "sha1-67tU+uFZjuz99pGgKz/zs5ClpRw=", + "license": "MIT", + "dependencies": { + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } }, - "node_modules/yaml": { - "version": "1.10.2", + "node_modules/postcss-modules-scope": { + "version": "3.0.0", + "resolved": "https://npm.corp.kuaishou.com/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz", + "integrity": "sha1-nvMVFFbTu/oSDKRImN/Kby+gHwY=", "license": "ISC", + "dependencies": { + "postcss-selector-parser": "^6.0.4" + }, "engines": { - "node": ">= 6" + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" } }, - "node_modules/yargs": { - "version": "3.32.0", - "license": "MIT", + "node_modules/postcss-modules-values": { + "version": "4.0.0", + "resolved": "https://npm.corp.kuaishou.com/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", + "license": "ISC", "dependencies": { - "camelcase": "^2.0.1", - "cliui": "^3.0.3", - "decamelize": "^1.1.1", - "os-locale": "^1.4.0", - "string-width": "^1.0.1", - "window-size": "^0.1.4", - "y18n": "^3.2.0" + "icss-utils": "^5.0.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" } - } - }, - "dependencies": { - "@ampproject/remapping": { - "version": "2.2.0", - "requires": { - "@jridgewell/gen-mapping": "^0.1.0", - "@jridgewell/trace-mapping": "^0.3.9" + }, + "node_modules/postcss-selector-parser": { + "version": "6.0.10", + "resolved": "https://npm.corp.kuaishou.com/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz", + "integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==", + "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://npm.corp.kuaishou.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "license": "MIT" + }, + "node_modules/pretty-error": { + "version": "4.0.0", + "resolved": "https://npm.corp.kuaishou.com/pretty-error/-/pretty-error-4.0.0.tgz", + "integrity": "sha1-kKcD9G3XI0rbRtD4SCPp0cuPENY=", + "license": "MIT", "dependencies": { - "@jridgewell/gen-mapping": { - "version": "0.1.1", - "requires": { - "@jridgewell/set-array": "^1.0.0", - "@jridgewell/sourcemap-codec": "^1.4.10" - } - } + "lodash": "^4.17.20", + "renderkid": "^3.0.0" } }, - "@babel/code-frame": { - "version": "7.18.6", - "requires": { - "@babel/highlight": "^7.18.6" + "node_modules/prismjs": { + "version": "1.29.0", + "resolved": "https://npm.corp.kuaishou.com/prismjs/-/prismjs-1.29.0.tgz", + "integrity": "sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==", + "license": "MIT", + "engines": { + "node": ">=6" } }, - "@babel/compat-data": { - "version": "7.20.1" + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://npm.corp.kuaishou.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "license": "MIT" }, - "@babel/core": { - "version": "7.20.2", - "requires": { - "@ampproject/remapping": "^2.1.0", - "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.20.2", - "@babel/helper-compilation-targets": "^7.20.0", - "@babel/helper-module-transforms": "^7.20.2", - "@babel/helpers": "^7.20.1", - "@babel/parser": "^7.20.2", - "@babel/template": "^7.18.10", - "@babel/traverse": "^7.20.1", - "@babel/types": "^7.20.2", - "convert-source-map": "^1.7.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.2.1", - "semver": "^6.3.0" + "node_modules/promise-timeout": { + "version": "1.3.0", + "resolved": "https://npm.corp.kuaishou.com/promise-timeout/-/promise-timeout-1.3.0.tgz", + "integrity": "sha1-0ceN1QpgfV8KUgdBAlKjoJFOEBQ=", + "license": "MIT" + }, + "node_modules/protobufjs": { + "version": "5.0.3", + "resolved": "https://npm.corp.kuaishou.com/protobufjs/-/protobufjs-5.0.3.tgz", + "integrity": "sha1-5N/p+2fJCyYw0VhoJJvMSWFGehc=", + "license": "Apache-2.0", + "dependencies": { + "ascli": "~1", + "bytebuffer": "~5", + "glob": "^7.0.5", + "yargs": "^3.10.0" + }, + "bin": { + "pbjs": "bin/pbjs" }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://npm.corp.kuaishou.com/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "license": "MIT", "dependencies": { - "debug": { - "version": "4.3.4", - "requires": { - "ms": "2.1.2" - } - }, - "ms": { - "version": "2.1.2" - }, - "semver": { - "version": "6.3.0" - } + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" } }, - "@babel/generator": { - "version": "7.20.3", - "requires": { - "@babel/types": "^7.20.2", - "@jridgewell/gen-mapping": "^0.3.2", - "jsesc": "^2.5.1" + "node_modules/proxy-addr/node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://npm.corp.kuaishou.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha1-v/OFQ+64mEglB5/zoqjmy9RngbM=", + "license": "MIT", + "engines": { + "node": ">= 0.10" } }, - "@babel/helper-compilation-targets": { - "version": "7.20.0", - "requires": { - "@babel/compat-data": "^7.20.0", - "@babel/helper-validator-option": "^7.18.6", - "browserslist": "^4.21.3", - "semver": "^6.3.0" - }, + "node_modules/punycode": { + "version": "2.1.1", + "resolved": "https://npm.corp.kuaishou.com/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/qs": { + "version": "6.11.0", + "resolved": "https://npm.corp.kuaishou.com/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "license": "BSD-3-Clause", "dependencies": { - "semver": { - "version": "6.3.0" - } + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "@babel/helper-environment-visitor": { - "version": "7.18.9" + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://npm.corp.kuaishou.com/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" }, - "@babel/helper-function-name": { - "version": "7.19.0", - "requires": { - "@babel/template": "^7.18.10", - "@babel/types": "^7.19.0" + "node_modules/quick-lru": { + "version": "5.1.1", + "resolved": "https://npm.corp.kuaishou.com/quick-lru/-/quick-lru-5.1.1.tgz", + "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "@babel/helper-hoist-variables": { - "version": "7.18.6", - "requires": { - "@babel/types": "^7.18.6" + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://npm.corp.kuaishou.com/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha1-32+ENy8CcNxlzfYpE0mrekc9Tyo=", + "license": "MIT", + "dependencies": { + "safe-buffer": "^5.1.0" } }, - "@babel/helper-module-imports": { - "version": "7.18.6", - "requires": { - "@babel/types": "^7.18.6" + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://npm.corp.kuaishou.com/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" } }, - "@babel/helper-module-transforms": { - "version": "7.20.2", - "requires": { - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-simple-access": "^7.20.2", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/helper-validator-identifier": "^7.19.1", - "@babel/template": "^7.18.10", - "@babel/traverse": "^7.20.1", - "@babel/types": "^7.20.2" + "node_modules/raw-body": { + "version": "2.5.1", + "resolved": "https://npm.corp.kuaishou.com/raw-body/-/raw-body-2.5.1.tgz", + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", + "license": "MIT", + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" } }, - "@babel/helper-plugin-utils": { - "version": "7.20.2" + "node_modules/read-cache": { + "version": "1.0.0", + "resolved": "https://npm.corp.kuaishou.com/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha1-5mTvMRYRZsl1HNvo28+GtftY93Q=", + "license": "MIT", + "dependencies": { + "pify": "^2.3.0" + } }, - "@babel/helper-simple-access": { - "version": "7.20.2", - "requires": { - "@babel/types": "^7.20.2" + "node_modules/readable-stream": { + "version": "3.6.0", + "resolved": "https://npm.corp.kuaishou.com/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" } }, - "@babel/helper-split-export-declaration": { - "version": "7.18.6", - "requires": { - "@babel/types": "^7.18.6" + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://npm.corp.kuaishou.com/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha1-dKNwvYVxFuJFspzJc0DNQxoCpsc=", + "license": "MIT", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" } }, - "@babel/helper-string-parser": { - "version": "7.19.4" + "node_modules/regenerator-runtime": { + "version": "0.13.10", + "resolved": "https://npm.corp.kuaishou.com/regenerator-runtime/-/regenerator-runtime-0.13.10.tgz", + "integrity": "sha512-KepLsg4dU12hryUO7bp/axHAKvwGOCV0sGloQtpagJ12ai+ojVDqkeGSiRX1zlq+kjIMZ1t7gpze+26QqtdGqw==", + "license": "MIT" }, - "@babel/helper-validator-identifier": { - "version": "7.19.1" + "node_modules/relateurl": { + "version": "0.2.7", + "resolved": "https://npm.corp.kuaishou.com/relateurl/-/relateurl-0.2.7.tgz", + "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==", + "license": "MIT", + "engines": { + "node": ">= 0.10" + } }, - "@babel/helper-validator-option": { - "version": "7.18.6" + "node_modules/renderkid": { + "version": "3.0.0", + "resolved": "https://npm.corp.kuaishou.com/renderkid/-/renderkid-3.0.0.tgz", + "integrity": "sha1-X9gj5NaVHTc1jsyaWLHwaDa2Joo=", + "license": "MIT", + "dependencies": { + "css-select": "^4.1.3", + "dom-converter": "^0.2.0", + "htmlparser2": "^6.1.0", + "lodash": "^4.17.21", + "strip-ansi": "^6.0.1" + } }, - "@babel/helpers": { - "version": "7.20.1", - "requires": { - "@babel/template": "^7.18.10", - "@babel/traverse": "^7.20.1", - "@babel/types": "^7.20.0" + "node_modules/renderkid/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://npm.corp.kuaishou.com/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha1-CCyyyJyf6GWaMRpTvWpNxTAdswQ=", + "license": "MIT", + "engines": { + "node": ">=8" } }, - "@babel/highlight": { - "version": "7.18.6", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - }, + "node_modules/renderkid/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://npm.corp.kuaishou.com/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha1-nibGPTD1NEPpSJSVshBdN7Z6hdk=", + "license": "MIT", "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.2", - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "color-convert": { - "version": "1.9.3", - "requires": { - "color-name": "1.1.3" - } - }, - "color-name": { - "version": "1.1.3" - }, - "has-flag": { - "version": "3.0.0" - }, - "supports-color": { - "version": "5.5.0", - "requires": { - "has-flag": "^3.0.0" - } - } + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" } }, - "@babel/parser": { - "version": "7.20.3" - }, - "@babel/plugin-syntax-jsx": { - "version": "7.18.6", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://npm.corp.kuaishou.com/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" } }, - "@babel/runtime": { - "version": "7.20.1", - "requires": { - "regenerator-runtime": "^0.13.10" + "node_modules/requires-port": { + "version": "1.0.0", + "resolved": "https://npm.corp.kuaishou.com/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=", + "license": "MIT" + }, + "node_modules/resolve": { + "version": "1.22.1", + "resolved": "https://npm.corp.kuaishou.com/resolve/-/resolve-1.22.1.tgz", + "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", + "license": "MIT", + "dependencies": { + "is-core-module": "^2.9.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "@babel/template": { - "version": "7.18.10", - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.18.10", - "@babel/types": "^7.18.10" + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://npm.corp.kuaishou.com/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha1-SrzYUq0y3Xuqv+m0DgCjbbXzkuY=", + "license": "MIT", + "engines": { + "node": ">=4" } }, - "@babel/traverse": { - "version": "7.20.1", - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.20.1", - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-function-name": "^7.19.0", - "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.20.1", - "@babel/types": "^7.20.0", - "debug": "^4.1.0", - "globals": "^11.1.0" - }, + "node_modules/restore-cursor": { + "version": "4.0.0", + "resolved": "https://npm.corp.kuaishou.com/restore-cursor/-/restore-cursor-4.0.0.tgz", + "integrity": "sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==", + "license": "MIT", "dependencies": { - "debug": { - "version": "4.3.4", - "requires": { - "ms": "2.1.2" - } - }, - "ms": { - "version": "2.1.2" - } + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "@babel/types": { - "version": "7.20.2", - "requires": { - "@babel/helper-string-parser": "^7.19.4", - "@babel/helper-validator-identifier": "^7.19.1", - "to-fast-properties": "^2.0.0" + "node_modules/retry": { + "version": "0.13.1", + "resolved": "https://npm.corp.kuaishou.com/retry/-/retry-0.13.1.tgz", + "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", + "license": "MIT", + "engines": { + "node": ">= 4" } }, - "@jridgewell/gen-mapping": { - "version": "0.3.2", - "requires": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://npm.corp.kuaishou.com/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha1-kNo4Kx4SbvwCFG6QhFqI2xKSXXY=", + "license": "MIT", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" } }, - "@jridgewell/resolve-uri": { - "version": "3.1.0" - }, - "@jridgewell/set-array": { - "version": "1.1.2" - }, - "@jridgewell/source-map": { - "version": "0.3.2", - "requires": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://npm.corp.kuaishou.com/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha1-8aVAK6YiCtUswSgrrBrjqkn9Bho=", + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "@jridgewell/sourcemap-codec": { - "version": "1.4.14" - }, - "@jridgewell/trace-mapping": { - "version": "0.3.17", - "requires": { - "@jridgewell/resolve-uri": "3.1.0", - "@jridgewell/sourcemap-codec": "1.4.14" + "node_modules/rollup": { + "version": "2.79.1", + "resolved": "https://npm.corp.kuaishou.com/rollup/-/rollup-2.79.1.tgz", + "integrity": "sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==", + "license": "MIT", + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=10.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" } }, - "@leancloud/adapter-types": { - "version": "5.0.0" - }, - "@leancloud/adapter-utils": { - "version": "1.2.2" - }, - "@leancloud/adapters-superagent": { - "version": "1.4.3", - "requires": { - "@leancloud/adapter-types": "^5.0.0", - "@leancloud/adapter-utils": "^1.2.2", - "@types/superagent": "^4.1.7", - "superagent": "^5.2.2" - }, - "dependencies": { - "debug": { - "version": "4.3.4", - "requires": { - "ms": "2.1.2" - } + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://npm.corp.kuaishou.com/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha1-ZtE2jae9+SHrnZW9GpIp5/IaQ+4=", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" }, - "form-data": { - "version": "3.0.1", - "requires": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - } + { + "type": "patreon", + "url": "https://www.patreon.com/feross" }, - "mime": { - "version": "2.6.0" + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://npm.corp.kuaishou.com/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha1-Hq+fqb2x/dTsdfWPnNtOa3gn7sY=", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" }, - "ms": { - "version": "2.1.2" + { + "type": "patreon", + "url": "https://www.patreon.com/feross" }, - "superagent": { - "version": "5.3.1", - "requires": { - "component-emitter": "^1.3.0", - "cookiejar": "^2.1.2", - "debug": "^4.1.1", - "fast-safe-stringify": "^2.0.7", - "form-data": "^3.0.0", - "formidable": "^1.2.2", - "methods": "^1.1.2", - "mime": "^2.4.6", - "qs": "^6.9.4", - "readable-stream": "^3.6.0", - "semver": "^7.3.2" - } + { + "type": "consulting", + "url": "https://feross.org/support" } - } + ], + "license": "MIT" }, - "@leancloud/platform-adapters-browser": { - "version": "1.5.3", - "requires": { - "@leancloud/adapter-types": "^5.0.0", - "@leancloud/adapters-superagent": "^1.4.3" - } + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://npm.corp.kuaishou.com/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "license": "MIT" }, - "@leancloud/platform-adapters-node": { - "version": "1.5.3", - "requires": { - "@leancloud/adapter-types": "^5.0.0", - "@leancloud/adapters-superagent": "^1.4.3", - "@types/ws": "^7.2.2", - "localstorage-memory": "^1.0.2", - "ws": "^5.2.2" - }, + "node_modules/sass": { + "version": "1.56.0", + "resolved": "https://npm.corp.kuaishou.com/sass/-/sass-1.56.0.tgz", + "integrity": "sha512-WFJ9XrpkcnqZcYuLRJh5qiV6ibQOR4AezleeEjTjMsCocYW59dEG19U3fwTTXxzi2Ed3yjPBp727hbbj53pHFw==", + "license": "MIT", "dependencies": { - "@types/ws": { - "version": "7.4.7", - "requires": { - "@types/node": "*" - } - }, - "ws": { - "version": "5.2.3", - "requires": { - "async-limiter": "~1.0.0" - } - } + "chokidar": ">=3.0.0 <4.0.0", + "immutable": "^4.0.0", + "source-map-js": ">=0.6.2 <2.0.0" + }, + "bin": { + "sass": "sass.js" + }, + "engines": { + "node": ">=12.0.0" } }, - "@leancloud/platform-adapters-weapp": { - "version": "1.6.2", - "requires": { - "@leancloud/adapter-types": "^5.0.0", - "@leancloud/adapter-utils": "^1.2.2", - "event-target-shim": "^5.0.1", - "miniprogram-api-typings": "^2.10.2" + "node_modules/schema-utils": { + "version": "4.0.0", + "resolved": "https://npm.corp.kuaishou.com/schema-utils/-/schema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, - "@leichtgewicht/ip-codec": { - "version": "2.0.4" - }, - "@mdit-vue/plugin-component": { - "version": "0.10.0", - "requires": { - "@types/markdown-it": "^12.2.3", - "markdown-it": "^13.0.1" + "node_modules/section-matter": { + "version": "1.0.0", + "resolved": "https://npm.corp.kuaishou.com/section-matter/-/section-matter-1.0.0.tgz", + "integrity": "sha1-6QQZU1BngOwB1Z8pKhnHuFC4QWc=", + "license": "MIT", + "dependencies": { + "extend-shallow": "^2.0.1", + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=4" } }, - "@mdit-vue/plugin-frontmatter": { - "version": "0.10.0", - "requires": { - "@mdit-vue/types": "0.10.0", - "@types/markdown-it": "^12.2.3", - "gray-matter": "^4.0.3", - "markdown-it": "^13.0.1" - } + "node_modules/select-hose": { + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/select-hose/-/select-hose-2.0.0.tgz", + "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==", + "license": "MIT" }, - "@mdit-vue/plugin-headers": { - "version": "0.10.0", - "requires": { - "@mdit-vue/shared": "0.10.0", - "@mdit-vue/types": "0.10.0", - "@types/markdown-it": "^12.2.3", - "markdown-it": "^13.0.1" + "node_modules/selfsigned": { + "version": "2.1.1", + "resolved": "https://npm.corp.kuaishou.com/selfsigned/-/selfsigned-2.1.1.tgz", + "integrity": "sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==", + "license": "MIT", + "dependencies": { + "node-forge": "^1" + }, + "engines": { + "node": ">=10" } }, - "@mdit-vue/plugin-sfc": { - "version": "0.10.0", - "requires": { - "@mdit-vue/types": "0.10.0", - "@types/markdown-it": "^12.2.3", - "markdown-it": "^13.0.1" + "node_modules/semver": { + "version": "7.3.8", + "resolved": "https://npm.corp.kuaishou.com/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" } }, - "@mdit-vue/plugin-title": { - "version": "0.10.0", - "requires": { - "@mdit-vue/shared": "0.10.0", - "@mdit-vue/types": "0.10.0", - "@types/markdown-it": "^12.2.3", - "markdown-it": "^13.0.1" + "node_modules/send": { + "version": "0.18.0", + "resolved": "https://npm.corp.kuaishou.com/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" } }, - "@mdit-vue/plugin-toc": { - "version": "0.10.0", - "requires": { - "@mdit-vue/shared": "0.10.0", - "@mdit-vue/types": "0.10.0", - "@types/markdown-it": "^12.2.3", - "markdown-it": "^13.0.1" + "node_modules/serialize-javascript": { + "version": "6.0.0", + "resolved": "https://npm.corp.kuaishou.com/serialize-javascript/-/serialize-javascript-6.0.0.tgz", + "integrity": "sha1-765diPRdeSQUHai1w6en5mP+/rg=", + "license": "BSD-3-Clause", + "dependencies": { + "randombytes": "^2.1.0" } }, - "@mdit-vue/shared": { - "version": "0.10.0", - "requires": { - "@mdit-vue/types": "0.10.0", - "@types/markdown-it": "^12.2.3", - "markdown-it": "^13.0.1" + "node_modules/serve-index": { + "version": "1.9.1", + "resolved": "https://npm.corp.kuaishou.com/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=", + "license": "MIT", + "dependencies": { + "accepts": "~1.3.4", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.6.2", + "mime-types": "~2.1.17", + "parseurl": "~1.3.2" + }, + "engines": { + "node": ">= 0.8.0" } }, - "@mdit-vue/types": { - "version": "0.10.0" + "node_modules/serve-index/node_modules/depd": { + "version": "1.1.2", + "resolved": "https://npm.corp.kuaishou.com/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } }, - "@nodelib/fs.scandir": { - "version": "2.1.5", - "requires": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" + "node_modules/serve-index/node_modules/http-errors": { + "version": "1.6.3", + "resolved": "https://npm.corp.kuaishou.com/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", + "license": "MIT", + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + }, + "engines": { + "node": ">= 0.6" } }, - "@nodelib/fs.stat": { - "version": "2.0.5" + "node_modules/serve-index/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://npm.corp.kuaishou.com/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "license": "ISC" }, - "@nodelib/fs.walk": { - "version": "1.2.8", - "requires": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" + "node_modules/serve-index/node_modules/setprototypeof": { + "version": "1.1.0", + "resolved": "https://npm.corp.kuaishou.com/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", + "license": "ISC" + }, + "node_modules/serve-index/node_modules/statuses": { + "version": "1.5.0", + "resolved": "https://npm.corp.kuaishou.com/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=", + "license": "MIT", + "engines": { + "node": ">= 0.6" } }, - "@types/body-parser": { - "version": "1.19.2", - "requires": { - "@types/connect": "*", - "@types/node": "*" + "node_modules/serve-static": { + "version": "1.15.0", + "resolved": "https://npm.corp.kuaishou.com/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "license": "MIT", + "dependencies": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + }, + "engines": { + "node": ">= 0.8.0" } }, - "@types/bonjour": { - "version": "3.5.10", - "requires": { - "@types/node": "*" + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://npm.corp.kuaishou.com/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "license": "ISC" + }, + "node_modules/shallow-clone": { + "version": "3.0.1", + "resolved": "https://npm.corp.kuaishou.com/shallow-clone/-/shallow-clone-3.0.1.tgz", + "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", + "license": "MIT", + "dependencies": { + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=8" } }, - "@types/connect": { - "version": "3.4.35", - "requires": { - "@types/node": "*" + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha1-zNCvT4g1+9wmW4JGGq8MNmY/NOo=", + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" } }, - "@types/connect-history-api-fallback": { - "version": "1.3.5", - "requires": { - "@types/express-serve-static-core": "*", - "@types/node": "*" + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://npm.corp.kuaishou.com/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha1-rhbxZE2HPsrYQ7AwexQzYtTEIXI=", + "license": "MIT", + "engines": { + "node": ">=8" } }, - "@types/cookiejar": { - "version": "2.1.2" + "node_modules/shiki": { + "version": "0.9.15", + "resolved": "https://npm.corp.kuaishou.com/shiki/-/shiki-0.9.15.tgz", + "integrity": "sha512-/Y0z9IzhJ8nD9nbceORCqu6NgT9X6I8Fk8c3SICHI5NbZRLdZYFaB233gwct9sU0vvSypyaL/qaKvzyQGJBZSw==", + "license": "MIT", + "dependencies": { + "jsonc-parser": "^3.0.0", + "vscode-oniguruma": "^1.6.1", + "vscode-textmate": "5.2.0" + } }, - "@types/debug": { - "version": "4.1.7", - "requires": { - "@types/ms": "*" + "node_modules/side-channel": { + "version": "1.0.4", + "resolved": "https://npm.corp.kuaishou.com/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "@types/eslint": { - "version": "8.4.10", - "requires": { - "@types/estree": "*", - "@types/json-schema": "*" - } + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://npm.corp.kuaishou.com/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "license": "ISC" }, - "@types/eslint-scope": { - "version": "3.7.4", - "requires": { - "@types/eslint": "*", - "@types/estree": "*" + "node_modules/slash": { + "version": "4.0.0", + "resolved": "https://npm.corp.kuaishou.com/slash/-/slash-4.0.0.tgz", + "integrity": "sha1-JCI3IXbExsWt214q2oha+YSzlqc=", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "@types/estree": { - "version": "1.0.0" - }, - "@types/express": { - "version": "4.17.14", - "requires": { - "@types/body-parser": "*", - "@types/express-serve-static-core": "^4.17.18", - "@types/qs": "*", - "@types/serve-static": "*" + "node_modules/slash2": { + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/slash2/-/slash2-2.0.0.tgz", + "integrity": "sha1-9OChFwi4VFuRJpWYHPcJb1LGNIc=", + "license": "MIT", + "engines": { + "node": ">=6" } }, - "@types/express-serve-static-core": { - "version": "4.17.31", - "requires": { - "@types/node": "*", - "@types/qs": "*", - "@types/range-parser": "*" + "node_modules/sockjs": { + "version": "0.3.24", + "resolved": "https://npm.corp.kuaishou.com/sockjs/-/sockjs-0.3.24.tgz", + "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", + "license": "MIT", + "dependencies": { + "faye-websocket": "^0.11.3", + "uuid": "^8.3.2", + "websocket-driver": "^0.7.4" } }, - "@types/fs-extra": { - "version": "9.0.13", - "requires": { - "@types/node": "*" + "node_modules/sockjs/node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://npm.corp.kuaishou.com/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "license": "MIT", + "bin": { + "uuid": "dist/bin/uuid" } }, - "@types/hash-sum": { - "version": "1.0.0" + "node_modules/source-list-map": { + "version": "2.0.1", + "resolved": "https://npm.corp.kuaishou.com/source-list-map/-/source-list-map-2.0.1.tgz", + "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==", + "license": "MIT" }, - "@types/html-minifier-terser": { - "version": "6.1.0" + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://npm.corp.kuaishou.com/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } }, - "@types/http-proxy": { - "version": "1.17.9", - "requires": { - "@types/node": "*" + "node_modules/source-map-js": { + "version": "1.0.2", + "resolved": "https://npm.corp.kuaishou.com/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" } }, - "@types/json-schema": { - "version": "7.0.11" + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://npm.corp.kuaishou.com/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha1-BP58f54e0tZiIzwoyys1ufY/bk8=", + "license": "MIT", + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } }, - "@types/linkify-it": { - "version": "3.0.2" + "node_modules/sourcemap-codec": { + "version": "1.4.8", + "resolved": "https://npm.corp.kuaishou.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", + "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==", + "license": "MIT" }, - "@types/markdown-it": { - "version": "12.2.3", - "requires": { - "@types/linkify-it": "*", - "@types/mdurl": "*" + "node_modules/spdy": { + "version": "4.0.2", + "resolved": "https://npm.corp.kuaishou.com/spdy/-/spdy-4.0.2.tgz", + "integrity": "sha1-t09GYgOj7aRSwCSSuR+56EonZ3s=", + "license": "MIT", + "dependencies": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" + }, + "engines": { + "node": ">=6.0.0" } }, - "@types/markdown-it-emoji": { - "version": "2.0.2", - "requires": { - "@types/markdown-it": "*" + "node_modules/spdy-transport": { + "version": "3.0.0", + "resolved": "https://npm.corp.kuaishou.com/spdy-transport/-/spdy-transport-3.0.0.tgz", + "integrity": "sha1-ANSGOmQArXXfkzYaFghgXl3NzzE=", + "license": "MIT", + "dependencies": { + "debug": "^4.1.0", + "detect-node": "^2.0.4", + "hpack.js": "^2.1.6", + "obuf": "^1.1.2", + "readable-stream": "^3.0.6", + "wbuf": "^1.7.3" } }, - "@types/mdurl": { - "version": "1.0.2" - }, - "@types/mime": { - "version": "3.0.1" + "node_modules/spdy-transport/node_modules/debug": { + "version": "4.3.4", + "resolved": "https://npm.corp.kuaishou.com/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "license": "MIT", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } }, - "@types/ms": { - "version": "0.7.31" + "node_modules/spdy-transport/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://npm.corp.kuaishou.com/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "license": "MIT" }, - "@types/node": { - "version": "18.11.9" + "node_modules/spdy/node_modules/debug": { + "version": "4.3.4", + "resolved": "https://npm.corp.kuaishou.com/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "license": "MIT", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } }, - "@types/parse-json": { - "version": "4.0.0" + "node_modules/spdy/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://npm.corp.kuaishou.com/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "license": "MIT" }, - "@types/qs": { - "version": "6.9.7" + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://npm.corp.kuaishou.com/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "license": "BSD-3-Clause" }, - "@types/range-parser": { - "version": "1.2.4" + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://npm.corp.kuaishou.com/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha1-VcsADM8dSHKL0jxoWgY5mM8aG2M=", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } }, - "@types/retry": { - "version": "0.12.0" + "node_modules/storejs": { + "version": "1.1.0", + "resolved": "https://npm.corp.kuaishou.com/storejs/-/storejs-1.1.0.tgz", + "integrity": "sha1-9jvkPHR8FL46excBg5KTgJHWRnk=", + "license": "MIT" }, - "@types/serve-index": { - "version": "1.9.1", - "requires": { - "@types/express": "*" + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://npm.corp.kuaishou.com/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha1-QvEUWUpGzxqOMLCoT1bHjD7awh4=", + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.2.0" } }, - "@types/serve-static": { - "version": "1.15.0", - "requires": { - "@types/mime": "*", - "@types/node": "*" + "node_modules/string-width": { + "version": "1.0.2", + "resolved": "https://npm.corp.kuaishou.com/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==", + "license": "MIT", + "dependencies": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "@types/sockjs": { - "version": "0.3.33", - "requires": { - "@types/node": "*" + "node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://npm.corp.kuaishou.com/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "license": "MIT", + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "@types/superagent": { - "version": "4.1.14", - "requires": { - "@types/cookiejar": "*", - "@types/node": "*" + "node_modules/strip-bom-string": { + "version": "1.0.0", + "resolved": "https://npm.corp.kuaishou.com/strip-bom-string/-/strip-bom-string-1.0.0.tgz", + "integrity": "sha1-5SEekiQ2n7uB1jOi8ABE3IztrZI=", + "license": "MIT", + "engines": { + "node": ">=0.10.0" } }, - "@types/web-bluetooth": { - "version": "0.0.16" - }, - "@types/webpack-env": { - "version": "1.18.0" - }, - "@types/ws": { - "version": "8.5.3", - "requires": { - "@types/node": "*" + "node_modules/strip-final-newline": { + "version": "3.0.0", + "resolved": "https://npm.corp.kuaishou.com/strip-final-newline/-/strip-final-newline-3.0.0.tgz", + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "@vicons/fa": { - "version": "0.12.0" - }, - "@vicons/tabler": { - "version": "0.12.0" - }, - "@vitejs/plugin-vue": { - "version": "3.2.0", - "requires": {} - }, - "@vue/compiler-core": { - "version": "3.2.41", - "requires": { - "@babel/parser": "^7.16.4", - "@vue/shared": "3.2.41", - "estree-walker": "^2.0.2", - "source-map": "^0.6.1" + "node_modules/style-loader": { + "version": "3.3.1", + "resolved": "https://npm.corp.kuaishou.com/style-loader/-/style-loader-3.3.1.tgz", + "integrity": "sha1-BX36az1NfHBkRigw+RE+1BfThXU=", + "license": "MIT", + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" } }, - "@vue/compiler-dom": { - "version": "3.2.41", - "requires": { - "@vue/compiler-core": "3.2.41", - "@vue/shared": "3.2.41" + "node_modules/superagent": { + "version": "3.8.3", + "resolved": "https://npm.corp.kuaishou.com/superagent/-/superagent-3.8.3.tgz", + "integrity": "sha512-GLQtLMCoEIK4eDv6OGtkOoSMt3D+oq0y3dsxMuYuDvaNUvuT8eFBuLmfR0iYYzHC1e8hpzC6ZsxbuP6DIalMFA==", + "license": "MIT", + "dependencies": { + "component-emitter": "^1.2.0", + "cookiejar": "^2.1.0", + "debug": "^3.1.0", + "extend": "^3.0.0", + "form-data": "^2.3.1", + "formidable": "^1.2.0", + "methods": "^1.1.1", + "mime": "^1.4.1", + "qs": "^6.5.1", + "readable-stream": "^2.3.5" + }, + "engines": { + "node": ">= 4.0" } }, - "@vue/compiler-sfc": { - "version": "3.2.41", - "requires": { - "@babel/parser": "^7.16.4", - "@vue/compiler-core": "3.2.41", - "@vue/compiler-dom": "3.2.41", - "@vue/compiler-ssr": "3.2.41", - "@vue/reactivity-transform": "3.2.41", - "@vue/shared": "3.2.41", - "estree-walker": "^2.0.2", - "magic-string": "^0.25.7", - "postcss": "^8.1.10", - "source-map": "^0.6.1" + "node_modules/superagent/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://npm.corp.kuaishou.com/debug/-/debug-3.2.7.tgz", + "integrity": "sha1-clgLfpFF+zm2Z2+cXl+xALk0F5o=", + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" } }, - "@vue/compiler-ssr": { - "version": "3.2.41", - "requires": { - "@vue/compiler-dom": "3.2.41", - "@vue/shared": "3.2.41" + "node_modules/superagent/node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://npm.corp.kuaishou.com/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "license": "MIT", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" } }, - "@vue/devtools-api": { - "version": "6.4.5" + "node_modules/superagent/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://npm.corp.kuaishou.com/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha1-mR7GnSluAxN0fVm9/St0XDX4go0=", + "license": "MIT" }, - "@vue/reactivity": { - "version": "3.2.41", - "requires": { - "@vue/shared": "3.2.41" + "node_modules/superagent/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://npm.corp.kuaishou.com/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha1-nPFhG6YmhdcDCunkujQUnDrwP8g=", + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.1.0" } }, - "@vue/reactivity-transform": { - "version": "3.2.41", - "requires": { - "@babel/parser": "^7.16.4", - "@vue/compiler-core": "3.2.41", - "@vue/shared": "3.2.41", - "estree-walker": "^2.0.2", - "magic-string": "^0.25.7" + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://npm.corp.kuaishou.com/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "@vue/runtime-core": { - "version": "3.2.41", - "requires": { - "@vue/reactivity": "3.2.41", - "@vue/shared": "3.2.41" + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://npm.corp.kuaishou.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "@vue/runtime-dom": { - "version": "3.2.41", - "requires": { - "@vue/runtime-core": "3.2.41", - "@vue/shared": "3.2.41", - "csstype": "^2.6.8" + "node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://npm.corp.kuaishou.com/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha1-GWenPvQGCoLxKrlq+G1S/bdu7KA=", + "license": "MIT", + "engines": { + "node": ">=6" } }, - "@vue/server-renderer": { - "version": "3.2.41", - "requires": { - "@vue/compiler-ssr": "3.2.41", - "@vue/shared": "3.2.41" + "node_modules/terser": { + "version": "5.15.1", + "resolved": "https://npm.corp.kuaishou.com/terser/-/terser-5.15.1.tgz", + "integrity": "sha512-K1faMUvpm/FBxjBXud0LWVAGxmvoPbZbfTCYbSgaaYQaIXI3/TdI7a7ZGA73Zrou6Q8Zmz3oeUTsp/dj+ag2Xw==", + "license": "BSD-2-Clause", + "dependencies": { + "@jridgewell/source-map": "^0.3.2", + "acorn": "^8.5.0", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" } }, - "@vue/shared": { - "version": "3.2.41" - }, - "@vuepress-reco/shared": { - "version": "2.0.0-beta.41", - "requires": { - "@vuepress-reco/vuepress-plugin-page": "2.0.0-beta.41", - "@vuepress/core": "2.0.0-beta.51", - "vue": "^3.2.38" + "node_modules/terser-webpack-plugin": { + "version": "5.3.6", + "resolved": "https://npm.corp.kuaishou.com/terser-webpack-plugin/-/terser-webpack-plugin-5.3.6.tgz", + "integrity": "sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ==", + "license": "MIT", + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.14", + "jest-worker": "^27.4.5", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.0", + "terser": "^5.14.1" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "esbuild": { + "optional": true + }, + "uglify-js": { + "optional": true + } } }, - "@vuepress-reco/tailwindcss-config": { - "version": "2.0.0-beta.41" + "node_modules/terser-webpack-plugin/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://npm.corp.kuaishou.com/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } }, - "@vuepress-reco/vuepress-plugin-bulletin-popover": { - "version": "2.0.0-beta.41", - "requires": { - "@vuepress-reco/tailwindcss-config": "2.0.0-beta.41", - "@vuepress/client": "2.0.0-beta.51", - "@vuepress/core": "2.0.0-beta.51", - "@vuepress/plugin-theme-data": "2.0.0-beta.51", - "@vuepress/utils": "2.0.0-beta.51", - "vue": "^3.2.38" + "node_modules/terser-webpack-plugin/node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://npm.corp.kuaishou.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "license": "MIT", + "peerDependencies": { + "ajv": "^6.9.1" } }, - "@vuepress-reco/vuepress-plugin-code-copy": { - "version": "2.0.0-beta.41", - "requires": { - "@vuepress/client": "2.0.0-beta.51", - "@vuepress/core": "2.0.0-beta.51", - "@vuepress/utils": "2.0.0-beta.51", - "vue-router": "^4.1.5" + "node_modules/terser-webpack-plugin/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://npm.corp.kuaishou.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "license": "MIT" + }, + "node_modules/terser-webpack-plugin/node_modules/schema-utils": { + "version": "3.1.1", + "resolved": "https://npm.corp.kuaishou.com/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, - "@vuepress-reco/vuepress-plugin-comments": { - "version": "2.0.0-beta.41", - "requires": { - "@vuepress-reco/tailwindcss-config": "2.0.0-beta.41", - "@vuepress/client": "2.0.0-beta.51", - "@vuepress/core": "2.0.0-beta.51", - "@vuepress/plugin-theme-data": "2.0.0-beta.51", - "@vuepress/utils": "2.0.0-beta.51", - "@waline/client": "^2.6.1", - "valine": "1.4.18", - "vue": "^3.2.38", - "vue-router": "^4.1.5" + "node_modules/theme-vitesse": { + "version": "0.4.10", + "resolved": "https://npm.corp.kuaishou.com/theme-vitesse/-/theme-vitesse-0.4.10.tgz", + "integrity": "sha512-/iUB1ibBBZaJvwD4lgFoRFeY1WWQHEfZs9TLHwKfyXXc00RY7IqBcwPYJeZgkZIKQJ9AedTGCLYG5jHUZRoRmg==", + "license": "MIT", + "engines": { + "vscode": "^1.43.0" } }, - "@vuepress-reco/vuepress-plugin-page": { - "version": "2.0.0-beta.41", - "requires": { - "@vuepress-reco/shared": "2.0.0-beta.41", - "@vuepress/client": "2.0.0-beta.51", - "@vuepress/core": "2.0.0-beta.51", - "@vuepress/utils": "2.0.0-beta.51", - "vue": "^3.2.38", - "vue-router": "^4.1.5" - } + "node_modules/thunky": { + "version": "1.1.0", + "resolved": "https://npm.corp.kuaishou.com/thunky/-/thunky-1.1.0.tgz", + "integrity": "sha1-Wrr3FKlAXbBQRzK7zNLO3Z75U30=", + "license": "MIT" }, - "@vuepress-reco/vuepress-plugin-vue-preview": { - "version": "2.0.0-beta.41", - "requires": { - "@babel/core": "^7.16.12", - "@babel/plugin-syntax-jsx": "^7.16.7", - "@babel/traverse": "^7.16.10", - "@babel/types": "^7.16.8", - "@vue/compiler-sfc": "^3.2.29", - "@vuepress/core": "2.0.0-beta.51", - "@vuepress/markdown": "2.0.0-beta.51", - "@vuepress/plugin-prismjs": "2.0.0-beta.51", - "@vuepress/utils": "2.0.0-beta.51", - "enhanced-resolve": "^5.8.3", - "slash2": "^2.0.0" + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", + "license": "MIT", + "engines": { + "node": ">=4" } }, - "@vuepress/bundler-vite": { - "version": "2.0.0-beta.51", - "requires": { - "@vitejs/plugin-vue": "^3.0.3", - "@vuepress/client": "2.0.0-beta.51", - "@vuepress/core": "2.0.0-beta.51", - "@vuepress/shared": "2.0.0-beta.51", - "@vuepress/utils": "2.0.0-beta.51", - "autoprefixer": "^10.4.8", - "connect-history-api-fallback": "^2.0.0", - "postcss": "^8.4.16", - "rollup": "^2.78.1", - "vite": "~3.0.9", - "vue": "^3.2.37", - "vue-router": "^4.1.4" + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://npm.corp.kuaishou.com/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha1-FkjESq58jZiKMmAY7XL1tN0DkuQ=", + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" } }, - "@vuepress/bundler-webpack": { - "version": "2.0.0-beta.51", - "requires": { - "@types/express": "^4.17.13", - "@types/webpack-env": "^1.18.0", - "@vuepress/client": "2.0.0-beta.51", - "@vuepress/core": "2.0.0-beta.51", - "@vuepress/shared": "2.0.0-beta.51", - "@vuepress/utils": "2.0.0-beta.51", - "autoprefixer": "^10.4.8", - "chokidar": "^3.5.3", - "copy-webpack-plugin": "^11.0.0", - "css-loader": "^6.7.1", - "esbuild-loader": "~2.19.0", - "express": "^4.18.1", - "html-webpack-plugin": "^5.5.0", - "mini-css-extract-plugin": "^2.6.1", - "postcss": "^8.4.16", - "postcss-csso": "^6.0.1", - "postcss-loader": "^7.0.1", - "style-loader": "^3.3.1", - "vue": "^3.2.37", - "vue-loader": "^17.0.0", - "vue-router": "^4.1.4", - "webpack": "^5.74.0", - "webpack-chain": "^6.5.1", - "webpack-dev-server": "^4.10.0", - "webpack-merge": "^5.8.0" + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://npm.corp.kuaishou.com/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha1-O+NDIaiKgg7RvYDfqjPkefu43TU=", + "license": "MIT", + "engines": { + "node": ">=0.6" } }, - "@vuepress/cli": { - "version": "2.0.0-beta.51", - "requires": { - "@vuepress/core": "2.0.0-beta.51", - "@vuepress/shared": "2.0.0-beta.51", - "@vuepress/utils": "2.0.0-beta.51", - "cac": "^6.7.12", - "chokidar": "^3.5.3", - "envinfo": "^7.8.1", - "esbuild": "^0.15.5" - }, - "dependencies": { - "esbuild": { - "version": "0.15.13", - "requires": { - "@esbuild/android-arm": "0.15.13", - "@esbuild/linux-loong64": "0.15.13", - "esbuild-android-64": "0.15.13", - "esbuild-android-arm64": "0.15.13", - "esbuild-darwin-64": "0.15.13", - "esbuild-darwin-arm64": "0.15.13", - "esbuild-freebsd-64": "0.15.13", - "esbuild-freebsd-arm64": "0.15.13", - "esbuild-linux-32": "0.15.13", - "esbuild-linux-64": "0.15.13", - "esbuild-linux-arm": "0.15.13", - "esbuild-linux-arm64": "0.15.13", - "esbuild-linux-mips64le": "0.15.13", - "esbuild-linux-ppc64le": "0.15.13", - "esbuild-linux-riscv64": "0.15.13", - "esbuild-linux-s390x": "0.15.13", - "esbuild-netbsd-64": "0.15.13", - "esbuild-openbsd-64": "0.15.13", - "esbuild-sunos-64": "0.15.13", - "esbuild-windows-32": "0.15.13", - "esbuild-windows-64": "0.15.13", - "esbuild-windows-arm64": "0.15.13" - } - }, - "esbuild-darwin-64": { - "version": "0.15.13", - "optional": true - } - } + "node_modules/toml": { + "version": "3.0.0", + "resolved": "https://npm.corp.kuaishou.com/toml/-/toml-3.0.0.tgz", + "integrity": "sha1-NCFg8a8ZBOydIE0DpdYSItdixe4=", + "license": "MIT" }, - "@vuepress/client": { - "version": "2.0.0-beta.51", - "requires": { - "@vue/devtools-api": "^6.2.1", - "@vuepress/shared": "2.0.0-beta.51", - "vue": "^3.2.37", - "vue-router": "^4.1.4" - } + "node_modules/ts-debounce": { + "version": "4.0.0", + "resolved": "https://npm.corp.kuaishou.com/ts-debounce/-/ts-debounce-4.0.0.tgz", + "integrity": "sha1-M0QO9k+rU3k8PVRqjKauU57BWEE=", + "license": "MIT" }, - "@vuepress/core": { - "version": "2.0.0-beta.51", - "requires": { - "@vuepress/client": "2.0.0-beta.51", - "@vuepress/markdown": "2.0.0-beta.51", - "@vuepress/shared": "2.0.0-beta.51", - "@vuepress/utils": "2.0.0-beta.51", - "vue": "^3.2.37" - } + "node_modules/tslib": { + "version": "2.4.1", + "resolved": "https://npm.corp.kuaishou.com/tslib/-/tslib-2.4.1.tgz", + "integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==", + "license": "0BSD" }, - "@vuepress/markdown": { - "version": "2.0.0-beta.51", - "requires": { - "@mdit-vue/plugin-component": "^0.10.0", - "@mdit-vue/plugin-frontmatter": "^0.10.0", - "@mdit-vue/plugin-headers": "^0.10.0", - "@mdit-vue/plugin-sfc": "^0.10.0", - "@mdit-vue/plugin-title": "^0.10.0", - "@mdit-vue/plugin-toc": "^0.10.0", - "@mdit-vue/shared": "^0.10.0", - "@mdit-vue/types": "^0.10.0", - "@types/markdown-it": "^12.2.3", - "@types/markdown-it-emoji": "^2.0.2", - "@vuepress/shared": "2.0.0-beta.51", - "@vuepress/utils": "2.0.0-beta.51", - "markdown-it": "^13.0.1", - "markdown-it-anchor": "^8.6.4", - "markdown-it-emoji": "^2.0.2", - "mdurl": "^1.0.1" + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://npm.corp.kuaishou.com/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha1-TlUs0F3wlGfcvE73Od6J8s83wTE=", + "license": "MIT", + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" } }, - "@vuepress/plugin-active-header-links": { - "version": "2.0.0-beta.51", - "requires": { - "@vuepress/client": "2.0.0-beta.51", - "@vuepress/core": "2.0.0-beta.51", - "@vuepress/utils": "2.0.0-beta.51", - "ts-debounce": "^4.0.0", - "vue": "^3.2.37", - "vue-router": "^4.1.4" - } + "node_modules/uc.micro": { + "version": "1.0.6", + "resolved": "https://npm.corp.kuaishou.com/uc.micro/-/uc.micro-1.0.6.tgz", + "integrity": "sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==", + "license": "MIT" }, - "@vuepress/plugin-back-to-top": { - "version": "2.0.0-beta.51", - "requires": { - "@vuepress/client": "2.0.0-beta.51", - "@vuepress/core": "2.0.0-beta.51", - "@vuepress/utils": "2.0.0-beta.51", - "ts-debounce": "^4.0.0", - "vue": "^3.2.37" - } + "node_modules/underscore": { + "version": "1.13.6", + "resolved": "https://npm.corp.kuaishou.com/underscore/-/underscore-1.13.6.tgz", + "integrity": "sha512-+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A==", + "license": "MIT" }, - "@vuepress/plugin-container": { - "version": "2.0.0-beta.51", - "requires": { - "@types/markdown-it": "^12.2.3", - "@vuepress/core": "2.0.0-beta.51", - "@vuepress/markdown": "2.0.0-beta.51", - "@vuepress/shared": "2.0.0-beta.51", - "@vuepress/utils": "2.0.0-beta.51", - "markdown-it": "^13.0.1", - "markdown-it-container": "^3.0.0" + "node_modules/universalify": { + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha1-daSYTv7cSwiXXFrrc/Uw0C3yVxc=", + "license": "MIT", + "engines": { + "node": ">= 10.0.0" } }, - "@vuepress/plugin-external-link-icon": { - "version": "2.0.0-beta.51", - "requires": { - "@vuepress/client": "2.0.0-beta.51", - "@vuepress/core": "2.0.0-beta.51", - "@vuepress/markdown": "2.0.0-beta.51", - "@vuepress/shared": "2.0.0-beta.51", - "@vuepress/utils": "2.0.0-beta.51", - "vue": "^3.2.37" + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://npm.corp.kuaishou.com/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" } }, - "@vuepress/plugin-git": { - "version": "2.0.0-beta.51", - "requires": { - "@vuepress/core": "2.0.0-beta.51", - "@vuepress/utils": "2.0.0-beta.51", - "execa": "^6.1.0" + "node_modules/upath": { + "version": "2.0.1", + "resolved": "https://npm.corp.kuaishou.com/upath/-/upath-2.0.1.tgz", + "integrity": "sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==", + "license": "MIT", + "engines": { + "node": ">=4", + "yarn": "*" } }, - "@vuepress/plugin-medium-zoom": { - "version": "2.0.0-beta.51", - "requires": { - "@vuepress/client": "2.0.0-beta.51", - "@vuepress/core": "2.0.0-beta.51", - "@vuepress/utils": "2.0.0-beta.51", - "medium-zoom": "^1.0.6", - "vue": "^3.2.37" - } - }, - "@vuepress/plugin-nprogress": { - "version": "2.0.0-beta.51", - "requires": { - "@vuepress/client": "2.0.0-beta.51", - "@vuepress/core": "2.0.0-beta.51", - "@vuepress/utils": "2.0.0-beta.51", - "vue": "^3.2.37", - "vue-router": "^4.1.4" + "node_modules/update-browserslist-db": { + "version": "1.0.10", + "resolved": "https://npm.corp.kuaishou.com/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz", + "integrity": "sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + } + ], + "license": "MIT", + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "browserslist-lint": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" } }, - "@vuepress/plugin-palette": { - "version": "2.0.0-beta.51", - "requires": { - "@vuepress/core": "2.0.0-beta.51", - "@vuepress/utils": "2.0.0-beta.51", - "chokidar": "^3.5.3" + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://npm.corp.kuaishou.com/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "license": "BSD-2-Clause", + "dependencies": { + "punycode": "^2.1.0" } }, - "@vuepress/plugin-prismjs": { - "version": "2.0.0-beta.51", - "requires": { - "@vuepress/core": "2.0.0-beta.51", - "prismjs": "^1.28.0" - } + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://npm.corp.kuaishou.com/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "license": "MIT" }, - "@vuepress/plugin-register-components": { - "version": "2.0.0-beta.51", - "requires": { - "@vuepress/core": "2.0.0-beta.51", - "@vuepress/utils": "2.0.0-beta.51", - "chokidar": "^3.5.3" - } + "node_modules/utila": { + "version": "0.4.0", + "resolved": "https://npm.corp.kuaishou.com/utila/-/utila-0.4.0.tgz", + "integrity": "sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==", + "license": "MIT" }, - "@vuepress/plugin-search": { - "version": "2.0.0-beta.51", - "requires": { - "@vuepress/client": "2.0.0-beta.51", - "@vuepress/core": "2.0.0-beta.51", - "@vuepress/shared": "2.0.0-beta.51", - "@vuepress/utils": "2.0.0-beta.51", - "chokidar": "^3.5.3", - "vue": "^3.2.37", - "vue-router": "^4.1.4" + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://npm.corp.kuaishou.com/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "license": "MIT", + "engines": { + "node": ">= 0.4.0" } }, - "@vuepress/plugin-theme-data": { - "version": "2.0.0-beta.51", - "requires": { - "@vue/devtools-api": "^6.2.1", - "@vuepress/client": "2.0.0-beta.51", - "@vuepress/core": "2.0.0-beta.51", - "@vuepress/shared": "2.0.0-beta.51", - "@vuepress/utils": "2.0.0-beta.51", - "vue": "^3.2.37" + "node_modules/uuid": { + "version": "3.4.0", + "resolved": "https://npm.corp.kuaishou.com/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "license": "MIT", + "bin": { + "uuid": "bin/uuid" } }, - "@vuepress/shared": { - "version": "2.0.0-beta.51", - "requires": { - "@mdit-vue/types": "^0.10.0", - "@vue/shared": "^3.2.37" + "node_modules/valine": { + "version": "1.4.18", + "resolved": "https://npm.corp.kuaishou.com/valine/-/valine-1.4.18.tgz", + "integrity": "sha512-7Epks0rMn10qWAbBxmUGCUYPL+bJwasYuzU9QHpa6yNk5vAv6PTh1oPTVYX5AB7OzhVwUxj5HKs/jyUpXLwESQ==", + "license": "GPL-2.0", + "dependencies": { + "autosize": "^4.0.2", + "balajs": "^1.0.7", + "balalaika": "^1.0.1", + "blueimp-md5": "^2.8.0", + "element-closest": "^3.0.2", + "hanabi": "^0.4.0", + "insane": "^2.6.2", + "leancloud-storage": "^3.0.4", + "marked": "^4.0.8", + "storejs": "^1.0.25", + "xss": "^1.0.6" } }, - "@vuepress/theme-default": { - "version": "2.0.0-beta.51", - "requires": { - "@vuepress/client": "2.0.0-beta.51", - "@vuepress/core": "2.0.0-beta.51", - "@vuepress/plugin-active-header-links": "2.0.0-beta.51", - "@vuepress/plugin-back-to-top": "2.0.0-beta.51", - "@vuepress/plugin-container": "2.0.0-beta.51", - "@vuepress/plugin-external-link-icon": "2.0.0-beta.51", - "@vuepress/plugin-git": "2.0.0-beta.51", - "@vuepress/plugin-medium-zoom": "2.0.0-beta.51", - "@vuepress/plugin-nprogress": "2.0.0-beta.51", - "@vuepress/plugin-palette": "2.0.0-beta.51", - "@vuepress/plugin-prismjs": "2.0.0-beta.51", - "@vuepress/plugin-theme-data": "2.0.0-beta.51", - "@vuepress/shared": "2.0.0-beta.51", - "@vuepress/utils": "2.0.0-beta.51", - "@vueuse/core": "^9.1.0", - "sass": "^1.54.5", - "vue": "^3.2.37", - "vue-router": "^4.1.4" + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://npm.corp.kuaishou.com/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" } }, - "@vuepress/utils": { - "version": "2.0.0-beta.51", - "requires": { - "@types/debug": "^4.1.7", - "@types/fs-extra": "^9.0.13", - "@types/hash-sum": "^1.0.0", - "@vuepress/shared": "2.0.0-beta.51", - "chalk": "^5.0.1", - "debug": "^4.3.4", - "fs-extra": "^10.1.0", - "globby": "^13.1.2", - "hash-sum": "^2.0.0", - "ora": "^6.1.2", - "upath": "^2.0.1" - }, + "node_modules/vite": { + "version": "3.0.9", + "resolved": "https://npm.corp.kuaishou.com/vite/-/vite-3.0.9.tgz", + "integrity": "sha512-waYABTM+G6DBTCpYAxvevpG50UOlZuynR0ckTK5PawNVt7ebX6X7wNXHaGIO6wYYFXSM7/WcuFuO2QzhBB6aMw==", + "license": "MIT", "dependencies": { - "debug": { - "version": "4.3.4", - "requires": { - "ms": "2.1.2" - } + "esbuild": "^0.14.47", + "postcss": "^8.4.16", + "resolve": "^1.22.1", + "rollup": ">=2.75.6 <2.77.0 || ~2.77.0" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + }, + "peerDependencies": { + "less": "*", + "sass": "*", + "stylus": "*", + "terser": "^5.4.0" + }, + "peerDependenciesMeta": { + "less": { + "optional": true }, - "ms": { - "version": "2.1.2" + "sass": { + "optional": true + }, + "stylus": { + "optional": true + }, + "terser": { + "optional": true } } }, - "@vueuse/core": { - "version": "9.4.0", - "requires": { - "@types/web-bluetooth": "^0.0.16", - "@vueuse/metadata": "9.4.0", - "@vueuse/shared": "9.4.0", - "vue-demi": "*" + "node_modules/vite/node_modules/rollup": { + "version": "2.77.3", + "resolved": "https://npm.corp.kuaishou.com/rollup/-/rollup-2.77.3.tgz", + "integrity": "sha512-/qxNTG7FbmefJWoeeYJFbHehJ2HNWnjkAFRKzWN/45eNBBF/r8lo992CwcJXEzyVxs5FmfId+vTSTQDb+bxA+g==", + "license": "MIT", + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=10.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" } }, - "@vueuse/metadata": { - "version": "9.4.0" + "node_modules/vscode-oniguruma": { + "version": "1.6.2", + "resolved": "https://npm.corp.kuaishou.com/vscode-oniguruma/-/vscode-oniguruma-1.6.2.tgz", + "integrity": "sha512-KH8+KKov5eS/9WhofZR8M8dMHWN2gTxjMsG4jd04YhpbPR91fUj7rYQ2/XjeHCJWbg7X++ApRIU9NUwM2vTvLA==", + "license": "MIT" }, - "@vueuse/shared": { - "version": "9.4.0", - "requires": { - "vue-demi": "*" - } + "node_modules/vscode-textmate": { + "version": "5.2.0", + "resolved": "https://npm.corp.kuaishou.com/vscode-textmate/-/vscode-textmate-5.2.0.tgz", + "integrity": "sha1-AfAXYKOR6CIv5PM/vMvRrXGu104=", + "license": "MIT" }, - "@waline/client": { - "version": "2.13.0", - "requires": { - "@vueuse/core": "^9.3.0", - "autosize": "^5.0.1", - "marked": "^4.1.1", - "vue": "^3.2.40" - }, + "node_modules/vue": { + "version": "3.2.41", + "resolved": "https://npm.corp.kuaishou.com/vue/-/vue-3.2.41.tgz", + "integrity": "sha512-uuuvnrDXEeZ9VUPljgHkqB5IaVO8SxhPpqF2eWOukVrBnRBx2THPSGQBnVRt0GrIG1gvCmFXMGbd7FqcT1ixNQ==", + "license": "MIT", "dependencies": { - "autosize": { - "version": "5.0.1" - } - } - }, - "@webassemblyjs/ast": { - "version": "1.11.1", - "requires": { - "@webassemblyjs/helper-numbers": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1" + "@vue/compiler-dom": "3.2.41", + "@vue/compiler-sfc": "3.2.41", + "@vue/runtime-dom": "3.2.41", + "@vue/server-renderer": "3.2.41", + "@vue/shared": "3.2.41" } }, - "@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.1" - }, - "@webassemblyjs/helper-api-error": { - "version": "1.11.1" - }, - "@webassemblyjs/helper-buffer": { - "version": "1.11.1" - }, - "@webassemblyjs/helper-numbers": { - "version": "1.11.1", - "requires": { - "@webassemblyjs/floating-point-hex-parser": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", - "@xtuc/long": "4.2.2" + "node_modules/vue-demi": { + "version": "0.13.11", + "resolved": "https://npm.corp.kuaishou.com/vue-demi/-/vue-demi-0.13.11.tgz", + "integrity": "sha512-IR8HoEEGM65YY3ZJYAjMlKygDQn25D5ajNFNoKh9RSDMQtlzCxtfQjdQgv9jjK+m3377SsJXY8ysq8kLCZL25A==", + "hasInstallScript": true, + "license": "MIT", + "bin": { + "vue-demi-fix": "bin/vue-demi-fix.js", + "vue-demi-switch": "bin/vue-demi-switch.js" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + }, + "peerDependencies": { + "@vue/composition-api": "^1.0.0-rc.1", + "vue": "^3.0.0-0 || ^2.6.0" + }, + "peerDependenciesMeta": { + "@vue/composition-api": { + "optional": true + } } }, - "@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.1" - }, - "@webassemblyjs/helper-wasm-section": { - "version": "1.11.1", - "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1" + "node_modules/vue-loader": { + "version": "17.0.1", + "resolved": "https://npm.corp.kuaishou.com/vue-loader/-/vue-loader-17.0.1.tgz", + "integrity": "sha512-/OOyugJnImKCkAKrAvdsWMuwoCqGxWT5USLsjohzWbMgOwpA5wQmzQiLMzZd7DjhIfunzAGIApTOgIylz/kwcg==", + "license": "MIT", + "dependencies": { + "chalk": "^4.1.0", + "hash-sum": "^2.0.0", + "loader-utils": "^2.0.0" + }, + "peerDependencies": { + "webpack": "^4.1.0 || ^5.0.0-0" + }, + "peerDependenciesMeta": { + "@vue/compiler-sfc": { + "optional": true + }, + "vue": { + "optional": true + } } }, - "@webassemblyjs/ieee754": { - "version": "1.11.1", - "requires": { - "@xtuc/ieee754": "^1.2.0" + "node_modules/vue-loader/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://npm.corp.kuaishou.com/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "@webassemblyjs/leb128": { - "version": "1.11.1", - "requires": { - "@xtuc/long": "4.2.2" + "node_modules/vue-playground": { + "version": "0.1.10", + "resolved": "https://npm.corp.kuaishou.com/vue-playground/-/vue-playground-0.1.10.tgz", + "integrity": "sha512-baONjL5Mx3GJjAXNo83eV/LNW0uz1QJO3UVEmxCYP+unc8Fzp2XCHN08nhqrATtIIo8B0rMuvh24jM/xa9jO0g==", + "license": "MIT", + "dependencies": { + "@babel/standalone": "^7.17.11", + "@babel/types": "^7.17.10", + "@types/babel__core": "^7.1.19", + "@types/babel__standalone": "^7.1.4", + "@vue/reactivity": "^3.2.33", + "@vue/runtime-core": "^3.2.33", + "@vue/runtime-dom": "^3.2.33", + "@vue/shared": "^3.2.33", + "@vueuse/core": "^8.4.1", + "emmet-monaco-es": "^5.1.0", + "js-base64": "^3.7.2", + "theme-vitesse": "^0.4.9", + "vue-demi": "*" + }, + "funding": { + "url": "https://github.com/sponsors/2214962083" + }, + "peerDependencies": { + "@vue/compiler-sfc": ">=3.0.0", + "monaco-editor": ">=0.30.0", + "vue": ">=3.0.0" } }, - "@webassemblyjs/utf8": { - "version": "1.11.1" - }, - "@webassemblyjs/wasm-edit": { - "version": "1.11.1", - "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/helper-wasm-section": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-opt": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", - "@webassemblyjs/wast-printer": "1.11.1" - } + "node_modules/vue-playground/node_modules/@types/web-bluetooth": { + "version": "0.0.14", + "resolved": "https://npm.corp.kuaishou.com/@types%2fweb-bluetooth/-/web-bluetooth-0.0.14.tgz", + "integrity": "sha512-5d2RhCard1nQUC3aHcq/gHzWYO6K0WJmAbjO7mQJgCQKtZpgXxv1rOM6O/dBDhDYYVutk1sciOgNSe+5YyfM8A==", + "license": "MIT" }, - "@webassemblyjs/wasm-gen": { - "version": "1.11.1", - "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" + "node_modules/vue-playground/node_modules/@vueuse/core": { + "version": "8.9.4", + "resolved": "https://npm.corp.kuaishou.com/@vueuse%2fcore/-/core-8.9.4.tgz", + "integrity": "sha512-B/Mdj9TK1peFyWaPof+Zf/mP9XuGAngaJZBwPaXBvU3aCTZlx3ltlrFFFyMV4iGBwsjSCeUCgZrtkEj9dS2Y3Q==", + "license": "MIT", + "dependencies": { + "@types/web-bluetooth": "^0.0.14", + "@vueuse/metadata": "8.9.4", + "@vueuse/shared": "8.9.4", + "vue-demi": "*" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + }, + "peerDependencies": { + "@vue/composition-api": "^1.1.0", + "vue": "^2.6.0 || ^3.2.0" + }, + "peerDependenciesMeta": { + "@vue/composition-api": { + "optional": true + }, + "vue": { + "optional": true + } } }, - "@webassemblyjs/wasm-opt": { - "version": "1.11.1", - "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1" + "node_modules/vue-playground/node_modules/@vueuse/metadata": { + "version": "8.9.4", + "resolved": "https://npm.corp.kuaishou.com/@vueuse%2fmetadata/-/metadata-8.9.4.tgz", + "integrity": "sha512-IwSfzH80bnJMzqhaapqJl9JRIiyQU0zsRGEgnxN6jhq7992cPUJIRfV+JHRIZXjYqbwt07E1gTEp0R0zPJ1aqw==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/antfu" } }, - "@webassemblyjs/wasm-parser": { - "version": "1.11.1", - "requires": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" + "node_modules/vue-playground/node_modules/@vueuse/shared": { + "version": "8.9.4", + "resolved": "https://npm.corp.kuaishou.com/@vueuse%2fshared/-/shared-8.9.4.tgz", + "integrity": "sha512-wt+T30c4K6dGRMVqPddexEVLa28YwxW5OFIPmzUHICjphfAuBFTTdDoyqREZNDOFJZ44ARH1WWQNCUK8koJ+Ag==", + "license": "MIT", + "dependencies": { + "vue-demi": "*" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + }, + "peerDependencies": { + "@vue/composition-api": "^1.1.0", + "vue": "^2.6.0 || ^3.2.0" + }, + "peerDependenciesMeta": { + "@vue/composition-api": { + "optional": true + }, + "vue": { + "optional": true + } } }, - "@webassemblyjs/wast-printer": { - "version": "1.11.1", - "requires": { - "@webassemblyjs/ast": "1.11.1", - "@xtuc/long": "4.2.2" + "node_modules/vue-router": { + "version": "4.1.6", + "resolved": "https://npm.corp.kuaishou.com/vue-router/-/vue-router-4.1.6.tgz", + "integrity": "sha512-DYWYwsG6xNPmLq/FmZn8Ip+qrhFEzA14EI12MsMgVxvHFDYvlr4NXpVF5hrRH1wVcDP8fGi5F4rxuJSl8/r+EQ==", + "license": "MIT", + "dependencies": { + "@vue/devtools-api": "^6.4.5" + }, + "funding": { + "url": "https://github.com/sponsors/posva" + }, + "peerDependencies": { + "vue": "^3.2.0" } }, - "@xtuc/ieee754": { - "version": "1.2.0" - }, - "@xtuc/long": { - "version": "4.2.2" - }, - "accepts": { - "version": "1.3.8", - "requires": { - "mime-types": "~2.1.34", - "negotiator": "0.6.3" + "node_modules/vuepress": { + "version": "2.0.0-beta.51", + "resolved": "https://npm.corp.kuaishou.com/vuepress/-/vuepress-2.0.0-beta.51.tgz", + "integrity": "sha512-IEavO4+9OpyjL9UANVbH8LZ3Cgmj6Amjt41JPM5nZ29U0aDsHJeVWDwyuMVYTlOvZiY+JDHEtIbfM839wFzEcw==", + "license": "MIT", + "dependencies": { + "vuepress-vite": "2.0.0-beta.51" + }, + "bin": { + "vuepress": "bin/vuepress.js" } }, - "acorn": { - "version": "8.8.1" - }, - "acorn-import-assertions": { - "version": "1.8.0", - "requires": {} - }, - "acorn-node": { - "version": "1.8.2", - "requires": { - "acorn": "^7.0.0", - "acorn-walk": "^7.0.0", - "xtend": "^4.0.2" - }, + "node_modules/vuepress-plugin-sandbox": { + "version": "0.1.10", + "resolved": "https://npm.corp.kuaishou.com/vuepress-plugin-sandbox/-/vuepress-plugin-sandbox-0.1.10.tgz", + "integrity": "sha512-UNLyIwcMdnCTlpJt6q2FqklS0sXcMghPXTc649lrBWdq1vmDXdmZ3/GiD5gkVBk4wXx5kreYuX3XoS5W50a5iw==", + "license": "MIT", "dependencies": { - "acorn": { - "version": "7.4.1" - } + "@types/markdown-it-container": "^2.0.5", + "@vue/shared": "^3.2.33", + "@vuepress/client": "2.0.0-beta.45", + "@vuepress/core": "2.0.0-beta.45", + "@vuepress/markdown": "2.0.0-beta.45", + "@vueuse/core": "^8.4.1", + "markdown-it": "^13.0.1", + "markdown-it-container": "^3.0.0", + "monaco-editor": "^0.33.0", + "vue": "^3.2.31", + "vue-demi": "*", + "vue-playground": "0.1.10" + }, + "funding": { + "url": "https://github.com/sponsors/2214962083" } }, - "acorn-walk": { - "version": "7.2.0" + "node_modules/vuepress-plugin-sandbox/node_modules/@types/web-bluetooth": { + "version": "0.0.14", + "resolved": "https://npm.corp.kuaishou.com/@types%2fweb-bluetooth/-/web-bluetooth-0.0.14.tgz", + "integrity": "sha512-5d2RhCard1nQUC3aHcq/gHzWYO6K0WJmAbjO7mQJgCQKtZpgXxv1rOM6O/dBDhDYYVutk1sciOgNSe+5YyfM8A==", + "license": "MIT" }, - "ajv": { - "version": "8.11.0", - "requires": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" + "node_modules/vuepress-plugin-sandbox/node_modules/@vuepress/client": { + "version": "2.0.0-beta.45", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fclient/-/client-2.0.0-beta.45.tgz", + "integrity": "sha512-4oK77LI5FpHvF6bZxREfLdWfOgAZroDkyy46moRopasg72UeXjfvOTb/6tIKaNQP6e/Kn2ubRxVeLe7DR5d9Ng==", + "license": "MIT", + "dependencies": { + "@vue/devtools-api": "^6.1.4", + "@vuepress/shared": "2.0.0-beta.45", + "vue": "^3.2.33", + "vue-router": "^4.0.15" } }, - "ajv-formats": { - "version": "2.1.1", - "requires": { - "ajv": "^8.0.0" + "node_modules/vuepress-plugin-sandbox/node_modules/@vuepress/core": { + "version": "2.0.0-beta.45", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fcore/-/core-2.0.0-beta.45.tgz", + "integrity": "sha512-SeTzsNKc+E41b0p5nNiWRqMIxXM0Pu59MAaSkd1SFqEa8vtxDQZvgdM2xIbmCEejVSnKqLJwyyN+F2vEvPF9WA==", + "license": "MIT", + "dependencies": { + "@vuepress/client": "2.0.0-beta.45", + "@vuepress/markdown": "2.0.0-beta.45", + "@vuepress/shared": "2.0.0-beta.45", + "@vuepress/utils": "2.0.0-beta.45", + "gray-matter": "^4.0.3", + "toml": "^3.0.0", + "vue": "^3.2.33" } }, - "ajv-keywords": { - "version": "5.1.0", - "requires": { - "fast-deep-equal": "^3.1.3" + "node_modules/vuepress-plugin-sandbox/node_modules/@vuepress/markdown": { + "version": "2.0.0-beta.45", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fmarkdown/-/markdown-2.0.0-beta.45.tgz", + "integrity": "sha512-wm9NsJ17G5Cw7idj+ChZVrdKkcTkx+1DwAZDgJcQESdvDTmggQYonZa8vSY1rLxw50VmHU2v8WsiaYTTn91slA==", + "license": "MIT", + "dependencies": { + "@types/markdown-it": "^12.2.3", + "@vuepress/shared": "2.0.0-beta.45", + "@vuepress/utils": "2.0.0-beta.45", + "markdown-it": "^13.0.1", + "markdown-it-anchor": "^8.6.3", + "markdown-it-emoji": "^2.0.2", + "mdurl": "^1.0.1" } }, - "ansi-html-community": { - "version": "0.0.8" - }, - "ansi-regex": { - "version": "2.1.1" - }, - "ansi-styles": { - "version": "4.3.0", - "requires": { - "color-convert": "^2.0.1" + "node_modules/vuepress-plugin-sandbox/node_modules/@vuepress/shared": { + "version": "2.0.0-beta.45", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fshared/-/shared-2.0.0-beta.45.tgz", + "integrity": "sha512-lYj+rgMtQ6liWjvzVy7jGux/Eix5ExbUy8b2uFAAsSE4v5wrdGeVgcFunVb40VPK3Mu0uyW4AvhCsPteLRUp1A==", + "license": "MIT", + "dependencies": { + "@vue/shared": "^3.2.33" } }, - "anymatch": { - "version": "3.1.2", - "requires": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" + "node_modules/vuepress-plugin-sandbox/node_modules/@vuepress/utils": { + "version": "2.0.0-beta.45", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2futils/-/utils-2.0.0-beta.45.tgz", + "integrity": "sha512-vdhRs+Q3tuJiznQ3Vlckumpciv7uKm6kTcqkAInZJdtpa/vS+SAeeS3q8ThERC0I7z1mnW/s/CGkVlLKhrfjKA==", + "license": "MIT", + "dependencies": { + "@types/debug": "^4.1.7", + "@types/fs-extra": "^9.0.13", + "@vuepress/shared": "2.0.0-beta.45", + "chalk": "^4.1.2", + "debug": "^4.3.4", + "fs-extra": "^10.1.0", + "globby": "^11.0.4", + "hash-sum": "^2.0.0", + "ora": "^5.4.1", + "upath": "^2.0.1" } }, - "arg": { - "version": "5.0.2" - }, - "argparse": { - "version": "2.0.1" - }, - "array-flatten": { - "version": "1.1.1" - }, - "ascli": { - "version": "1.0.1", - "requires": { - "colour": "~0.7.1", - "optjs": "~3.2.2" + "node_modules/vuepress-plugin-sandbox/node_modules/@vueuse/core": { + "version": "8.9.4", + "resolved": "https://npm.corp.kuaishou.com/@vueuse%2fcore/-/core-8.9.4.tgz", + "integrity": "sha512-B/Mdj9TK1peFyWaPof+Zf/mP9XuGAngaJZBwPaXBvU3aCTZlx3ltlrFFFyMV4iGBwsjSCeUCgZrtkEj9dS2Y3Q==", + "license": "MIT", + "dependencies": { + "@types/web-bluetooth": "^0.0.14", + "@vueuse/metadata": "8.9.4", + "@vueuse/shared": "8.9.4", + "vue-demi": "*" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + }, + "peerDependencies": { + "@vue/composition-api": "^1.1.0", + "vue": "^2.6.0 || ^3.2.0" + }, + "peerDependenciesMeta": { + "@vue/composition-api": { + "optional": true + }, + "vue": { + "optional": true + } } }, - "assignment": { - "version": "2.0.0" - }, - "async-limiter": { - "version": "1.0.1" - }, - "asynckit": { - "version": "0.4.0" - }, - "autoprefixer": { - "version": "10.4.13", - "requires": { - "browserslist": "^4.21.4", - "caniuse-lite": "^1.0.30001426", - "fraction.js": "^4.2.0", - "normalize-range": "^0.1.2", - "picocolors": "^1.0.0", - "postcss-value-parser": "^4.2.0" + "node_modules/vuepress-plugin-sandbox/node_modules/@vueuse/core/node_modules/@vueuse/shared": { + "version": "8.9.4", + "resolved": "https://npm.corp.kuaishou.com/@vueuse%2fshared/-/shared-8.9.4.tgz", + "integrity": "sha512-wt+T30c4K6dGRMVqPddexEVLa28YwxW5OFIPmzUHICjphfAuBFTTdDoyqREZNDOFJZ44ARH1WWQNCUK8koJ+Ag==", + "license": "MIT", + "dependencies": { + "vue-demi": "*" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + }, + "peerDependencies": { + "@vue/composition-api": "^1.1.0", + "vue": "^2.6.0 || ^3.2.0" + }, + "peerDependenciesMeta": { + "@vue/composition-api": { + "optional": true + }, + "vue": { + "optional": true + } } }, - "autosize": { - "version": "4.0.4" - }, - "balajs": { - "version": "1.0.10" - }, - "balalaika": { - "version": "1.0.1" - }, - "balanced-match": { - "version": "1.0.2" - }, - "base64-arraybuffer": { - "version": "0.1.5" - }, - "base64-js": { - "version": "1.5.1" - }, - "batch": { - "version": "0.6.1" - }, - "big.js": { - "version": "5.2.2" + "node_modules/vuepress-plugin-sandbox/node_modules/@vueuse/metadata": { + "version": "8.9.4", + "resolved": "https://npm.corp.kuaishou.com/@vueuse%2fmetadata/-/metadata-8.9.4.tgz", + "integrity": "sha512-IwSfzH80bnJMzqhaapqJl9JRIiyQU0zsRGEgnxN6jhq7992cPUJIRfV+JHRIZXjYqbwt07E1gTEp0R0zPJ1aqw==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/antfu" + } }, - "binary-extensions": { - "version": "2.2.0" + "node_modules/vuepress-plugin-sandbox/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://npm.corp.kuaishou.com/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha1-CCyyyJyf6GWaMRpTvWpNxTAdswQ=", + "license": "MIT", + "engines": { + "node": ">=8" + } }, - "bl": { - "version": "5.1.0", - "requires": { - "buffer": "^6.0.3", + "node_modules/vuepress-plugin-sandbox/node_modules/bl": { + "version": "4.1.0", + "resolved": "https://npm.corp.kuaishou.com/bl/-/bl-4.1.0.tgz", + "integrity": "sha1-RRU1JkGCvsL7vIOmKrmM8R2fezo=", + "license": "MIT", + "dependencies": { + "buffer": "^5.5.0", "inherits": "^2.0.4", "readable-stream": "^3.4.0" } }, - "blueimp-md5": { - "version": "2.19.0" - }, - "body-parser": { - "version": "1.20.1", - "requires": { - "bytes": "3.1.2", - "content-type": "~1.0.4", - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "on-finished": "2.4.1", - "qs": "6.11.0", - "raw-body": "2.5.1", - "type-is": "~1.6.18", - "unpipe": "1.0.0" + "node_modules/vuepress-plugin-sandbox/node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://npm.corp.kuaishou.com/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" } }, - "bonjour-service": { - "version": "1.0.14", - "requires": { - "array-flatten": "^2.1.2", - "dns-equal": "^1.0.0", - "fast-deep-equal": "^3.1.3", - "multicast-dns": "^7.2.5" - }, + "node_modules/vuepress-plugin-sandbox/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://npm.corp.kuaishou.com/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", "dependencies": { - "array-flatten": { - "version": "2.1.2" - } + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "boolbase": { - "version": "1.0.0" - }, - "brace-expansion": { - "version": "1.1.11", - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" + "node_modules/vuepress-plugin-sandbox/node_modules/cli-cursor": { + "version": "3.1.0", + "resolved": "https://npm.corp.kuaishou.com/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha1-JkMFp65JDR0Dvwybp8kl0XU68wc=", + "license": "MIT", + "dependencies": { + "restore-cursor": "^3.1.0" + }, + "engines": { + "node": ">=8" } }, - "braces": { - "version": "3.0.2", - "requires": { - "fill-range": "^7.0.1" + "node_modules/vuepress-plugin-sandbox/node_modules/debug": { + "version": "4.3.4", + "resolved": "https://npm.corp.kuaishou.com/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "license": "MIT", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } } }, - "browserslist": { - "version": "4.21.4", - "requires": { - "caniuse-lite": "^1.0.30001400", - "electron-to-chromium": "^1.4.251", - "node-releases": "^2.0.6", - "update-browserslist-db": "^1.0.9" + "node_modules/vuepress-plugin-sandbox/node_modules/globby": { + "version": "11.1.0", + "resolved": "https://npm.corp.kuaishou.com/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "license": "MIT", + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "buffer": { - "version": "6.0.3", - "requires": { - "base64-js": "^1.3.1", - "ieee754": "^1.2.1" + "node_modules/vuepress-plugin-sandbox/node_modules/is-interactive": { + "version": "1.0.0", + "resolved": "https://npm.corp.kuaishou.com/is-interactive/-/is-interactive-1.0.0.tgz", + "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", + "license": "MIT", + "engines": { + "node": ">=8" } }, - "buffer-from": { - "version": "1.1.2" + "node_modules/vuepress-plugin-sandbox/node_modules/is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://npm.corp.kuaishou.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "bytebuffer": { - "version": "5.0.1", - "requires": { - "long": "~3" + "node_modules/vuepress-plugin-sandbox/node_modules/log-symbols": { + "version": "4.1.0", + "resolved": "https://npm.corp.kuaishou.com/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha1-P727lbRoOsn8eFER55LlWNSr1QM=", + "license": "MIT", + "dependencies": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "bytes": { - "version": "3.1.2" + "node_modules/vuepress-plugin-sandbox/node_modules/monaco-editor": { + "version": "0.33.0", + "resolved": "https://npm.corp.kuaishou.com/monaco-editor/-/monaco-editor-0.33.0.tgz", + "integrity": "sha512-VcRWPSLIUEgQJQIE0pVT8FcGBIgFoxz7jtqctE+IiCxWugD0DwgyQBcZBhdSrdMC84eumoqMZsGl2GTreOzwqw==", + "license": "MIT" }, - "cac": { - "version": "6.7.14" + "node_modules/vuepress-plugin-sandbox/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://npm.corp.kuaishou.com/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "license": "MIT" }, - "call-bind": { - "version": "1.0.2", - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" + "node_modules/vuepress-plugin-sandbox/node_modules/ora": { + "version": "5.4.1", + "resolved": "https://npm.corp.kuaishou.com/ora/-/ora-5.4.1.tgz", + "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", + "license": "MIT", + "dependencies": { + "bl": "^4.1.0", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.5.0", + "is-interactive": "^1.0.0", + "is-unicode-supported": "^0.1.0", + "log-symbols": "^4.1.0", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "callsites": { - "version": "3.1.0" - }, - "camel-case": { - "version": "4.1.2", - "requires": { - "pascal-case": "^3.1.2", - "tslib": "^2.0.3" + "node_modules/vuepress-plugin-sandbox/node_modules/restore-cursor": { + "version": "3.1.0", + "resolved": "https://npm.corp.kuaishou.com/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "license": "MIT", + "dependencies": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=8" } }, - "camelcase": { - "version": "2.1.1" - }, - "camelcase-css": { - "version": "2.0.1" - }, - "caniuse-lite": { - "version": "1.0.30001431" - }, - "chalk": { - "version": "5.1.2" - }, - "charenc": { - "version": "0.0.2" - }, - "chokidar": { - "version": "3.5.3", - "requires": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "fsevents": "~2.3.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - } - }, - "chrome-trace-event": { - "version": "1.0.3" - }, - "clean-css": { - "version": "5.3.1", - "requires": { - "source-map": "~0.6.0" - } - }, - "cli-cursor": { - "version": "4.0.0", - "requires": { - "restore-cursor": "^4.0.0" - } - }, - "cli-spinners": { - "version": "2.7.0" - }, - "cliui": { - "version": "3.2.0", - "requires": { - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1", - "wrap-ansi": "^2.0.0" + "node_modules/vuepress-plugin-sandbox/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://npm.corp.kuaishou.com/slash/-/slash-3.0.0.tgz", + "integrity": "sha1-ZTm+hwwWWtvVJAIg2+Nh8bxNRjQ=", + "license": "MIT", + "engines": { + "node": ">=8" } }, - "clone": { - "version": "1.0.4" - }, - "clone-deep": { - "version": "4.0.1", - "requires": { - "is-plain-object": "^2.0.4", - "kind-of": "^6.0.2", - "shallow-clone": "^3.0.0" + "node_modules/vuepress-plugin-sandbox/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://npm.corp.kuaishou.com/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha1-nibGPTD1NEPpSJSVshBdN7Z6hdk=", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" } }, - "code-point-at": { - "version": "1.1.0" - }, - "color-convert": { - "version": "2.0.1", - "requires": { - "color-name": "~1.1.4" + "node_modules/vuepress-theme-reco": { + "version": "2.0.0-beta.41", + "resolved": "https://npm.corp.kuaishou.com/vuepress-theme-reco/-/vuepress-theme-reco-2.0.0-beta.41.tgz", + "integrity": "sha512-WLeqjqLT9i4H6gtvgLhwnp7EpRHSahctzRVMmwPtwTwzuwjO3lNWC8zxRSGvzaqZIHMCUsxLyx0UttQCXvNyvA==", + "license": "MIT", + "dependencies": { + "@vicons/fa": "^0.12.0", + "@vicons/tabler": "^0.12.0", + "@vuepress-reco/shared": "2.0.0-beta.41", + "@vuepress-reco/tailwindcss-config": "2.0.0-beta.41", + "@vuepress-reco/vuepress-plugin-bulletin-popover": "2.0.0-beta.41", + "@vuepress-reco/vuepress-plugin-code-copy": "2.0.0-beta.41", + "@vuepress-reco/vuepress-plugin-comments": "2.0.0-beta.41", + "@vuepress-reco/vuepress-plugin-page": "2.0.0-beta.41", + "@vuepress-reco/vuepress-plugin-vue-preview": "2.0.0-beta.41", + "@vuepress/bundler-vite": "2.0.0-beta.51", + "@vuepress/bundler-webpack": "2.0.0-beta.51", + "@vuepress/client": "2.0.0-beta.51", + "@vuepress/core": "2.0.0-beta.51", + "@vuepress/plugin-active-header-links": "2.0.0-beta.51", + "@vuepress/plugin-back-to-top": "2.0.0-beta.51", + "@vuepress/plugin-container": "2.0.0-beta.51", + "@vuepress/plugin-external-link-icon": "2.0.0-beta.51", + "@vuepress/plugin-git": "2.0.0-beta.51", + "@vuepress/plugin-nprogress": "2.0.0-beta.51", + "@vuepress/plugin-palette": "2.0.0-beta.51", + "@vuepress/plugin-prismjs": "2.0.0-beta.51", + "@vuepress/plugin-register-components": "2.0.0-beta.51", + "@vuepress/plugin-search": "2.0.0-beta.51", + "@vuepress/plugin-theme-data": "2.0.0-beta.51", + "@vuepress/shared": "2.0.0-beta.51", + "@vuepress/utils": "2.0.0-beta.51", + "autoprefixer": "10.4.7", + "postcss": "8.4.14", + "postcss-each": "1.1.0", + "postcss-import": "14.0.2", + "tailwindcss": "3.1.6", + "vue": "^3.2.38", + "vue-router": "^4.1.5" } }, - "color-name": { - "version": "1.1.4" - }, - "colorette": { - "version": "2.0.19" - }, - "colour": { - "version": "0.7.1" - }, - "combined-stream": { - "version": "1.0.8", - "requires": { - "delayed-stream": "~1.0.0" + "node_modules/vuepress-theme-reco/node_modules/autoprefixer": { + "version": "10.4.7", + "resolved": "https://npm.corp.kuaishou.com/autoprefixer/-/autoprefixer-10.4.7.tgz", + "integrity": "sha512-ypHju4Y2Oav95SipEcCcI5J7CGPuvz8oat7sUtYj3ClK44bldfvtvcxK6IEK++7rqB7YchDGzweZIBG+SD0ZAA==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + } + ], + "license": "MIT", + "dependencies": { + "browserslist": "^4.20.3", + "caniuse-lite": "^1.0.30001335", + "fraction.js": "^4.2.0", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" } }, - "commander": { - "version": "2.20.3" - }, - "comment-regex": { - "version": "1.0.1" - }, - "component-emitter": { - "version": "1.3.0" - }, - "compressible": { - "version": "2.0.18", - "requires": { - "mime-db": ">= 1.43.0 < 2" + "node_modules/vuepress-theme-reco/node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://npm.corp.kuaishou.com/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" } }, - "compression": { - "version": "1.7.4", - "requires": { - "accepts": "~1.3.5", - "bytes": "3.0.0", - "compressible": "~2.0.16", - "debug": "2.6.9", - "on-headers": "~1.0.2", - "safe-buffer": "5.1.2", - "vary": "~1.1.2" - }, - "dependencies": { - "bytes": { - "version": "3.0.0" + "node_modules/vuepress-theme-reco/node_modules/postcss": { + "version": "8.4.14", + "resolved": "https://npm.corp.kuaishou.com/postcss/-/postcss-8.4.14.tgz", + "integrity": "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" }, - "safe-buffer": { - "version": "5.1.2" + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.4", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" } }, - "concat-map": { - "version": "0.0.1" - }, - "connect-history-api-fallback": { - "version": "2.0.0" - }, - "content-disposition": { - "version": "0.5.4", - "requires": { - "safe-buffer": "5.2.1" + "node_modules/vuepress-theme-reco/node_modules/postcss-each": { + "version": "1.1.0", + "resolved": "https://npm.corp.kuaishou.com/postcss-each/-/postcss-each-1.1.0.tgz", + "integrity": "sha512-YfTPHHAPFVRgEJfLg9RM4R9WYEHVU9Rf1R8QgZfnObwV2dgNqzTLzTl0w5tF71ApFcYLiJAXiTpHAoqJFYcZVw==", + "license": "MIT", + "dependencies": { + "postcss-simple-vars": "^6.0.0" + }, + "peerDependencies": { + "postcss": "^8.0.0" } }, - "content-type": { - "version": "1.0.4" - }, - "convert-source-map": { - "version": "1.9.0" - }, - "cookie": { - "version": "0.5.0" - }, - "cookie-signature": { - "version": "1.0.6" - }, - "cookiejar": { - "version": "2.1.3" - }, - "copy-webpack-plugin": { - "version": "11.0.0", - "requires": { - "fast-glob": "^3.2.11", - "glob-parent": "^6.0.1", - "globby": "^13.1.1", - "normalize-path": "^3.0.0", - "schema-utils": "^4.0.0", - "serialize-javascript": "^6.0.0" - }, + "node_modules/vuepress-theme-reco/node_modules/postcss-import": { + "version": "14.0.2", + "resolved": "https://npm.corp.kuaishou.com/postcss-import/-/postcss-import-14.0.2.tgz", + "integrity": "sha1-YO/3fmvpLntn/kaex5fZQkyuGqE=", + "license": "MIT", "dependencies": { - "glob-parent": { - "version": "6.0.2", - "requires": { - "is-glob": "^4.0.3" - } - } + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + }, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "postcss": "^8.0.0" } }, - "core-util-is": { - "version": "1.0.3" - }, - "cosmiconfig": { - "version": "7.0.1", - "requires": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.2.1", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.10.0" - } - }, - "cross-spawn": { - "version": "7.0.3", - "requires": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" + "node_modules/vuepress-theme-reco/node_modules/postcss-simple-vars": { + "version": "6.0.3", + "resolved": "https://npm.corp.kuaishou.com/postcss-simple-vars/-/postcss-simple-vars-6.0.3.tgz", + "integrity": "sha1-5mUWx/6YDaNJj0qK1AC5xThhgGw=", + "license": "MIT", + "engines": { + "node": ">=10.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.2.1" } }, - "crypt": { - "version": "0.0.2" - }, - "css-loader": { - "version": "6.7.1", - "requires": { - "icss-utils": "^5.1.0", - "postcss": "^8.4.7", - "postcss-modules-extract-imports": "^3.0.0", - "postcss-modules-local-by-default": "^4.0.0", - "postcss-modules-scope": "^3.0.0", - "postcss-modules-values": "^4.0.0", + "node_modules/vuepress-theme-reco/node_modules/tailwindcss": { + "version": "3.1.6", + "resolved": "https://npm.corp.kuaishou.com/tailwindcss/-/tailwindcss-3.1.6.tgz", + "integrity": "sha512-7skAOY56erZAFQssT1xkpk+kWt2NrO45kORlxFPXUt3CiGsVPhH1smuH5XoDH6sGPXLyBv+zgCKA2HWBsgCytg==", + "license": "MIT", + "dependencies": { + "arg": "^5.0.2", + "chokidar": "^3.5.3", + "color-name": "^1.1.4", + "detective": "^5.2.1", + "didyoumean": "^1.2.2", + "dlv": "^1.1.3", + "fast-glob": "^3.2.11", + "glob-parent": "^6.0.2", + "is-glob": "^4.0.3", + "lilconfig": "^2.0.5", + "normalize-path": "^3.0.0", + "object-hash": "^3.0.0", + "picocolors": "^1.0.0", + "postcss": "^8.4.14", + "postcss-import": "^14.1.0", + "postcss-js": "^4.0.0", + "postcss-load-config": "^3.1.4", + "postcss-nested": "5.0.6", + "postcss-selector-parser": "^6.0.10", "postcss-value-parser": "^4.2.0", - "semver": "^7.3.5" + "quick-lru": "^5.1.1", + "resolve": "^1.22.1" + }, + "bin": { + "tailwind": "lib/cli.js", + "tailwindcss": "lib/cli.js" + }, + "engines": { + "node": ">=12.13.0" + }, + "peerDependencies": { + "postcss": "^8.0.9" } }, - "css-select": { - "version": "4.3.0", - "requires": { - "boolbase": "^1.0.0", - "css-what": "^6.0.1", - "domhandler": "^4.3.1", - "domutils": "^2.8.0", - "nth-check": "^2.0.1" + "node_modules/vuepress-theme-reco/node_modules/tailwindcss/node_modules/postcss": { + "version": "8.4.18", + "resolved": "https://npm.corp.kuaishou.com/postcss/-/postcss-8.4.18.tgz", + "integrity": "sha512-Wi8mWhncLJm11GATDaQKobXSNEYGUHeQLiQqDFG1qQ5UTDPTEvKw0Xt5NsTpktGTwLps3ByrWsBrG0rB8YQ9oA==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.4", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" } }, - "css-tree": { - "version": "2.2.1", - "requires": { - "mdn-data": "2.0.28", - "source-map-js": "^1.0.1" + "node_modules/vuepress-theme-reco/node_modules/tailwindcss/node_modules/postcss-import": { + "version": "14.1.0", + "resolved": "https://npm.corp.kuaishou.com/postcss-import/-/postcss-import-14.1.0.tgz", + "integrity": "sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + }, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "postcss": "^8.0.0" } }, - "css-what": { - "version": "6.1.0" - }, - "cssesc": { - "version": "3.0.0" - }, - "cssfilter": { - "version": "0.0.10" - }, - "csso": { - "version": "5.0.5", - "requires": { - "css-tree": "~2.2.0" + "node_modules/vuepress-theme-reco/node_modules/tailwindcss/node_modules/postcss-js": { + "version": "4.0.0", + "resolved": "https://npm.corp.kuaishou.com/postcss-js/-/postcss-js-4.0.0.tgz", + "integrity": "sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ==", + "license": "MIT", + "dependencies": { + "camelcase-css": "^2.0.1" + }, + "engines": { + "node": "^12 || ^14 || >= 16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.3.3" } }, - "csstype": { - "version": "2.6.21" - }, - "debug": { - "version": "2.6.9", - "requires": { - "ms": "2.0.0" - }, + "node_modules/vuepress-theme-reco/node_modules/tailwindcss/node_modules/postcss-load-config": { + "version": "3.1.4", + "resolved": "https://npm.corp.kuaishou.com/postcss-load-config/-/postcss-load-config-3.1.4.tgz", + "integrity": "sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==", + "license": "MIT", "dependencies": { - "ms": { - "version": "2.0.0" + "lilconfig": "^2.0.5", + "yaml": "^1.10.2" + }, + "engines": { + "node": ">= 10" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": ">=8.0.9", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "postcss": { + "optional": true + }, + "ts-node": { + "optional": true } } }, - "decamelize": { - "version": "1.2.0" - }, - "deepmerge": { - "version": "1.5.2" + "node_modules/vuepress-theme-reco/node_modules/tailwindcss/node_modules/postcss-nested": { + "version": "5.0.6", + "resolved": "https://npm.corp.kuaishou.com/postcss-nested/-/postcss-nested-5.0.6.tgz", + "integrity": "sha1-RmND9/yNPUavPn26P81H0FKpRbw=", + "license": "MIT", + "dependencies": { + "postcss-selector-parser": "^6.0.6" + }, + "engines": { + "node": ">=12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.2.14" + } }, - "default-gateway": { - "version": "6.0.3", - "requires": { - "execa": "^5.0.0" + "node_modules/vuepress-vite": { + "version": "2.0.0-beta.51", + "resolved": "https://npm.corp.kuaishou.com/vuepress-vite/-/vuepress-vite-2.0.0-beta.51.tgz", + "integrity": "sha512-EfvIBwmgRmj5xO6a3hZxRB5PRNkNK3f6RWunBEgRB31sDpGz9ZAEOTRZZ8lIPM/H1wSH39JkHUDm7fVgeuCCDg==", + "license": "MIT", + "dependencies": { + "@vuepress/bundler-vite": "2.0.0-beta.51", + "@vuepress/cli": "2.0.0-beta.51", + "@vuepress/core": "2.0.0-beta.51", + "@vuepress/theme-default": "2.0.0-beta.51" + }, + "bin": { + "vuepress": "bin/vuepress.js", + "vuepress-vite": "bin/vuepress.js" }, + "peerDependencies": { + "@vuepress/client": "^2.0.0-beta.50", + "vue": "^3.2.37" + } + }, + "node_modules/watchpack": { + "version": "2.4.0", + "resolved": "https://npm.corp.kuaishou.com/watchpack/-/watchpack-2.4.0.tgz", + "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "license": "MIT", "dependencies": { - "execa": { - "version": "5.1.1", - "requires": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - } - }, - "human-signals": { - "version": "2.1.0" - }, - "is-stream": { - "version": "2.0.1" - }, - "npm-run-path": { - "version": "4.0.1", - "requires": { - "path-key": "^3.0.0" - } - }, - "strip-final-newline": { - "version": "2.0.0" - } + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" } }, - "defaults": { - "version": "1.0.4", - "requires": { - "clone": "^1.0.2" + "node_modules/wbuf": { + "version": "1.7.3", + "resolved": "https://npm.corp.kuaishou.com/wbuf/-/wbuf-1.7.3.tgz", + "integrity": "sha1-wdjRSTFtPqhShIiVy2oL/oh7h98=", + "license": "MIT", + "dependencies": { + "minimalistic-assert": "^1.0.0" } }, - "define-lazy-prop": { - "version": "2.0.0" - }, - "defined": { - "version": "1.0.1" - }, - "delayed-stream": { - "version": "1.0.0" - }, - "depd": { - "version": "2.0.0" - }, - "destroy": { - "version": "1.2.0" - }, - "detect-node": { - "version": "2.1.0" + "node_modules/wcwidth": { + "version": "1.0.1", + "resolved": "https://npm.corp.kuaishou.com/wcwidth/-/wcwidth-1.0.1.tgz", + "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", + "license": "MIT", + "dependencies": { + "defaults": "^1.0.3" + } }, - "detective": { - "version": "5.2.1", - "requires": { - "acorn-node": "^1.8.2", - "defined": "^1.0.0", - "minimist": "^1.2.6" + "node_modules/webpack": { + "version": "5.74.0", + "resolved": "https://npm.corp.kuaishou.com/webpack/-/webpack-5.74.0.tgz", + "integrity": "sha512-A2InDwnhhGN4LYctJj6M1JEaGL7Luj6LOmyBHjcI8529cm5p6VXiTIW2sn6ffvEAKmveLzvu4jrihwXtPojlAA==", + "license": "MIT", + "dependencies": { + "@types/eslint-scope": "^3.7.3", + "@types/estree": "^0.0.51", + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/wasm-edit": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1", + "acorn": "^8.7.1", + "acorn-import-assertions": "^1.7.6", + "browserslist": "^4.14.5", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.10.0", + "es-module-lexer": "^0.9.0", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.9", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.1.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.1.3", + "watchpack": "^2.4.0", + "webpack-sources": "^3.2.3" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } } }, - "didyoumean": { - "version": "1.2.2" + "node_modules/webpack-chain": { + "version": "6.5.1", + "resolved": "https://npm.corp.kuaishou.com/webpack-chain/-/webpack-chain-6.5.1.tgz", + "integrity": "sha1-TycoTLu2N+PI+970Pu9YjU2GEgY=", + "license": "MPL-2.0", + "dependencies": { + "deepmerge": "^1.5.2", + "javascript-stringify": "^2.0.1" + }, + "engines": { + "node": ">=8" + } }, - "dir-glob": { - "version": "3.0.1", - "requires": { - "path-type": "^4.0.0" + "node_modules/webpack-dev-middleware": { + "version": "5.3.3", + "resolved": "https://npm.corp.kuaishou.com/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz", + "integrity": "sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==", + "license": "MIT", + "dependencies": { + "colorette": "^2.0.10", + "memfs": "^3.4.3", + "mime-types": "^2.1.31", + "range-parser": "^1.2.1", + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" } }, - "dlv": { - "version": "1.1.3" + "node_modules/webpack-dev-server": { + "version": "4.11.1", + "resolved": "https://npm.corp.kuaishou.com/webpack-dev-server/-/webpack-dev-server-4.11.1.tgz", + "integrity": "sha512-lILVz9tAUy1zGFwieuaQtYiadImb5M3d+H+L1zDYalYoDl0cksAB1UNyuE5MMWJrG6zR1tXkCP2fitl7yoUJiw==", + "license": "MIT", + "dependencies": { + "@types/bonjour": "^3.5.9", + "@types/connect-history-api-fallback": "^1.3.5", + "@types/express": "^4.17.13", + "@types/serve-index": "^1.9.1", + "@types/serve-static": "^1.13.10", + "@types/sockjs": "^0.3.33", + "@types/ws": "^8.5.1", + "ansi-html-community": "^0.0.8", + "bonjour-service": "^1.0.11", + "chokidar": "^3.5.3", + "colorette": "^2.0.10", + "compression": "^1.7.4", + "connect-history-api-fallback": "^2.0.0", + "default-gateway": "^6.0.3", + "express": "^4.17.3", + "graceful-fs": "^4.2.6", + "html-entities": "^2.3.2", + "http-proxy-middleware": "^2.0.3", + "ipaddr.js": "^2.0.1", + "open": "^8.0.9", + "p-retry": "^4.5.0", + "rimraf": "^3.0.2", + "schema-utils": "^4.0.0", + "selfsigned": "^2.1.1", + "serve-index": "^1.9.1", + "sockjs": "^0.3.24", + "spdy": "^4.0.2", + "webpack-dev-middleware": "^5.3.1", + "ws": "^8.4.2" + }, + "bin": { + "webpack-dev-server": "bin/webpack-dev-server.js" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.37.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } }, - "dns-equal": { - "version": "1.0.0" + "node_modules/webpack-merge": { + "version": "5.8.0", + "resolved": "https://npm.corp.kuaishou.com/webpack-merge/-/webpack-merge-5.8.0.tgz", + "integrity": "sha1-Kznb8ir4d3atdEw5AiNzHTCmj2E=", + "license": "MIT", + "dependencies": { + "clone-deep": "^4.0.1", + "wildcard": "^2.0.0" + }, + "engines": { + "node": ">=10.0.0" + } }, - "dns-packet": { - "version": "5.4.0", - "requires": { - "@leichtgewicht/ip-codec": "^2.0.1" + "node_modules/webpack-sources": { + "version": "2.3.1", + "resolved": "https://npm.corp.kuaishou.com/webpack-sources/-/webpack-sources-2.3.1.tgz", + "integrity": "sha512-y9EI9AO42JjEcrTJFOYmVywVZdKVUfOvDUPsJea5GIr1JOEGFVqwlY2K098fFoIjOkDzHn2AjRvM8dsBZu+gCA==", + "license": "MIT", + "dependencies": { + "source-list-map": "^2.0.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=10.13.0" } }, - "dom-converter": { - "version": "0.2.0", - "requires": { - "utila": "~0.4" + "node_modules/webpack/node_modules/@types/estree": { + "version": "0.0.51", + "resolved": "https://npm.corp.kuaishou.com/@types%2festree/-/estree-0.0.51.tgz", + "integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==", + "license": "MIT" + }, + "node_modules/webpack/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://npm.corp.kuaishou.com/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "dom-serializer": { - "version": "1.4.1", - "requires": { - "domelementtype": "^2.0.1", - "domhandler": "^4.2.0", - "entities": "^2.0.0" + "node_modules/webpack/node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://npm.corp.kuaishou.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "license": "MIT", + "peerDependencies": { + "ajv": "^6.9.1" } }, - "domelementtype": { - "version": "2.3.0" + "node_modules/webpack/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://npm.corp.kuaishou.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "license": "MIT" }, - "domhandler": { - "version": "4.3.1", - "requires": { - "domelementtype": "^2.2.0" + "node_modules/webpack/node_modules/schema-utils": { + "version": "3.1.1", + "resolved": "https://npm.corp.kuaishou.com/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, - "domutils": { - "version": "2.8.0", - "requires": { - "dom-serializer": "^1.0.1", - "domelementtype": "^2.2.0", - "domhandler": "^4.2.0" + "node_modules/webpack/node_modules/webpack-sources": { + "version": "3.2.3", + "resolved": "https://npm.corp.kuaishou.com/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "license": "MIT", + "engines": { + "node": ">=10.13.0" } }, - "dot-case": { - "version": "3.0.4", - "requires": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" + "node_modules/websocket-driver": { + "version": "0.7.4", + "resolved": "https://npm.corp.kuaishou.com/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "license": "Apache-2.0", + "dependencies": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + }, + "engines": { + "node": ">=0.8.0" } }, - "ee-first": { - "version": "1.1.1" - }, - "electron-to-chromium": { - "version": "1.4.284" - }, - "element-closest": { - "version": "3.0.2" - }, - "emojis-list": { - "version": "3.0.0" - }, - "encodeurl": { - "version": "1.0.2" - }, - "enhanced-resolve": { - "version": "5.10.0", - "requires": { - "graceful-fs": "^4.2.4", - "tapable": "^2.2.0" + "node_modules/websocket-extensions": { + "version": "0.1.4", + "resolved": "https://npm.corp.kuaishou.com/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", + "license": "Apache-2.0", + "engines": { + "node": ">=0.8.0" } }, - "entities": { - "version": "2.2.0" + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://npm.corp.kuaishou.com/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } }, - "envinfo": { - "version": "7.8.1" + "node_modules/wildcard": { + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/wildcard/-/wildcard-2.0.0.tgz", + "integrity": "sha1-p30g5SAMb6qsl55LOq3Hs91/j+w=", + "license": "MIT" }, - "error-ex": { - "version": "1.3.2", - "requires": { - "is-arrayish": "^0.2.1" + "node_modules/window-size": { + "version": "0.1.4", + "resolved": "https://npm.corp.kuaishou.com/window-size/-/window-size-0.1.4.tgz", + "integrity": "sha1-+OGqHuWlPsW/FR/6CXQqatdpeHY=", + "license": "MIT", + "bin": { + "window-size": "cli.js" + }, + "engines": { + "node": ">= 0.10.0" } }, - "es-module-lexer": { - "version": "0.9.3" + "node_modules/wrap-ansi": { + "version": "2.1.0", + "resolved": "https://npm.corp.kuaishou.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz", + "integrity": "sha512-vAaEaDM946gbNpH5pLVNR+vX2ht6n0Bt3GXwVB1AuAqZosOvHNF3P7wDnh8KLkSqgUh0uh77le7Owgoz+Z9XBw==", + "license": "MIT", + "dependencies": { + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } }, - "es6-promise": { - "version": "4.2.3" + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://npm.corp.kuaishou.com/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "license": "ISC" }, - "esbuild": { - "version": "0.14.54", - "requires": { - "@esbuild/linux-loong64": "0.14.54", - "esbuild-android-64": "0.14.54", - "esbuild-android-arm64": "0.14.54", - "esbuild-darwin-64": "0.14.54", - "esbuild-darwin-arm64": "0.14.54", - "esbuild-freebsd-64": "0.14.54", - "esbuild-freebsd-arm64": "0.14.54", - "esbuild-linux-32": "0.14.54", - "esbuild-linux-64": "0.14.54", - "esbuild-linux-arm": "0.14.54", - "esbuild-linux-arm64": "0.14.54", - "esbuild-linux-mips64le": "0.14.54", - "esbuild-linux-ppc64le": "0.14.54", - "esbuild-linux-riscv64": "0.14.54", - "esbuild-linux-s390x": "0.14.54", - "esbuild-netbsd-64": "0.14.54", - "esbuild-openbsd-64": "0.14.54", - "esbuild-sunos-64": "0.14.54", - "esbuild-windows-32": "0.14.54", - "esbuild-windows-64": "0.14.54", - "esbuild-windows-arm64": "0.14.54" + "node_modules/ws": { + "version": "8.11.0", + "resolved": "https://npm.corp.kuaishou.com/ws/-/ws-8.11.0.tgz", + "integrity": "sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==", + "license": "MIT", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } } }, - "esbuild-darwin-64": { - "version": "0.14.54", - "optional": true - }, - "esbuild-loader": { - "version": "2.19.0", - "requires": { - "esbuild": "^0.14.39", - "joycon": "^3.0.1", - "json5": "^2.2.0", - "loader-utils": "^2.0.0", - "tapable": "^2.2.0", - "webpack-sources": "^2.2.0" + "node_modules/xss": { + "version": "1.0.14", + "resolved": "https://npm.corp.kuaishou.com/xss/-/xss-1.0.14.tgz", + "integrity": "sha512-og7TEJhXvn1a7kzZGQ7ETjdQVS2UfZyTlsEdDOqvQF7GoxNfY+0YLCzBy1kPdsDDx4QuNAonQPddpsn6Xl/7sw==", + "license": "MIT", + "dependencies": { + "commander": "^2.20.3", + "cssfilter": "0.0.10" + }, + "bin": { + "xss": "bin/xss" + }, + "engines": { + "node": ">= 0.10.0" } }, - "escalade": { - "version": "3.1.1" + "node_modules/xtend": { + "version": "4.0.2", + "resolved": "https://npm.corp.kuaishou.com/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "license": "MIT", + "engines": { + "node": ">=0.4" + } }, - "escape-html": { - "version": "1.0.3" + "node_modules/y18n": { + "version": "3.2.2", + "resolved": "https://npm.corp.kuaishou.com/y18n/-/y18n-3.2.2.tgz", + "integrity": "sha1-hckBvWRwznH8S7cjrSCbcPfyhpY=", + "license": "ISC" }, - "escape-string-regexp": { - "version": "1.0.5" + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://npm.corp.kuaishou.com/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha1-m7knkNnA7/7GO+c1GeEaNQGaOnI=", + "license": "ISC" }, - "eslint-scope": { - "version": "5.1.1", - "requires": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" + "node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://npm.corp.kuaishou.com/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "license": "ISC", + "engines": { + "node": ">= 6" } }, - "esprima": { - "version": "4.0.1" - }, - "esrecurse": { - "version": "4.3.0", + "node_modules/yargs": { + "version": "3.32.0", + "resolved": "https://npm.corp.kuaishou.com/yargs/-/yargs-3.32.0.tgz", + "integrity": "sha512-ONJZiimStfZzhKamYvR/xvmgW3uEkAUFSP91y2caTEPhzF6uP2JfPiVZcq66b/YR0C3uitxSV7+T1x8p5bkmMg==", + "license": "MIT", + "dependencies": { + "camelcase": "^2.0.1", + "cliui": "^3.0.3", + "decamelize": "^1.1.1", + "os-locale": "^1.4.0", + "string-width": "^1.0.1", + "window-size": "^0.1.4", + "y18n": "^3.2.0" + } + } + }, + "dependencies": { + "@ampproject/remapping": { + "version": "2.2.0", + "resolved": "https://npm.corp.kuaishou.com/@ampproject%2fremapping/-/remapping-2.2.0.tgz", + "integrity": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==", "requires": { - "estraverse": "^5.2.0" + "@jridgewell/gen-mapping": "^0.1.0", + "@jridgewell/trace-mapping": "^0.3.9" }, "dependencies": { - "estraverse": { - "version": "5.3.0" + "@jridgewell/gen-mapping": { + "version": "0.1.1", + "resolved": "https://npm.corp.kuaishou.com/@jridgewell%2fgen-mapping/-/gen-mapping-0.1.1.tgz", + "integrity": "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==", + "requires": { + "@jridgewell/set-array": "^1.0.0", + "@jridgewell/sourcemap-codec": "^1.4.10" + } } } }, - "estraverse": { - "version": "4.3.0" - }, - "estree-walker": { - "version": "2.0.2" - }, - "etag": { - "version": "1.8.1" - }, - "event-target-shim": { - "version": "5.0.1" - }, - "eventemitter3": { - "version": "2.0.3" + "@babel/code-frame": { + "version": "7.18.6", + "resolved": "https://npm.corp.kuaishou.com/@babel%2fcode-frame/-/code-frame-7.18.6.tgz", + "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", + "requires": { + "@babel/highlight": "^7.18.6" + } }, - "events": { - "version": "3.3.0" + "@babel/compat-data": { + "version": "7.20.1", + "resolved": "https://npm.corp.kuaishou.com/@babel%2fcompat-data/-/compat-data-7.20.1.tgz", + "integrity": "sha512-EWZ4mE2diW3QALKvDMiXnbZpRvlj+nayZ112nK93SnhqOtpdsbVD4W+2tEoT3YNBAG9RBR0ISY758ZkOgsn6pQ==" }, - "execa": { - "version": "6.1.0", + "@babel/core": { + "version": "7.20.2", + "resolved": "https://npm.corp.kuaishou.com/@babel%2fcore/-/core-7.20.2.tgz", + "integrity": "sha512-w7DbG8DtMrJcFOi4VrLm+8QM4az8Mo+PuLBKLp2zrYRCow8W/f9xiXm5sN53C8HksCyDQwCKha9JiDoIyPjT2g==", "requires": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.1", - "human-signals": "^3.0.1", - "is-stream": "^3.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^5.1.0", - "onetime": "^6.0.0", - "signal-exit": "^3.0.7", - "strip-final-newline": "^3.0.0" + "@ampproject/remapping": "^2.1.0", + "@babel/code-frame": "^7.18.6", + "@babel/generator": "^7.20.2", + "@babel/helper-compilation-targets": "^7.20.0", + "@babel/helper-module-transforms": "^7.20.2", + "@babel/helpers": "^7.20.1", + "@babel/parser": "^7.20.2", + "@babel/template": "^7.18.10", + "@babel/traverse": "^7.20.1", + "@babel/types": "^7.20.2", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.1", + "semver": "^6.3.0" }, "dependencies": { - "mimic-fn": { - "version": "4.0.0" - }, - "onetime": { - "version": "6.0.0", + "debug": { + "version": "4.3.4", + "resolved": "https://npm.corp.kuaishou.com/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "requires": { - "mimic-fn": "^4.0.0" + "ms": "2.1.2" } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://npm.corp.kuaishou.com/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "semver": { + "version": "6.3.0", + "resolved": "https://npm.corp.kuaishou.com/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" } } }, - "express": { - "version": "4.18.2", + "@babel/generator": { + "version": "7.20.3", + "resolved": "https://npm.corp.kuaishou.com/@babel%2fgenerator/-/generator-7.20.3.tgz", + "integrity": "sha512-Wl5ilw2UD1+ZYprHVprxHZJCFeBWlzZYOovE4SDYLZnqCOD11j+0QzNeEWKLLTWM7nixrZEh7vNIyb76MyJg3A==", "requires": { - "accepts": "~1.3.8", - "array-flatten": "1.1.1", - "body-parser": "1.20.1", - "content-disposition": "0.5.4", - "content-type": "~1.0.4", - "cookie": "0.5.0", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "2.0.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "1.2.0", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "merge-descriptors": "1.0.1", - "methods": "~1.1.2", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "path-to-regexp": "0.1.7", - "proxy-addr": "~2.0.7", - "qs": "6.11.0", - "range-parser": "~1.2.1", - "safe-buffer": "5.2.1", - "send": "0.18.0", - "serve-static": "1.15.0", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "type-is": "~1.6.18", - "utils-merge": "1.0.1", - "vary": "~1.1.2" + "@babel/types": "^7.20.2", + "@jridgewell/gen-mapping": "^0.3.2", + "jsesc": "^2.5.1" } }, - "extend": { - "version": "3.0.2" - }, - "extend-shallow": { - "version": "2.0.1", + "@babel/helper-compilation-targets": { + "version": "7.20.0", + "resolved": "https://npm.corp.kuaishou.com/@babel%2fhelper-compilation-targets/-/helper-compilation-targets-7.20.0.tgz", + "integrity": "sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==", "requires": { - "is-extendable": "^0.1.0" + "@babel/compat-data": "^7.20.0", + "@babel/helper-validator-option": "^7.18.6", + "browserslist": "^4.21.3", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://npm.corp.kuaishou.com/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } } }, - "fast-deep-equal": { - "version": "3.1.3" + "@babel/helper-environment-visitor": { + "version": "7.18.9", + "resolved": "https://npm.corp.kuaishou.com/@babel%2fhelper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz", + "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==" }, - "fast-glob": { - "version": "3.2.12", + "@babel/helper-function-name": { + "version": "7.19.0", + "resolved": "https://npm.corp.kuaishou.com/@babel%2fhelper-function-name/-/helper-function-name-7.19.0.tgz", + "integrity": "sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==", "requires": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" + "@babel/template": "^7.18.10", + "@babel/types": "^7.19.0" } }, - "fast-json-stable-stringify": { - "version": "2.1.0" - }, - "fast-safe-stringify": { - "version": "2.1.1" - }, - "fastq": { - "version": "1.13.0", + "@babel/helper-hoist-variables": { + "version": "7.18.6", + "resolved": "https://npm.corp.kuaishou.com/@babel%2fhelper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", + "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", "requires": { - "reusify": "^1.0.4" + "@babel/types": "^7.18.6" } }, - "faye-websocket": { - "version": "0.11.4", + "@babel/helper-module-imports": { + "version": "7.18.6", + "resolved": "https://npm.corp.kuaishou.com/@babel%2fhelper-module-imports/-/helper-module-imports-7.18.6.tgz", + "integrity": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==", "requires": { - "websocket-driver": ">=0.5.1" + "@babel/types": "^7.18.6" } }, - "fill-range": { - "version": "7.0.1", + "@babel/helper-module-transforms": { + "version": "7.20.2", + "resolved": "https://npm.corp.kuaishou.com/@babel%2fhelper-module-transforms/-/helper-module-transforms-7.20.2.tgz", + "integrity": "sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA==", "requires": { - "to-regex-range": "^5.0.1" + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-module-imports": "^7.18.6", + "@babel/helper-simple-access": "^7.20.2", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/helper-validator-identifier": "^7.19.1", + "@babel/template": "^7.18.10", + "@babel/traverse": "^7.20.1", + "@babel/types": "^7.20.2" } }, - "finalhandler": { - "version": "1.2.0", + "@babel/helper-plugin-utils": { + "version": "7.20.2", + "resolved": "https://npm.corp.kuaishou.com/@babel%2fhelper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", + "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==" + }, + "@babel/helper-simple-access": { + "version": "7.20.2", + "resolved": "https://npm.corp.kuaishou.com/@babel%2fhelper-simple-access/-/helper-simple-access-7.20.2.tgz", + "integrity": "sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==", "requires": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "statuses": "2.0.1", - "unpipe": "~1.0.0" + "@babel/types": "^7.20.2" } }, - "follow-redirects": { - "version": "1.15.2" - }, - "form-data": { - "version": "2.5.1", + "@babel/helper-split-export-declaration": { + "version": "7.18.6", + "resolved": "https://npm.corp.kuaishou.com/@babel%2fhelper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", + "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", "requires": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.6", - "mime-types": "^2.1.12" + "@babel/types": "^7.18.6" } }, - "formidable": { - "version": "1.2.6" - }, - "forwarded": { - "version": "0.2.0" + "@babel/helper-string-parser": { + "version": "7.19.4", + "resolved": "https://npm.corp.kuaishou.com/@babel%2fhelper-string-parser/-/helper-string-parser-7.19.4.tgz", + "integrity": "sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==" }, - "fraction.js": { - "version": "4.2.0" + "@babel/helper-validator-identifier": { + "version": "7.19.1", + "resolved": "https://npm.corp.kuaishou.com/@babel%2fhelper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", + "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==" }, - "fresh": { - "version": "0.5.2" + "@babel/helper-validator-option": { + "version": "7.18.6", + "resolved": "https://npm.corp.kuaishou.com/@babel%2fhelper-validator-option/-/helper-validator-option-7.18.6.tgz", + "integrity": "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==" }, - "fs-extra": { - "version": "10.1.0", + "@babel/helpers": { + "version": "7.20.1", + "resolved": "https://npm.corp.kuaishou.com/@babel%2fhelpers/-/helpers-7.20.1.tgz", + "integrity": "sha512-J77mUVaDTUJFZ5BpP6mMn6OIl3rEWymk2ZxDBQJUG3P+PbmyMcF3bYWvz0ma69Af1oobDqT/iAsvzhB58xhQUg==", "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" + "@babel/template": "^7.18.10", + "@babel/traverse": "^7.20.1", + "@babel/types": "^7.20.0" } }, - "fs-monkey": { - "version": "1.0.3" - }, - "fs.realpath": { - "version": "1.0.0" - }, - "fsevents": { - "version": "2.3.2", - "optional": true - }, - "function-bind": { - "version": "1.1.1" - }, - "gensync": { - "version": "1.0.0-beta.2" - }, - "get-intrinsic": { - "version": "1.1.3", + "@babel/highlight": { + "version": "7.18.6", + "resolved": "https://npm.corp.kuaishou.com/@babel%2fhighlight/-/highlight-7.18.6.tgz", + "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", "requires": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.3" + "@babel/helper-validator-identifier": "^7.18.6", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://npm.corp.kuaishou.com/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://npm.corp.kuaishou.com/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://npm.corp.kuaishou.com/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha1-u3GFBpDh8TZWfeYp0tVHHe2kweg=", + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://npm.corp.kuaishou.com/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://npm.corp.kuaishou.com/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://npm.corp.kuaishou.com/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha1-4uaaRKyHcveKHsCzW2id9lMO/I8=", + "requires": { + "has-flag": "^3.0.0" + } + } } }, - "get-stream": { - "version": "6.0.1" + "@babel/parser": { + "version": "7.20.3", + "resolved": "https://npm.corp.kuaishou.com/@babel%2fparser/-/parser-7.20.3.tgz", + "integrity": "sha512-OP/s5a94frIPXwjzEcv5S/tpQfc6XhxYUnmWpgdqMWGgYCuErA3SzozaRAMQgSZWKeTJxht9aWAkUY+0UzvOFg==" }, - "glob": { - "version": "7.2.3", + "@babel/plugin-syntax-jsx": { + "version": "7.18.6", + "resolved": "https://npm.corp.kuaishou.com/@babel%2fplugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz", + "integrity": "sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==", "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "@babel/helper-plugin-utils": "^7.18.6" } }, - "glob-parent": { - "version": "5.1.2", + "@babel/runtime": { + "version": "7.20.1", + "resolved": "https://npm.corp.kuaishou.com/@babel%2fruntime/-/runtime-7.20.1.tgz", + "integrity": "sha512-mrzLkl6U9YLF8qpqI7TB82PESyEGjm/0Ly91jG575eVxMMlb8fYfOXFZIJ8XfLrJZQbm7dlKry2bJmXBUEkdFg==", "requires": { - "is-glob": "^4.0.1" + "regenerator-runtime": "^0.13.10" } }, - "glob-to-regexp": { - "version": "0.4.1" - }, - "globals": { - "version": "11.12.0" + "@babel/standalone": { + "version": "7.20.4", + "resolved": "https://npm.corp.kuaishou.com/@babel%2fstandalone/-/standalone-7.20.4.tgz", + "integrity": "sha512-27bv4h47jbaFZ7+e7gT1VEo9PNL1ynxqUX6/BERLz1qxm/5gzpbcHX+47VnSeYHyEyGZkRznpSOd8zPBhiz6tw==" }, - "globby": { - "version": "13.1.2", + "@babel/template": { + "version": "7.18.10", + "resolved": "https://npm.corp.kuaishou.com/@babel%2ftemplate/-/template-7.18.10.tgz", + "integrity": "sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==", "requires": { - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.11", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^4.0.0" + "@babel/code-frame": "^7.18.6", + "@babel/parser": "^7.18.10", + "@babel/types": "^7.18.10" } }, - "graceful-fs": { - "version": "4.2.10" - }, - "gray-matter": { - "version": "4.0.3", + "@babel/traverse": { + "version": "7.20.1", + "resolved": "https://npm.corp.kuaishou.com/@babel%2ftraverse/-/traverse-7.20.1.tgz", + "integrity": "sha512-d3tN8fkVJwFLkHkBN479SOsw4DMZnz8cdbL/gvuDuzy3TS6Nfw80HuQqhw1pITbIruHyh7d1fMA47kWzmcUEGA==", "requires": { - "js-yaml": "^3.13.1", - "kind-of": "^6.0.2", - "section-matter": "^1.0.0", - "strip-bom-string": "^1.0.0" + "@babel/code-frame": "^7.18.6", + "@babel/generator": "^7.20.1", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.19.0", + "@babel/helper-hoist-variables": "^7.18.6", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/parser": "^7.20.1", + "@babel/types": "^7.20.0", + "debug": "^4.1.0", + "globals": "^11.1.0" + }, + "dependencies": { + "debug": { + "version": "4.3.4", + "resolved": "https://npm.corp.kuaishou.com/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "requires": { + "ms": "2.1.2" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://npm.corp.kuaishou.com/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + } } }, - "hanabi": { - "version": "0.4.0", + "@babel/types": { + "version": "7.20.2", + "resolved": "https://npm.corp.kuaishou.com/@babel%2ftypes/-/types-7.20.2.tgz", + "integrity": "sha512-FnnvsNWgZCr232sqtXggapvlkk/tuwR/qhGzcmxI0GXLCjmPYQPzio2FbdlWuY6y1sHFfQKk+rRbUZ9VStQMog==", "requires": { - "comment-regex": "^1.0.0" + "@babel/helper-string-parser": "^7.19.4", + "@babel/helper-validator-identifier": "^7.19.1", + "to-fast-properties": "^2.0.0" } }, - "handle-thing": { - "version": "2.0.1" + "@emmetio/abbreviation": { + "version": "2.2.3", + "resolved": "https://npm.corp.kuaishou.com/@emmetio%2fabbreviation/-/abbreviation-2.2.3.tgz", + "integrity": "sha512-87pltuCPt99aL+y9xS6GPZ+Wmmyhll2WXH73gG/xpGcQ84DRnptBsI2r0BeIQ0EB/SQTOe2ANPqFqj3Rj5FOGA==", + "requires": { + "@emmetio/scanner": "^1.0.0" + } }, - "has": { - "version": "1.0.3", + "@emmetio/css-abbreviation": { + "version": "2.1.4", + "resolved": "https://npm.corp.kuaishou.com/@emmetio%2fcss-abbreviation/-/css-abbreviation-2.1.4.tgz", + "integrity": "sha1-kDYuihEizjt29sMVeQfTAYL1P1Q=", "requires": { - "function-bind": "^1.1.1" + "@emmetio/scanner": "^1.0.0" } }, - "has-flag": { - "version": "4.0.0" + "@emmetio/scanner": { + "version": "1.0.0", + "resolved": "https://npm.corp.kuaishou.com/@emmetio%2fscanner/-/scanner-1.0.0.tgz", + "integrity": "sha1-Blsq9iM/50dNRII+PeuJckr0K18=" }, - "has-symbols": { - "version": "1.0.3" + "@jridgewell/gen-mapping": { + "version": "0.3.2", + "resolved": "https://npm.corp.kuaishou.com/@jridgewell%2fgen-mapping/-/gen-mapping-0.3.2.tgz", + "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "requires": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + } }, - "hash-sum": { - "version": "2.0.0" + "@jridgewell/resolve-uri": { + "version": "3.1.0", + "resolved": "https://npm.corp.kuaishou.com/@jridgewell%2fresolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==" }, - "he": { - "version": "0.5.0" + "@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://npm.corp.kuaishou.com/@jridgewell%2fset-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==" }, - "hpack.js": { - "version": "2.1.6", + "@jridgewell/source-map": { + "version": "0.3.2", + "resolved": "https://npm.corp.kuaishou.com/@jridgewell%2fsource-map/-/source-map-0.3.2.tgz", + "integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==", "requires": { - "inherits": "^2.0.1", - "obuf": "^1.0.0", - "readable-stream": "^2.0.1", - "wbuf": "^1.1.0" + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "@jridgewell/sourcemap-codec": { + "version": "1.4.14", + "resolved": "https://npm.corp.kuaishou.com/@jridgewell%2fsourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" + }, + "@jridgewell/trace-mapping": { + "version": "0.3.17", + "resolved": "https://npm.corp.kuaishou.com/@jridgewell%2ftrace-mapping/-/trace-mapping-0.3.17.tgz", + "integrity": "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==", + "requires": { + "@jridgewell/resolve-uri": "3.1.0", + "@jridgewell/sourcemap-codec": "1.4.14" + } + }, + "@leancloud/adapter-types": { + "version": "5.0.0", + "resolved": "https://npm.corp.kuaishou.com/@leancloud%2fadapter-types/-/adapter-types-5.0.0.tgz", + "integrity": "sha1-OP66tSMu/ucHRMCdqgT/BT6+9w0=" + }, + "@leancloud/adapter-utils": { + "version": "1.2.2", + "resolved": "https://npm.corp.kuaishou.com/@leancloud%2fadapter-utils/-/adapter-utils-1.2.2.tgz", + "integrity": "sha1-5+V7ai1+qUmqmInzPeyVypRBal0=" + }, + "@leancloud/adapters-superagent": { + "version": "1.4.3", + "resolved": "https://npm.corp.kuaishou.com/@leancloud%2fadapters-superagent/-/adapters-superagent-1.4.3.tgz", + "integrity": "sha512-zWfYEFUXahcZH+RgaRCgf/YCWdPr0svztXdLazrn22pCStGEu0qdt2rUV9dqiw9gMh3zdkHUt6ZxlmxQyO7uXw==", + "requires": { + "@leancloud/adapter-types": "^5.0.0", + "@leancloud/adapter-utils": "^1.2.2", + "@types/superagent": "^4.1.7", + "superagent": "^5.2.2" }, "dependencies": { - "readable-stream": { - "version": "2.3.7", + "debug": { + "version": "4.3.4", + "resolved": "https://npm.corp.kuaishou.com/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" + "ms": "2.1.2" } }, - "safe-buffer": { - "version": "5.1.2" + "form-data": { + "version": "3.0.1", + "resolved": "https://npm.corp.kuaishou.com/form-data/-/form-data-3.0.1.tgz", + "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + } }, - "string_decoder": { - "version": "1.1.1", + "mime": { + "version": "2.6.0", + "resolved": "https://npm.corp.kuaishou.com/mime/-/mime-2.6.0.tgz", + "integrity": "sha1-oqaCqVzU0MsdYlfij4PafjWAA2c=" + }, + "ms": { + "version": "2.1.2", + "resolved": "https://npm.corp.kuaishou.com/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "superagent": { + "version": "5.3.1", + "resolved": "https://npm.corp.kuaishou.com/superagent/-/superagent-5.3.1.tgz", + "integrity": "sha512-wjJ/MoTid2/RuGCOFtlacyGNxN9QLMgcpYLDQlWFIhhdJ93kNscFonGvrpAHSCVjRVj++DGCglocF7Aej1KHvQ==", "requires": { - "safe-buffer": "~5.1.0" + "component-emitter": "^1.3.0", + "cookiejar": "^2.1.2", + "debug": "^4.1.1", + "fast-safe-stringify": "^2.0.7", + "form-data": "^3.0.0", + "formidable": "^1.2.2", + "methods": "^1.1.2", + "mime": "^2.4.6", + "qs": "^6.9.4", + "readable-stream": "^3.6.0", + "semver": "^7.3.2" } } } }, - "html-entities": { - "version": "2.3.3" + "@leancloud/platform-adapters-browser": { + "version": "1.5.3", + "resolved": "https://npm.corp.kuaishou.com/@leancloud%2fplatform-adapters-browser/-/platform-adapters-browser-1.5.3.tgz", + "integrity": "sha512-60atgNek/mdOEMyawYfCClllezS4grO8JY3a83zv2ZDJ0h58cLobsNK8FSkQHn9q8zLbCpeT0drB426g/pEhTw==", + "requires": { + "@leancloud/adapter-types": "^5.0.0", + "@leancloud/adapters-superagent": "^1.4.3" + } }, - "html-minifier-terser": { - "version": "6.1.0", + "@leancloud/platform-adapters-node": { + "version": "1.5.3", + "resolved": "https://npm.corp.kuaishou.com/@leancloud%2fplatform-adapters-node/-/platform-adapters-node-1.5.3.tgz", + "integrity": "sha512-IHsNTfoDVn1P+/jAwGBn9b6AL4urWVMXOivQe9R+E3l6xFVov/YhCMQzsFllmwzQFoqoHqPb7PkB+6nTKJSKSg==", "requires": { - "camel-case": "^4.1.2", - "clean-css": "^5.2.2", - "commander": "^8.3.0", - "he": "^1.2.0", - "param-case": "^3.0.4", - "relateurl": "^0.2.7", - "terser": "^5.10.0" + "@leancloud/adapter-types": "^5.0.0", + "@leancloud/adapters-superagent": "^1.4.3", + "@types/ws": "^7.2.2", + "localstorage-memory": "^1.0.2", + "ws": "^5.2.2" }, "dependencies": { - "commander": { - "version": "8.3.0" + "@types/ws": { + "version": "7.4.7", + "resolved": "https://npm.corp.kuaishou.com/@types%2fws/-/ws-7.4.7.tgz", + "integrity": "sha512-JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww==", + "requires": { + "@types/node": "*" + } }, - "he": { - "version": "1.2.0" + "ws": { + "version": "5.2.3", + "resolved": "https://npm.corp.kuaishou.com/ws/-/ws-5.2.3.tgz", + "integrity": "sha512-jZArVERrMsKUatIdnLzqvcfydI85dvd/Fp1u/VOpfdDWQ4c9qWXe+VIeAbQ5FrDwciAkr+lzofXLz3Kuf26AOA==", + "requires": { + "async-limiter": "~1.0.0" + } } } }, - "html-webpack-plugin": { - "version": "5.5.0", + "@leancloud/platform-adapters-weapp": { + "version": "1.6.2", + "resolved": "https://npm.corp.kuaishou.com/@leancloud%2fplatform-adapters-weapp/-/platform-adapters-weapp-1.6.2.tgz", + "integrity": "sha512-xMe8r3w0G/vOKy/Wnc9SZeb+cU/RzHkTK0s9aVgGS01wxOBAVlgbUEC8K67D1IeI15LxODL9e6wXXPgleR58FQ==", "requires": { - "@types/html-minifier-terser": "^6.0.0", - "html-minifier-terser": "^6.0.2", - "lodash": "^4.17.21", - "pretty-error": "^4.0.0", - "tapable": "^2.0.0" + "@leancloud/adapter-types": "^5.0.0", + "@leancloud/adapter-utils": "^1.2.2", + "event-target-shim": "^5.0.1", + "miniprogram-api-typings": "^2.10.2" } }, - "htmlparser2": { - "version": "6.1.0", + "@leichtgewicht/ip-codec": { + "version": "2.0.4", + "resolved": "https://npm.corp.kuaishou.com/@leichtgewicht%2fip-codec/-/ip-codec-2.0.4.tgz", + "integrity": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==" + }, + "@mdit-vue/plugin-component": { + "version": "0.10.0", + "resolved": "https://npm.corp.kuaishou.com/@mdit-vue%2fplugin-component/-/plugin-component-0.10.0.tgz", + "integrity": "sha512-cfxmPVcp6880TRUgpT3eUjem1gCkg3vsBHOcjOoiD2gAu3hWg48d3woz5+F9WVrAhv8P6wpDYBzFqt29D6D4MQ==", "requires": { - "domelementtype": "^2.0.1", - "domhandler": "^4.0.0", - "domutils": "^2.5.2", - "entities": "^2.0.0" + "@types/markdown-it": "^12.2.3", + "markdown-it": "^13.0.1" } }, - "http-deceiver": { - "version": "1.2.7" - }, - "http-errors": { - "version": "2.0.0", + "@mdit-vue/plugin-frontmatter": { + "version": "0.10.0", + "resolved": "https://npm.corp.kuaishou.com/@mdit-vue%2fplugin-frontmatter/-/plugin-frontmatter-0.10.0.tgz", + "integrity": "sha512-rJa4QM04YKRH9Edpr07BZvOjzOH2BwkPkalIa8YFIsZkCXLmrPpLsQteXbRLTkLGHLXnniW4V4tn5Y7bf7J74g==", "requires": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" + "@mdit-vue/types": "0.10.0", + "@types/markdown-it": "^12.2.3", + "gray-matter": "^4.0.3", + "markdown-it": "^13.0.1" } }, - "http-parser-js": { - "version": "0.5.8" - }, - "http-proxy": { - "version": "1.18.1", + "@mdit-vue/plugin-headers": { + "version": "0.10.0", + "resolved": "https://npm.corp.kuaishou.com/@mdit-vue%2fplugin-headers/-/plugin-headers-0.10.0.tgz", + "integrity": "sha512-DPrQyv83jVxX3FwmCnemVeBsSdtH4Hz+geDMwbzATtaqzaYDDpuAxoeiLGpTg41EpLe2SPDk94N3OOh0cdV0Lw==", "requires": { - "eventemitter3": "^4.0.0", - "follow-redirects": "^1.0.0", - "requires-port": "^1.0.0" - }, - "dependencies": { - "eventemitter3": { - "version": "4.0.7" - } + "@mdit-vue/shared": "0.10.0", + "@mdit-vue/types": "0.10.0", + "@types/markdown-it": "^12.2.3", + "markdown-it": "^13.0.1" } }, - "http-proxy-middleware": { - "version": "2.0.6", + "@mdit-vue/plugin-sfc": { + "version": "0.10.0", + "resolved": "https://npm.corp.kuaishou.com/@mdit-vue%2fplugin-sfc/-/plugin-sfc-0.10.0.tgz", + "integrity": "sha512-MoKnA8rApIyNeiIXbEUbQ+LAYr51YOWnNzJnum/ttX7kHmfh0+iMDAM1MnvmgVZWqhAzwdkEFOPTb9EVUI1dng==", "requires": { - "@types/http-proxy": "^1.17.8", - "http-proxy": "^1.18.1", - "is-glob": "^4.0.1", - "is-plain-obj": "^3.0.0", - "micromatch": "^4.0.2" + "@mdit-vue/types": "0.10.0", + "@types/markdown-it": "^12.2.3", + "markdown-it": "^13.0.1" } }, - "human-signals": { - "version": "3.0.1" - }, - "iconv-lite": { - "version": "0.4.24", + "@mdit-vue/plugin-title": { + "version": "0.10.0", + "resolved": "https://npm.corp.kuaishou.com/@mdit-vue%2fplugin-title/-/plugin-title-0.10.0.tgz", + "integrity": "sha512-odJ9vIazAHiomjCEEFwHNuPnmDtx/FGOYrf9xUfi3tjG9r/JZW+G++AABxvevTozwpGlpU+wkpJ7mTr+rNtBrw==", "requires": { - "safer-buffer": ">= 2.1.2 < 3" + "@mdit-vue/shared": "0.10.0", + "@mdit-vue/types": "0.10.0", + "@types/markdown-it": "^12.2.3", + "markdown-it": "^13.0.1" } }, - "icss-utils": { - "version": "5.1.0", - "requires": {} - }, - "ieee754": { - "version": "1.2.1" - }, - "ignore": { - "version": "5.2.0" - }, - "immutable": { - "version": "4.1.0" - }, - "import-fresh": { - "version": "3.3.0", + "@mdit-vue/plugin-toc": { + "version": "0.10.0", + "resolved": "https://npm.corp.kuaishou.com/@mdit-vue%2fplugin-toc/-/plugin-toc-0.10.0.tgz", + "integrity": "sha512-P9aNy4jtqfjI08wUYGT/HVd5x/IpTjgSnNdJ3lU52qAO5AeFsW3v4gt+NmW0lO8We0S2YDEONRHBuBN6r40y6A==", "requires": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" + "@mdit-vue/shared": "0.10.0", + "@mdit-vue/types": "0.10.0", + "@types/markdown-it": "^12.2.3", + "markdown-it": "^13.0.1" } }, - "inflight": { - "version": "1.0.6", + "@mdit-vue/shared": { + "version": "0.10.0", + "resolved": "https://npm.corp.kuaishou.com/@mdit-vue%2fshared/-/shared-0.10.0.tgz", + "integrity": "sha512-rUyu0NVNbaEg4DUiQenh/fam1MLdkItdzEVScN7vP0UzDWOwmGaKwkhlMmkSTW80H63ZlKst0fPe9LaGHImSZg==", "requires": { - "once": "^1.3.0", - "wrappy": "1" + "@mdit-vue/types": "0.10.0", + "@types/markdown-it": "^12.2.3", + "markdown-it": "^13.0.1" } }, - "inherits": { - "version": "2.0.4" + "@mdit-vue/types": { + "version": "0.10.0", + "resolved": "https://npm.corp.kuaishou.com/@mdit-vue%2ftypes/-/types-0.10.0.tgz", + "integrity": "sha512-ROz5zVKt3COpuWUYFnpJh5kIXit9SQeMtimGBlwKJL1xEBNPG3QKD3VZzez5Ng/dBCApianCQhNVZGCza82Myw==" }, - "insane": { - "version": "2.6.2", + "@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://npm.corp.kuaishou.com/@nodelib%2ffs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha1-dhnC6yGyVIP20WdUi0z9WnSIw9U=", "requires": { - "assignment": "2.0.0", - "he": "0.5.0" + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" } }, - "invert-kv": { - "version": "1.0.0" + "@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://npm.corp.kuaishou.com/@nodelib%2ffs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha1-W9Jir5Tp0lvR5xsF3u1Eh2oiLos=" }, - "ipaddr.js": { - "version": "2.0.1" + "@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://npm.corp.kuaishou.com/@nodelib%2ffs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha1-6Vc36LtnRt3t9pxVaVNJTxlv5po=", + "requires": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + } }, - "is-arrayish": { - "version": "0.2.1" + "@type-challenges/utils": { + "version": "0.1.1", + "resolved": "https://npm.corp.kuaishou.com/@type-challenges%2futils/-/utils-0.1.1.tgz", + "integrity": "sha1-GM4on7hMrxwT7uIRIm2/K8YZXtM=" }, - "is-binary-path": { - "version": "2.1.0", + "@types/babel__core": { + "version": "7.1.20", + "resolved": "https://npm.corp.kuaishou.com/@types%2fbabel__core/-/babel__core-7.1.20.tgz", + "integrity": "sha512-PVb6Bg2QuscZ30FvOU7z4guG6c926D9YRvOxEaelzndpMsvP+YM74Q/dAFASpg2l6+XLalxSGxcq/lrgYWZtyQ==", "requires": { - "binary-extensions": "^2.0.0" + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" } }, - "is-buffer": { - "version": "1.1.6" + "@types/babel__generator": { + "version": "7.6.4", + "resolved": "https://npm.corp.kuaishou.com/@types%2fbabel__generator/-/babel__generator-7.6.4.tgz", + "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", + "requires": { + "@babel/types": "^7.0.0" + } }, - "is-core-module": { - "version": "2.11.0", + "@types/babel__standalone": { + "version": "7.1.4", + "resolved": "https://npm.corp.kuaishou.com/@types%2fbabel__standalone/-/babel__standalone-7.1.4.tgz", + "integrity": "sha512-HijIDmcNl3Wmo0guqjYkQvMzyRCM6zMCkYcdG8f+2X7mPBNa9ikSeaQlWs2Yg18KN1klOJzyupX5BPOf+7ahaw==", "requires": { - "has": "^1.0.3" + "@babel/core": "^7.1.0" } }, - "is-docker": { - "version": "2.2.1" + "@types/babel__template": { + "version": "7.4.1", + "resolved": "https://npm.corp.kuaishou.com/@types%2fbabel__template/-/babel__template-7.4.1.tgz", + "integrity": "sha1-PRpI/Z1sDt/Vby/1eNrtSPNsiWk=", + "requires": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } }, - "is-extendable": { - "version": "0.1.1" + "@types/babel__traverse": { + "version": "7.18.2", + "resolved": "https://npm.corp.kuaishou.com/@types%2fbabel__traverse/-/babel__traverse-7.18.2.tgz", + "integrity": "sha512-FcFaxOr2V5KZCviw1TnutEMVUVsGt4D2hP1TAfXZAMKuHYW3xQhe3jTxNPWutgCJ3/X1c5yX8ZoGVEItxKbwBg==", + "requires": { + "@babel/types": "^7.3.0" + } }, - "is-extglob": { - "version": "2.1.1" + "@types/body-parser": { + "version": "1.19.2", + "resolved": "https://npm.corp.kuaishou.com/@types%2fbody-parser/-/body-parser-1.19.2.tgz", + "integrity": "sha1-rqIFnii3ZYY5CBNHrE+rPeFm5vA=", + "requires": { + "@types/connect": "*", + "@types/node": "*" + } }, - "is-fullwidth-code-point": { - "version": "1.0.0", + "@types/bonjour": { + "version": "3.5.10", + "resolved": "https://npm.corp.kuaishou.com/@types%2fbonjour/-/bonjour-3.5.10.tgz", + "integrity": "sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==", "requires": { - "number-is-nan": "^1.0.0" + "@types/node": "*" } }, - "is-glob": { - "version": "4.0.3", + "@types/connect": { + "version": "3.4.35", + "resolved": "https://npm.corp.kuaishou.com/@types%2fconnect/-/connect-3.4.35.tgz", + "integrity": "sha1-X89q5EXkAh0fwiGaSHPMc6O7KtE=", "requires": { - "is-extglob": "^2.1.1" + "@types/node": "*" } }, - "is-interactive": { - "version": "2.0.0" + "@types/connect-history-api-fallback": { + "version": "1.3.5", + "resolved": "https://npm.corp.kuaishou.com/@types%2fconnect-history-api-fallback/-/connect-history-api-fallback-1.3.5.tgz", + "integrity": "sha1-0feooJ0O1aV67lrpwYq5uAMgXa4=", + "requires": { + "@types/express-serve-static-core": "*", + "@types/node": "*" + } }, - "is-number": { - "version": "7.0.0" + "@types/cookiejar": { + "version": "2.1.2", + "resolved": "https://npm.corp.kuaishou.com/@types%2fcookiejar/-/cookiejar-2.1.2.tgz", + "integrity": "sha512-t73xJJrvdTjXrn4jLS9VSGRbz0nUY3cl2DMGDU48lKl+HR9dbbjW2A9r3g40VA++mQpy6uuHg33gy7du2BKpog==" }, - "is-plain-obj": { - "version": "3.0.0" + "@types/debug": { + "version": "4.1.7", + "resolved": "https://npm.corp.kuaishou.com/@types%2fdebug/-/debug-4.1.7.tgz", + "integrity": "sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg==", + "requires": { + "@types/ms": "*" + } }, - "is-plain-object": { - "version": "2.0.4", + "@types/eslint": { + "version": "8.4.10", + "resolved": "https://npm.corp.kuaishou.com/@types%2feslint/-/eslint-8.4.10.tgz", + "integrity": "sha512-Sl/HOqN8NKPmhWo2VBEPm0nvHnu2LL3v9vKo8MEq0EtbJ4eVzGPl41VNPvn5E1i5poMk4/XD8UriLHpJvEP/Nw==", "requires": { - "isobject": "^3.0.1" + "@types/estree": "*", + "@types/json-schema": "*" } }, - "is-stream": { - "version": "3.0.0" + "@types/eslint-scope": { + "version": "3.7.4", + "resolved": "https://npm.corp.kuaishou.com/@types%2feslint-scope/-/eslint-scope-3.7.4.tgz", + "integrity": "sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==", + "requires": { + "@types/eslint": "*", + "@types/estree": "*" + } }, - "is-unicode-supported": { - "version": "1.3.0" + "@types/estree": { + "version": "1.0.0", + "resolved": "https://npm.corp.kuaishou.com/@types%2festree/-/estree-1.0.0.tgz", + "integrity": "sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==" }, - "is-wsl": { - "version": "2.2.0", + "@types/express": { + "version": "4.17.14", + "resolved": "https://npm.corp.kuaishou.com/@types%2fexpress/-/express-4.17.14.tgz", + "integrity": "sha512-TEbt+vaPFQ+xpxFLFssxUDXj5cWCxZJjIcB7Yg0k0GMHGtgtQgpvx/MUQUeAkNbA9AAGrwkAsoeItdTgS7FMyg==", "requires": { - "is-docker": "^2.0.0" + "@types/body-parser": "*", + "@types/express-serve-static-core": "^4.17.18", + "@types/qs": "*", + "@types/serve-static": "*" } }, - "isarray": { - "version": "1.0.0" + "@types/express-serve-static-core": { + "version": "4.17.31", + "resolved": "https://npm.corp.kuaishou.com/@types%2fexpress-serve-static-core/-/express-serve-static-core-4.17.31.tgz", + "integrity": "sha512-DxMhY+NAsTwMMFHBTtJFNp5qiHKJ7TeqOo23zVEM9alT1Ml27Q3xcTH0xwxn7Q0BbMcVEJOs/7aQtUWupUQN3Q==", + "requires": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*" + } }, - "isexe": { - "version": "2.0.0" + "@types/fs-extra": { + "version": "9.0.13", + "resolved": "https://npm.corp.kuaishou.com/@types%2ffs-extra/-/fs-extra-9.0.13.tgz", + "integrity": "sha1-dZT7rgT+fxkYzos9IT90/0SsH0U=", + "requires": { + "@types/node": "*" + } }, - "isobject": { - "version": "3.0.1" + "@types/hash-sum": { + "version": "1.0.0", + "resolved": "https://npm.corp.kuaishou.com/@types%2fhash-sum/-/hash-sum-1.0.0.tgz", + "integrity": "sha1-g49OhieIfUKxYtBfPZbKY2wrxQQ=" }, - "javascript-state-machine": { - "version": "2.4.0" + "@types/highlight.js": { + "version": "9.12.4", + "resolved": "https://npm.corp.kuaishou.com/@types%2fhighlight.js/-/highlight.js-9.12.4.tgz", + "integrity": "sha1-jDSWvRtQzASu79aRFAqlcdTb+jQ=" }, - "javascript-stringify": { - "version": "2.1.0" + "@types/html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://npm.corp.kuaishou.com/@types%2fhtml-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==" }, - "jest-worker": { - "version": "27.5.1", + "@types/http-proxy": { + "version": "1.17.9", + "resolved": "https://npm.corp.kuaishou.com/@types%2fhttp-proxy/-/http-proxy-1.17.9.tgz", + "integrity": "sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw==", "requires": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - }, - "dependencies": { - "supports-color": { - "version": "8.1.1", - "requires": { - "has-flag": "^4.0.0" - } - } + "@types/node": "*" } }, - "joycon": { - "version": "3.1.1" + "@types/json-schema": { + "version": "7.0.11", + "resolved": "https://npm.corp.kuaishou.com/@types%2fjson-schema/-/json-schema-7.0.11.tgz", + "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==" }, - "js-tokens": { - "version": "4.0.0" + "@types/linkify-it": { + "version": "3.0.2", + "resolved": "https://npm.corp.kuaishou.com/@types%2flinkify-it/-/linkify-it-3.0.2.tgz", + "integrity": "sha1-/SzS7bqn6qx+fzwXSLUqGRQ4Rsk=" }, - "js-yaml": { - "version": "3.14.1", + "@types/markdown-it": { + "version": "12.2.3", + "resolved": "https://npm.corp.kuaishou.com/@types%2fmarkdown-it/-/markdown-it-12.2.3.tgz", + "integrity": "sha1-DW9uXkE/jaqiZSKQRZe+PWzZO1E=", "requires": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - }, - "dependencies": { - "argparse": { - "version": "1.0.10", - "requires": { - "sprintf-js": "~1.0.2" - } - } + "@types/linkify-it": "*", + "@types/mdurl": "*" } }, - "jsesc": { - "version": "2.5.2" + "@types/markdown-it-container": { + "version": "2.0.5", + "resolved": "https://npm.corp.kuaishou.com/@types%2fmarkdown-it-container/-/markdown-it-container-2.0.5.tgz", + "integrity": "sha512-8v5jIC5gcCUv+JcD0DExwNBkoKC0kLB4acensF0NoNlTIcXmQxF3RDjzAdIW82sXSoR+n772ePguxIWlq2ELvA==", + "requires": { + "@types/markdown-it": "*" + } }, - "json-parse-even-better-errors": { - "version": "2.3.1" + "@types/markdown-it-emoji": { + "version": "2.0.2", + "resolved": "https://npm.corp.kuaishou.com/@types%2fmarkdown-it-emoji/-/markdown-it-emoji-2.0.2.tgz", + "integrity": "sha1-8SqX3ydY84tLOPJ3tGh4BFn6/xQ=", + "requires": { + "@types/markdown-it": "*" + } }, - "json-schema-traverse": { - "version": "1.0.0" + "@types/mdurl": { + "version": "1.0.2", + "resolved": "https://npm.corp.kuaishou.com/@types%2fmdurl/-/mdurl-1.0.2.tgz", + "integrity": "sha1-4s6dg6YTus8oTHvn1JGUXjnh+Ok=" }, - "json5": { - "version": "2.2.1" + "@types/mime": { + "version": "3.0.1", + "resolved": "https://npm.corp.kuaishou.com/@types%2fmime/-/mime-3.0.1.tgz", + "integrity": "sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==" }, - "jsonfile": { - "version": "6.1.0", + "@types/ms": { + "version": "0.7.31", + "resolved": "https://npm.corp.kuaishou.com/@types%2fms/-/ms-0.7.31.tgz", + "integrity": "sha1-MbfKZAcSij0rvCf+LSGzRTl/YZc=" + }, + "@types/node": { + "version": "18.11.9", + "resolved": "https://npm.corp.kuaishou.com/@types%2fnode/-/node-18.11.9.tgz", + "integrity": "sha512-CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg==" + }, + "@types/parse-json": { + "version": "4.0.0", + "resolved": "https://npm.corp.kuaishou.com/@types%2fparse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha1-L4u0QUNNFjs1+4/9zNcTiSf/uMA=" + }, + "@types/qs": { + "version": "6.9.7", + "resolved": "https://npm.corp.kuaishou.com/@types%2fqs/-/qs-6.9.7.tgz", + "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==" + }, + "@types/range-parser": { + "version": "1.2.4", + "resolved": "https://npm.corp.kuaishou.com/@types%2frange-parser/-/range-parser-1.2.4.tgz", + "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==" + }, + "@types/retry": { + "version": "0.12.0", + "resolved": "https://npm.corp.kuaishou.com/@types%2fretry/-/retry-0.12.0.tgz", + "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==" + }, + "@types/serve-index": { + "version": "1.9.1", + "resolved": "https://npm.corp.kuaishou.com/@types%2fserve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==", "requires": { - "graceful-fs": "^4.1.6", - "universalify": "^2.0.0" + "@types/express": "*" } }, - "kind-of": { - "version": "6.0.3" + "@types/serve-static": { + "version": "1.15.0", + "resolved": "https://npm.corp.kuaishou.com/@types%2fserve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-z5xyF6uh8CbjAu9760KDKsH2FcDxZ2tFCsA4HIMWE6IkiYMXfVoa+4f9KX+FN0ZLsaMw1WNG2ETLA6N+/YA+cg==", + "requires": { + "@types/mime": "*", + "@types/node": "*" + } }, - "klona": { - "version": "2.0.5" + "@types/sockjs": { + "version": "0.3.33", + "resolved": "https://npm.corp.kuaishou.com/@types%2fsockjs/-/sockjs-0.3.33.tgz", + "integrity": "sha1-Vw06C5msmVNg4xNv1gRRE7G9I28=", + "requires": { + "@types/node": "*" + } }, - "lcid": { - "version": "1.0.0", + "@types/source-list-map": { + "version": "0.1.2", + "resolved": "https://npm.corp.kuaishou.com/@types%2fsource-list-map/-/source-list-map-0.1.2.tgz", + "integrity": "sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==" + }, + "@types/superagent": { + "version": "4.1.14", + "resolved": "https://npm.corp.kuaishou.com/@types%2fsuperagent/-/superagent-4.1.14.tgz", + "integrity": "sha512-iiXaOL2wSbnSY4qg0mFPWJHL9iwyEsoNYwaHF2w58/fsVAQJlj+KUfFAFZu+nzbz+b7dUprJEAc+O9vhHHhQTA==", "requires": { - "invert-kv": "^1.0.0" + "@types/cookiejar": "*", + "@types/node": "*" } }, - "leancloud-realtime": { - "version": "5.0.0-rc.7", + "@types/tapable": { + "version": "1.0.8", + "resolved": "https://npm.corp.kuaishou.com/@types%2ftapable/-/tapable-1.0.8.tgz", + "integrity": "sha1-uUpDkchWZse3Mpn9OtedT6pDUxA=" + }, + "@types/uglify-js": { + "version": "3.17.1", + "resolved": "https://npm.corp.kuaishou.com/@types%2fuglify-js/-/uglify-js-3.17.1.tgz", + "integrity": "sha512-GkewRA4i5oXacU/n4MA9+bLgt5/L3F1mKrYvFGm7r2ouLXhRKjuWwo9XHNnbx6WF3vlGW21S3fCvgqxvxXXc5g==", "requires": { - "@babel/runtime": "^7.10.2", - "@leancloud/adapter-types": "^3.0.0", - "@leancloud/platform-adapters-browser": "^1.1.0", - "@leancloud/platform-adapters-node": "^1.1.0", - "@leancloud/platform-adapters-weapp": "^1.2.0", - "base64-arraybuffer": "^0.1.5", - "debug": "^3.1.0", - "eventemitter3": "^3.0.0", - "javascript-state-machine": "^2.3.5", - "lodash": "^4.17.10", - "promise-timeout": "^1.3.0", - "protobufjs": "^5.0.1", - "uuid": "^3.0.0" + "source-map": "^0.6.1" + } + }, + "@types/web-bluetooth": { + "version": "0.0.16", + "resolved": "https://npm.corp.kuaishou.com/@types%2fweb-bluetooth/-/web-bluetooth-0.0.16.tgz", + "integrity": "sha512-oh8q2Zc32S6gd/j50GowEjKLoOVOwHP/bWVjKJInBwQqdOYMdPrf1oVlelTlyfFK3CKxL1uahMDAr+vy8T7yMQ==" + }, + "@types/webpack": { + "version": "4.41.33", + "resolved": "https://npm.corp.kuaishou.com/@types%2fwebpack/-/webpack-4.41.33.tgz", + "integrity": "sha512-PPajH64Ft2vWevkerISMtnZ8rTs4YmRbs+23c402J0INmxDKCrhZNvwZYtzx96gY2wAtXdrK1BS2fiC8MlLr3g==", + "requires": { + "@types/node": "*", + "@types/tapable": "^1", + "@types/uglify-js": "*", + "@types/webpack-sources": "*", + "anymatch": "^3.0.0", + "source-map": "^0.6.0" + } + }, + "@types/webpack-dev-server": { + "version": "3.11.6", + "resolved": "https://npm.corp.kuaishou.com/@types%2fwebpack-dev-server/-/webpack-dev-server-3.11.6.tgz", + "integrity": "sha1-2IiM/S8GMCA+E9PteDOk0RuKNNw=", + "requires": { + "@types/connect-history-api-fallback": "*", + "@types/express": "*", + "@types/serve-static": "*", + "@types/webpack": "^4", + "http-proxy-middleware": "^1.0.0" }, "dependencies": { - "@leancloud/adapter-types": { - "version": "3.0.0" - }, - "debug": { - "version": "3.2.7", + "http-proxy-middleware": { + "version": "1.3.1", + "resolved": "https://npm.corp.kuaishou.com/http-proxy-middleware/-/http-proxy-middleware-1.3.1.tgz", + "integrity": "sha1-Q3ANbZ7st0Gb8IahKND3IF2etmU=", "requires": { - "ms": "^2.1.1" + "@types/http-proxy": "^1.17.5", + "http-proxy": "^1.18.1", + "is-glob": "^4.0.1", + "is-plain-obj": "^3.0.0", + "micromatch": "^4.0.2" } - }, - "eventemitter3": { - "version": "3.1.2" } } }, - "leancloud-realtime-plugin-live-query": { - "version": "1.2.0", - "requires": {} + "@types/webpack-env": { + "version": "1.18.0", + "resolved": "https://npm.corp.kuaishou.com/@types%2fwebpack-env/-/webpack-env-1.18.0.tgz", + "integrity": "sha512-56/MAlX5WMsPVbOg7tAxnYvNYMMWr/QJiIp6BxVSW3JJXUVzzOn64qW8TzQyMSqSUFM2+PVI4aUHcHOzIz/1tg==" }, - "leancloud-storage": { - "version": "3.15.0", + "@types/webpack-sources": { + "version": "3.2.0", + "resolved": "https://npm.corp.kuaishou.com/@types%2fwebpack-sources/-/webpack-sources-3.2.0.tgz", + "integrity": "sha1-FtdZuglsKJA0smVT0t8b9FJI04s=", "requires": { - "debug": "^3.1.0", - "es6-promise": "4.2.3", - "eventemitter3": "^2.0.3", - "leancloud-realtime": "^5.0.0-alpha.3", - "leancloud-realtime-plugin-live-query": "^1.2.0", - "localstorage-memory": "^1.0.1", - "md5": "^2.0.0", - "superagent": "^3.3.1", - "underscore": "^1.8.3", - "uuid": "^3.3.2" + "@types/node": "*", + "@types/source-list-map": "*", + "source-map": "^0.7.3" }, "dependencies": { - "debug": { - "version": "3.2.7", - "requires": { - "ms": "^2.1.1" - } + "source-map": { + "version": "0.7.4", + "resolved": "https://npm.corp.kuaishou.com/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==" } } }, - "lilconfig": { - "version": "2.0.6" - }, - "lines-and-columns": { - "version": "1.2.4" - }, - "linkify-it": { - "version": "4.0.1", + "@types/ws": { + "version": "8.5.3", + "resolved": "https://npm.corp.kuaishou.com/@types%2fws/-/ws-8.5.3.tgz", + "integrity": "sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==", "requires": { - "uc.micro": "^1.0.1" + "@types/node": "*" } }, - "loader-runner": { - "version": "4.3.0" + "@vicons/fa": { + "version": "0.12.0", + "resolved": "https://npm.corp.kuaishou.com/@vicons%2ffa/-/fa-0.12.0.tgz", + "integrity": "sha512-g2PIeJLsTHUjt6bK63LxqC0uYQB7iu+xViJOxvp1s8b9/akpXVPVWjDTTsP980/0KYyMMe4U7F/aUo7wY+MsXA==" }, - "loader-utils": { - "version": "2.0.3", + "@vicons/tabler": { + "version": "0.12.0", + "resolved": "https://npm.corp.kuaishou.com/@vicons%2ftabler/-/tabler-0.12.0.tgz", + "integrity": "sha512-3+wUFuxb7e8OzZ8Wryct1pzfA2vyoF4lwW98O9s27ZrfCGaJGNmqG+q8A7vQ92Mf+COCgxpK+rhNPTtTvaU6qw==" + }, + "@vitejs/plugin-vue": { + "version": "3.2.0", + "resolved": "https://npm.corp.kuaishou.com/@vitejs%2fplugin-vue/-/plugin-vue-3.2.0.tgz", + "integrity": "sha512-E0tnaL4fr+qkdCNxJ+Xd0yM31UwMkQje76fsDVBBUCoGOUPexu2VDUYHL8P4CwV+zMvWw6nlRw19OnRKmYAJpw==", + "requires": {} + }, + "@vue/compiler-core": { + "version": "3.2.41", + "resolved": "https://npm.corp.kuaishou.com/@vue%2fcompiler-core/-/compiler-core-3.2.41.tgz", + "integrity": "sha512-oA4mH6SA78DT+96/nsi4p9DX97PHcNROxs51lYk7gb9Z4BPKQ3Mh+BLn6CQZBw857Iuhu28BfMSRHAlPvD4vlw==", "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" + "@babel/parser": "^7.16.4", + "@vue/shared": "3.2.41", + "estree-walker": "^2.0.2", + "source-map": "^0.6.1" } }, - "localstorage-memory": { - "version": "1.0.3" + "@vue/compiler-dom": { + "version": "3.2.41", + "resolved": "https://npm.corp.kuaishou.com/@vue%2fcompiler-dom/-/compiler-dom-3.2.41.tgz", + "integrity": "sha512-xe5TbbIsonjENxJsYRbDJvthzqxLNk+tb3d/c47zgREDa/PCp6/Y4gC/skM4H6PIuX5DAxm7fFJdbjjUH2QTMw==", + "requires": { + "@vue/compiler-core": "3.2.41", + "@vue/shared": "3.2.41" + } }, - "lodash": { - "version": "4.17.21" + "@vue/compiler-sfc": { + "version": "3.2.41", + "resolved": "https://npm.corp.kuaishou.com/@vue%2fcompiler-sfc/-/compiler-sfc-3.2.41.tgz", + "integrity": "sha512-+1P2m5kxOeaxVmJNXnBskAn3BenbTmbxBxWOtBq3mQTCokIreuMULFantBUclP0+KnzNCMOvcnKinqQZmiOF8w==", + "requires": { + "@babel/parser": "^7.16.4", + "@vue/compiler-core": "3.2.41", + "@vue/compiler-dom": "3.2.41", + "@vue/compiler-ssr": "3.2.41", + "@vue/reactivity-transform": "3.2.41", + "@vue/shared": "3.2.41", + "estree-walker": "^2.0.2", + "magic-string": "^0.25.7", + "postcss": "^8.1.10", + "source-map": "^0.6.1" + } }, - "log-symbols": { - "version": "5.1.0", + "@vue/compiler-ssr": { + "version": "3.2.41", + "resolved": "https://npm.corp.kuaishou.com/@vue%2fcompiler-ssr/-/compiler-ssr-3.2.41.tgz", + "integrity": "sha512-Y5wPiNIiaMz/sps8+DmhaKfDm1xgj6GrH99z4gq2LQenfVQcYXmHIOBcs5qPwl7jaW3SUQWjkAPKMfQemEQZwQ==", "requires": { - "chalk": "^5.0.0", - "is-unicode-supported": "^1.1.0" + "@vue/compiler-dom": "3.2.41", + "@vue/shared": "3.2.41" } }, - "long": { - "version": "3.2.0" + "@vue/devtools-api": { + "version": "6.4.5", + "resolved": "https://npm.corp.kuaishou.com/@vue%2fdevtools-api/-/devtools-api-6.4.5.tgz", + "integrity": "sha512-JD5fcdIuFxU4fQyXUu3w2KpAJHzTVdN+p4iOX2lMWSHMOoQdMAcpFLZzm9Z/2nmsoZ1a96QEhZ26e50xLBsgOQ==" }, - "lower-case": { - "version": "2.0.2", + "@vue/reactivity": { + "version": "3.2.41", + "resolved": "https://npm.corp.kuaishou.com/@vue%2freactivity/-/reactivity-3.2.41.tgz", + "integrity": "sha512-9JvCnlj8uc5xRiQGZ28MKGjuCoPhhTwcoAdv3o31+cfGgonwdPNuvqAXLhlzu4zwqavFEG5tvaoINQEfxz+l6g==", "requires": { - "tslib": "^2.0.3" + "@vue/shared": "3.2.41" } }, - "lru-cache": { - "version": "6.0.0", + "@vue/reactivity-transform": { + "version": "3.2.41", + "resolved": "https://npm.corp.kuaishou.com/@vue%2freactivity-transform/-/reactivity-transform-3.2.41.tgz", + "integrity": "sha512-mK5+BNMsL4hHi+IR3Ft/ho6Za+L3FA5j8WvreJ7XzHrqkPq8jtF/SMo7tuc9gHjLDwKZX1nP1JQOKo9IEAn54A==", "requires": { - "yallist": "^4.0.0" + "@babel/parser": "^7.16.4", + "@vue/compiler-core": "3.2.41", + "@vue/shared": "3.2.41", + "estree-walker": "^2.0.2", + "magic-string": "^0.25.7" } }, - "magic-string": { - "version": "0.25.9", + "@vue/runtime-core": { + "version": "3.2.41", + "resolved": "https://npm.corp.kuaishou.com/@vue%2fruntime-core/-/runtime-core-3.2.41.tgz", + "integrity": "sha512-0LBBRwqnI0p4FgIkO9q2aJBBTKDSjzhnxrxHYengkAF6dMOjeAIZFDADAlcf2h3GDALWnblbeprYYpItiulSVQ==", "requires": { - "sourcemap-codec": "^1.4.8" + "@vue/reactivity": "3.2.41", + "@vue/shared": "3.2.41" } }, - "markdown-it": { - "version": "13.0.1", + "@vue/runtime-dom": { + "version": "3.2.41", + "resolved": "https://npm.corp.kuaishou.com/@vue%2fruntime-dom/-/runtime-dom-3.2.41.tgz", + "integrity": "sha512-U7zYuR1NVIP8BL6jmOqmapRAHovEFp7CSw4pR2FacqewXNGqZaRfHoNLQsqQvVQ8yuZNZtxSZy0FFyC70YXPpA==", "requires": { - "argparse": "^2.0.1", - "entities": "~3.0.1", - "linkify-it": "^4.0.1", - "mdurl": "^1.0.1", - "uc.micro": "^1.0.5" - }, - "dependencies": { - "entities": { - "version": "3.0.1" - } + "@vue/runtime-core": "3.2.41", + "@vue/shared": "3.2.41", + "csstype": "^2.6.8" } }, - "markdown-it-anchor": { - "version": "8.6.5", - "requires": {} - }, - "markdown-it-container": { - "version": "3.0.0" - }, - "markdown-it-emoji": { - "version": "2.0.2" - }, - "marked": { - "version": "4.2.2" - }, - "md5": { - "version": "2.3.0", + "@vue/server-renderer": { + "version": "3.2.41", + "resolved": "https://npm.corp.kuaishou.com/@vue%2fserver-renderer/-/server-renderer-3.2.41.tgz", + "integrity": "sha512-7YHLkfJdTlsZTV0ae5sPwl9Gn/EGr2hrlbcS/8naXm2CDpnKUwC68i1wGlrYAfIgYWL7vUZwk2GkYLQH5CvFig==", "requires": { - "charenc": "0.0.2", - "crypt": "0.0.2", - "is-buffer": "~1.1.6" + "@vue/compiler-ssr": "3.2.41", + "@vue/shared": "3.2.41" } }, - "mdn-data": { - "version": "2.0.28" - }, - "mdurl": { - "version": "1.0.1" - }, - "media-typer": { - "version": "0.3.0" - }, - "medium-zoom": { - "version": "1.0.6" + "@vue/shared": { + "version": "3.2.41", + "resolved": "https://npm.corp.kuaishou.com/@vue%2fshared/-/shared-3.2.41.tgz", + "integrity": "sha512-W9mfWLHmJhkfAmV+7gDjcHeAWALQtgGT3JErxULl0oz6R6+3ug91I7IErs93eCFhPCZPHBs4QJS7YWEV7A3sxw==" }, - "memfs": { - "version": "3.4.10", + "@vuepress-reco/shared": { + "version": "2.0.0-beta.41", + "resolved": "https://npm.corp.kuaishou.com/@vuepress-reco%2fshared/-/shared-2.0.0-beta.41.tgz", + "integrity": "sha512-MRNpPfcL4CluQd7MKxGPhm58VwFA+il4qOr8ttP7E/GQDr0hpFWhxjBH+GLV/A6wia4IvoMt4JyZ47ps8ITTzw==", "requires": { - "fs-monkey": "^1.0.3" + "@vuepress-reco/vuepress-plugin-page": "2.0.0-beta.41", + "@vuepress/core": "2.0.0-beta.51", + "vue": "^3.2.38" } }, - "merge-descriptors": { - "version": "1.0.1" - }, - "merge-stream": { - "version": "2.0.0" - }, - "merge2": { - "version": "1.4.1" - }, - "methods": { - "version": "1.1.2" + "@vuepress-reco/tailwindcss-config": { + "version": "2.0.0-beta.41", + "resolved": "https://npm.corp.kuaishou.com/@vuepress-reco%2ftailwindcss-config/-/tailwindcss-config-2.0.0-beta.41.tgz", + "integrity": "sha512-qcvN2+4Rzg/8cwV7aTNOVkLztymOEGaqa0LIs0UODsxebR2EigSDTGtf6sOM95CKL9IsxoYqOdUi7qf8d5wD5A==" }, - "micromatch": { - "version": "4.0.5", + "@vuepress-reco/vuepress-plugin-bulletin-popover": { + "version": "2.0.0-beta.41", + "resolved": "https://npm.corp.kuaishou.com/@vuepress-reco%2fvuepress-plugin-bulletin-popover/-/vuepress-plugin-bulletin-popover-2.0.0-beta.41.tgz", + "integrity": "sha512-kj0g0iIfNp4a/YGJ7XS3ySHCHfmSWFcgdi+HfzFMpOWCVgdKUKDpYXTKJNT7n+F2zyn1tDGv9czOUc0NmUSfpQ==", "requires": { - "braces": "^3.0.2", - "picomatch": "^2.3.1" + "@vuepress-reco/tailwindcss-config": "2.0.0-beta.41", + "@vuepress/client": "2.0.0-beta.51", + "@vuepress/core": "2.0.0-beta.51", + "@vuepress/plugin-theme-data": "2.0.0-beta.51", + "@vuepress/utils": "2.0.0-beta.51", + "vue": "^3.2.38" } }, - "mime": { - "version": "1.6.0" - }, - "mime-db": { - "version": "1.52.0" - }, - "mime-types": { - "version": "2.1.35", + "@vuepress-reco/vuepress-plugin-code-copy": { + "version": "2.0.0-beta.41", + "resolved": "https://npm.corp.kuaishou.com/@vuepress-reco%2fvuepress-plugin-code-copy/-/vuepress-plugin-code-copy-2.0.0-beta.41.tgz", + "integrity": "sha512-hTiVbTV5L6Ya/qZsvgji0yRczDYc11L3JW1mRT9spgJ3Th21nUaszol7WoX5bTEWnu/myYjLwqufeKTUTVYKEw==", "requires": { - "mime-db": "1.52.0" + "@vuepress/client": "2.0.0-beta.51", + "@vuepress/core": "2.0.0-beta.51", + "@vuepress/utils": "2.0.0-beta.51", + "vue-router": "^4.1.5" } }, - "mimic-fn": { - "version": "2.1.0" - }, - "mini-css-extract-plugin": { - "version": "2.6.1", + "@vuepress-reco/vuepress-plugin-comments": { + "version": "2.0.0-beta.41", + "resolved": "https://npm.corp.kuaishou.com/@vuepress-reco%2fvuepress-plugin-comments/-/vuepress-plugin-comments-2.0.0-beta.41.tgz", + "integrity": "sha512-EabZjyrO0c1o+dAW/9/MiM3BUXXsJMPeFa+g4yagNcRmROxJxCSO8NW1sRZulWoXVNA3+uLcfzaFoGYI+ra+rg==", "requires": { - "schema-utils": "^4.0.0" + "@vuepress-reco/tailwindcss-config": "2.0.0-beta.41", + "@vuepress/client": "2.0.0-beta.51", + "@vuepress/core": "2.0.0-beta.51", + "@vuepress/plugin-theme-data": "2.0.0-beta.51", + "@vuepress/utils": "2.0.0-beta.51", + "@waline/client": "^2.6.1", + "valine": "1.4.18", + "vue": "^3.2.38", + "vue-router": "^4.1.5" } }, - "minimalistic-assert": { - "version": "1.0.1" - }, - "minimatch": { - "version": "3.1.2", + "@vuepress-reco/vuepress-plugin-page": { + "version": "2.0.0-beta.41", + "resolved": "https://npm.corp.kuaishou.com/@vuepress-reco%2fvuepress-plugin-page/-/vuepress-plugin-page-2.0.0-beta.41.tgz", + "integrity": "sha512-fQM9hSnveqm7OIKdWoEdk5yHbdE0XEcMApfzwKTZhck0bnx8QK6n42mnFs1HIb/frq9cxnKuJDMVhuF9ry+y+Q==", "requires": { - "brace-expansion": "^1.1.7" + "@vuepress-reco/shared": "2.0.0-beta.41", + "@vuepress/client": "2.0.0-beta.51", + "@vuepress/core": "2.0.0-beta.51", + "@vuepress/utils": "2.0.0-beta.51", + "vue": "^3.2.38", + "vue-router": "^4.1.5" } }, - "minimist": { - "version": "1.2.7" - }, - "miniprogram-api-typings": { - "version": "2.12.0" - }, - "ms": { - "version": "2.1.3" - }, - "multicast-dns": { - "version": "7.2.5", + "@vuepress-reco/vuepress-plugin-vue-preview": { + "version": "2.0.0-beta.41", + "resolved": "https://npm.corp.kuaishou.com/@vuepress-reco%2fvuepress-plugin-vue-preview/-/vuepress-plugin-vue-preview-2.0.0-beta.41.tgz", + "integrity": "sha512-ihnzojiFIkS31rGZtdD26I8bNVYz6D8V0DfPk3oS+G7r0tYh8Q7ujGyTkHyWDbardexB5/huo+n+wIpETy3Wqw==", "requires": { - "dns-packet": "^5.2.2", - "thunky": "^1.0.2" + "@babel/core": "^7.16.12", + "@babel/plugin-syntax-jsx": "^7.16.7", + "@babel/traverse": "^7.16.10", + "@babel/types": "^7.16.8", + "@vue/compiler-sfc": "^3.2.29", + "@vuepress/core": "2.0.0-beta.51", + "@vuepress/markdown": "2.0.0-beta.51", + "@vuepress/plugin-prismjs": "2.0.0-beta.51", + "@vuepress/utils": "2.0.0-beta.51", + "enhanced-resolve": "^5.8.3", + "slash2": "^2.0.0" } }, - "nanoid": { - "version": "3.3.4" - }, - "negotiator": { - "version": "0.6.3" - }, - "neo-async": { - "version": "2.6.2" - }, - "no-case": { - "version": "3.0.4", + "@vuepress/bundler-vite": { + "version": "2.0.0-beta.51", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fbundler-vite/-/bundler-vite-2.0.0-beta.51.tgz", + "integrity": "sha512-HADQujwuj0KbONq6R0UGSiktMzG0iOFmI2OACgi7r5P4pHAEF06h333g0q4tSH6HQg6VuqelQrVgWwq/0puIfA==", "requires": { - "lower-case": "^2.0.2", - "tslib": "^2.0.3" + "@vitejs/plugin-vue": "^3.0.3", + "@vuepress/client": "2.0.0-beta.51", + "@vuepress/core": "2.0.0-beta.51", + "@vuepress/shared": "2.0.0-beta.51", + "@vuepress/utils": "2.0.0-beta.51", + "autoprefixer": "^10.4.8", + "connect-history-api-fallback": "^2.0.0", + "postcss": "^8.4.16", + "rollup": "^2.78.1", + "vite": "~3.0.9", + "vue": "^3.2.37", + "vue-router": "^4.1.4" + } + }, + "@vuepress/bundler-webpack": { + "version": "2.0.0-beta.51", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fbundler-webpack/-/bundler-webpack-2.0.0-beta.51.tgz", + "integrity": "sha512-ell4t2sNiGxtSZGk0m6ygapmrte5RKGEubW0D7qskYvmmCbwvB/g/orIjIVfU2aZSVA1QbuPspQ/N0KMCIzxPg==", + "requires": { + "@types/express": "^4.17.13", + "@types/webpack-env": "^1.18.0", + "@vuepress/client": "2.0.0-beta.51", + "@vuepress/core": "2.0.0-beta.51", + "@vuepress/shared": "2.0.0-beta.51", + "@vuepress/utils": "2.0.0-beta.51", + "autoprefixer": "^10.4.8", + "chokidar": "^3.5.3", + "copy-webpack-plugin": "^11.0.0", + "css-loader": "^6.7.1", + "esbuild-loader": "~2.19.0", + "express": "^4.18.1", + "html-webpack-plugin": "^5.5.0", + "mini-css-extract-plugin": "^2.6.1", + "postcss": "^8.4.16", + "postcss-csso": "^6.0.1", + "postcss-loader": "^7.0.1", + "style-loader": "^3.3.1", + "vue": "^3.2.37", + "vue-loader": "^17.0.0", + "vue-router": "^4.1.4", + "webpack": "^5.74.0", + "webpack-chain": "^6.5.1", + "webpack-dev-server": "^4.10.0", + "webpack-merge": "^5.8.0" + } + }, + "@vuepress/cli": { + "version": "2.0.0-beta.51", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fcli/-/cli-2.0.0-beta.51.tgz", + "integrity": "sha512-NcMNpsGxdlPgrHhIMW+hkRd9l+E+89M8IoN9SnBJFTgokKrUOwLm2BEQPVuucebj4ff94IorG1WQR9iah/qOgQ==", + "requires": { + "@vuepress/core": "2.0.0-beta.51", + "@vuepress/shared": "2.0.0-beta.51", + "@vuepress/utils": "2.0.0-beta.51", + "cac": "^6.7.12", + "chokidar": "^3.5.3", + "envinfo": "^7.8.1", + "esbuild": "^0.15.5" + }, + "dependencies": { + "esbuild": { + "version": "0.15.13", + "resolved": "https://npm.corp.kuaishou.com/esbuild/-/esbuild-0.15.13.tgz", + "integrity": "sha512-Cu3SC84oyzzhrK/YyN4iEVy2jZu5t2fz66HEOShHURcjSkOSAVL8C/gfUT+lDJxkVHpg8GZ10DD0rMHRPqMFaQ==", + "requires": { + "@esbuild/android-arm": "0.15.13", + "@esbuild/linux-loong64": "0.15.13", + "esbuild-android-64": "0.15.13", + "esbuild-android-arm64": "0.15.13", + "esbuild-darwin-64": "0.15.13", + "esbuild-darwin-arm64": "0.15.13", + "esbuild-freebsd-64": "0.15.13", + "esbuild-freebsd-arm64": "0.15.13", + "esbuild-linux-32": "0.15.13", + "esbuild-linux-64": "0.15.13", + "esbuild-linux-arm": "0.15.13", + "esbuild-linux-arm64": "0.15.13", + "esbuild-linux-mips64le": "0.15.13", + "esbuild-linux-ppc64le": "0.15.13", + "esbuild-linux-riscv64": "0.15.13", + "esbuild-linux-s390x": "0.15.13", + "esbuild-netbsd-64": "0.15.13", + "esbuild-openbsd-64": "0.15.13", + "esbuild-sunos-64": "0.15.13", + "esbuild-windows-32": "0.15.13", + "esbuild-windows-64": "0.15.13", + "esbuild-windows-arm64": "0.15.13" + } + }, + "esbuild-darwin-64": { + "version": "0.15.13", + "resolved": "https://npm.corp.kuaishou.com/esbuild-darwin-64/-/esbuild-darwin-64-0.15.13.tgz", + "integrity": "sha512-WAx7c2DaOS6CrRcoYCgXgkXDliLnFv3pQLV6GeW1YcGEZq2Gnl8s9Pg7ahValZkpOa0iE/ojRVQ87sbUhF1Cbg==", + "optional": true + } + } + }, + "@vuepress/client": { + "version": "2.0.0-beta.51", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fclient/-/client-2.0.0-beta.51.tgz", + "integrity": "sha512-5iQV765kwR6/eIZPMlV5O34DUvHCMjF7zpr91x5i8BEAg7A0jfHvdrwNavAKWiQEU77f4dIBXtWy6nwX+lgmbw==", + "requires": { + "@vue/devtools-api": "^6.2.1", + "@vuepress/shared": "2.0.0-beta.51", + "vue": "^3.2.37", + "vue-router": "^4.1.4" + } + }, + "@vuepress/core": { + "version": "2.0.0-beta.51", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fcore/-/core-2.0.0-beta.51.tgz", + "integrity": "sha512-j0KI6PBsf0doMZPXa1H4Vi88NSTrpsnSVhMgcr9gw81atgKl+I13SykHpWZRRkugTRCgL1IOpyY68cond58eeA==", + "requires": { + "@vuepress/client": "2.0.0-beta.51", + "@vuepress/markdown": "2.0.0-beta.51", + "@vuepress/shared": "2.0.0-beta.51", + "@vuepress/utils": "2.0.0-beta.51", + "vue": "^3.2.37" + } + }, + "@vuepress/markdown": { + "version": "2.0.0-beta.51", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fmarkdown/-/markdown-2.0.0-beta.51.tgz", + "integrity": "sha512-q11+6j3OAutuV0LkH7BGdhh4jKOMKMiiX8bKD366mzr7JkjHb34xd+WhM394B7zh410CtYYWvAWS+m9RJGQ/5w==", + "requires": { + "@mdit-vue/plugin-component": "^0.10.0", + "@mdit-vue/plugin-frontmatter": "^0.10.0", + "@mdit-vue/plugin-headers": "^0.10.0", + "@mdit-vue/plugin-sfc": "^0.10.0", + "@mdit-vue/plugin-title": "^0.10.0", + "@mdit-vue/plugin-toc": "^0.10.0", + "@mdit-vue/shared": "^0.10.0", + "@mdit-vue/types": "^0.10.0", + "@types/markdown-it": "^12.2.3", + "@types/markdown-it-emoji": "^2.0.2", + "@vuepress/shared": "2.0.0-beta.51", + "@vuepress/utils": "2.0.0-beta.51", + "markdown-it": "^13.0.1", + "markdown-it-anchor": "^8.6.4", + "markdown-it-emoji": "^2.0.2", + "mdurl": "^1.0.1" + } + }, + "@vuepress/plugin-active-header-links": { + "version": "2.0.0-beta.51", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fplugin-active-header-links/-/plugin-active-header-links-2.0.0-beta.51.tgz", + "integrity": "sha512-AV9qLVSD3e9Xnp+2Vu9tegUdzbm9HD2bF6pRC3xEdW8GzRlsHBTfMpFwfsKvkKofk90+4ICkPWY9mY95P4mNSw==", + "requires": { + "@vuepress/client": "2.0.0-beta.51", + "@vuepress/core": "2.0.0-beta.51", + "@vuepress/utils": "2.0.0-beta.51", + "ts-debounce": "^4.0.0", + "vue": "^3.2.37", + "vue-router": "^4.1.4" + } + }, + "@vuepress/plugin-back-to-top": { + "version": "2.0.0-beta.51", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fplugin-back-to-top/-/plugin-back-to-top-2.0.0-beta.51.tgz", + "integrity": "sha512-VwTkJ9iV5vUFz93RURzk/4wnPPgq0OO4KUB4b9WCWlGg+4iD7Yo2zXnqaGe7Gh7hkQjbrysuPbZdtggbmnxMdg==", + "requires": { + "@vuepress/client": "2.0.0-beta.51", + "@vuepress/core": "2.0.0-beta.51", + "@vuepress/utils": "2.0.0-beta.51", + "ts-debounce": "^4.0.0", + "vue": "^3.2.37" + } + }, + "@vuepress/plugin-container": { + "version": "2.0.0-beta.51", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fplugin-container/-/plugin-container-2.0.0-beta.51.tgz", + "integrity": "sha512-81FzcStQs5A0VTReWsS/CSVpaxfcAA5Gj0pzbcc6/QpNTa9Gaj2UywbcWOLIk3wozCrKucCLu8TSL31cj0+LqA==", + "requires": { + "@types/markdown-it": "^12.2.3", + "@vuepress/core": "2.0.0-beta.51", + "@vuepress/markdown": "2.0.0-beta.51", + "@vuepress/shared": "2.0.0-beta.51", + "@vuepress/utils": "2.0.0-beta.51", + "markdown-it": "^13.0.1", + "markdown-it-container": "^3.0.0" + } + }, + "@vuepress/plugin-external-link-icon": { + "version": "2.0.0-beta.51", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fplugin-external-link-icon/-/plugin-external-link-icon-2.0.0-beta.51.tgz", + "integrity": "sha512-6ITMmvD/6DX2MLCCnGOJBXkB+rFbRkVboWzBibCzITHfUORsmFwLMjmrDxnIbZl74F0VZ7533zk/BRJIy4uYLA==", + "requires": { + "@vuepress/client": "2.0.0-beta.51", + "@vuepress/core": "2.0.0-beta.51", + "@vuepress/markdown": "2.0.0-beta.51", + "@vuepress/shared": "2.0.0-beta.51", + "@vuepress/utils": "2.0.0-beta.51", + "vue": "^3.2.37" + } + }, + "@vuepress/plugin-git": { + "version": "2.0.0-beta.51", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fplugin-git/-/plugin-git-2.0.0-beta.51.tgz", + "integrity": "sha512-lw45Vjg5pI25zNgPOTBcIrBNhNB9jU9o/j+fhb5TnW1j9hX3mwWDeJhdWLLErodSlmnTVdyL3e7qNKJpKo1Wmg==", + "requires": { + "@vuepress/core": "2.0.0-beta.51", + "@vuepress/utils": "2.0.0-beta.51", + "execa": "^6.1.0" + } + }, + "@vuepress/plugin-google-analytics": { + "version": "1.9.7", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fplugin-google-analytics/-/plugin-google-analytics-1.9.7.tgz", + "integrity": "sha512-ZpsYrk23JdwbcJo9xArVcdqYHt5VyTX9UN9bLqNrLJRgRTV0X2jKUkM63dlKTJMpBf+0K1PQMJbGBXgOO7Yh0Q==", + "requires": { + "@vuepress/types": "1.9.7" + } + }, + "@vuepress/plugin-medium-zoom": { + "version": "2.0.0-beta.51", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fplugin-medium-zoom/-/plugin-medium-zoom-2.0.0-beta.51.tgz", + "integrity": "sha512-pgsKfsuEazHOLEE0xAWWi2McrygR5shQ1Xi4mZzn1MD9cn5o4JKbJxp2BlUs8q+yG5QMUQ0ugAJ9yRgCkMkUBw==", + "requires": { + "@vuepress/client": "2.0.0-beta.51", + "@vuepress/core": "2.0.0-beta.51", + "@vuepress/utils": "2.0.0-beta.51", + "medium-zoom": "^1.0.6", + "vue": "^3.2.37" + } + }, + "@vuepress/plugin-nprogress": { + "version": "2.0.0-beta.51", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fplugin-nprogress/-/plugin-nprogress-2.0.0-beta.51.tgz", + "integrity": "sha512-eu3IxuiCS5y+Za9l86xKrNSo13VseoZCnAPSIqZj6I6wvyWI62ffCP5NztdR0Z9izp0g/FL6KBtBlwN1PnkY7A==", + "requires": { + "@vuepress/client": "2.0.0-beta.51", + "@vuepress/core": "2.0.0-beta.51", + "@vuepress/utils": "2.0.0-beta.51", + "vue": "^3.2.37", + "vue-router": "^4.1.4" + } + }, + "@vuepress/plugin-palette": { + "version": "2.0.0-beta.51", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fplugin-palette/-/plugin-palette-2.0.0-beta.51.tgz", + "integrity": "sha512-Q3uFQxiPC7W3JKlyoAT0Nu1bZy6PXXUadjzwpk8dcHDsh+OmdUQqdNfeU1hc4pPQjHIiGdsBAnnGnb+8dNXqkw==", + "requires": { + "@vuepress/core": "2.0.0-beta.51", + "@vuepress/utils": "2.0.0-beta.51", + "chokidar": "^3.5.3" + } + }, + "@vuepress/plugin-prismjs": { + "version": "2.0.0-beta.51", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fplugin-prismjs/-/plugin-prismjs-2.0.0-beta.51.tgz", + "integrity": "sha512-C1kyhWYlehZVuOQK6H8eyo2Mw8Lj3wAA9Lp3YbX9bt0qNf4kfzviEQL+mTrgzM+j1Jpaijjj6nZS0Ev42mO+kw==", + "requires": { + "@vuepress/core": "2.0.0-beta.51", + "prismjs": "^1.28.0" + } + }, + "@vuepress/plugin-register-components": { + "version": "2.0.0-beta.51", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fplugin-register-components/-/plugin-register-components-2.0.0-beta.51.tgz", + "integrity": "sha512-9zZgv37gdQlDwpZnif/CChJvKJVeHQ2LSbkw0ab6L5GIjrTegDBc3AHXjoNJBIG80Xo+/fAdR1dWjAlR7YfgKg==", + "requires": { + "@vuepress/core": "2.0.0-beta.51", + "@vuepress/utils": "2.0.0-beta.51", + "chokidar": "^3.5.3" + } + }, + "@vuepress/plugin-search": { + "version": "2.0.0-beta.51", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fplugin-search/-/plugin-search-2.0.0-beta.51.tgz", + "integrity": "sha512-LUKD1WOhesfbjRmy+3wPz27ZOat5sEL7nRVFrmoZNGjqGoUSuh/AFnd04z2utVEoceeuWWOluVmpoYKhxJVMFQ==", + "requires": { + "@vuepress/client": "2.0.0-beta.51", + "@vuepress/core": "2.0.0-beta.51", + "@vuepress/shared": "2.0.0-beta.51", + "@vuepress/utils": "2.0.0-beta.51", + "chokidar": "^3.5.3", + "vue": "^3.2.37", + "vue-router": "^4.1.4" + } + }, + "@vuepress/plugin-shiki": { + "version": "2.0.0-beta.5", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fplugin-shiki/-/plugin-shiki-2.0.0-beta.5.tgz", + "integrity": "sha1-hus6iRMdupx50bPgvQODr55YFII=", + "requires": { + "@vuepress/core": "2.0.0-beta.5", + "shiki": "^0.9.3" + }, + "dependencies": { + "@vuepress/client": { + "version": "2.0.0-beta.5", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fclient/-/client-2.0.0-beta.5.tgz", + "integrity": "sha1-7XA3Bn9tlaXaYo0LmPqN9WPEY/I=", + "requires": { + "@vuepress/shared": "2.0.0-beta.4", + "vue": "^3.0.7", + "vue-router": "^4.0.5" + } + }, + "@vuepress/core": { + "version": "2.0.0-beta.5", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fcore/-/core-2.0.0-beta.5.tgz", + "integrity": "sha1-g+GqN+8MP8pQmFJuIAhTuaouFJo=", + "requires": { + "@vuepress/client": "2.0.0-beta.5", + "@vuepress/markdown": "2.0.0-beta.5", + "@vuepress/shared": "2.0.0-beta.4", + "@vuepress/utils": "2.0.0-beta.5", + "gray-matter": "^4.0.2", + "toml": "^3.0.0" + } + }, + "@vuepress/markdown": { + "version": "2.0.0-beta.5", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fmarkdown/-/markdown-2.0.0-beta.5.tgz", + "integrity": "sha1-YnodCZmJ748EJLBLVy5eISpTOY4=", + "requires": { + "@types/markdown-it": "^12.0.1", + "@vuepress/shared": "2.0.0-beta.4", + "@vuepress/utils": "2.0.0-beta.5", + "markdown-it": "^12.0.4", + "markdown-it-anchor": "^7.1.0", + "markdown-it-emoji": "^2.0.0" + } + }, + "@vuepress/shared": { + "version": "2.0.0-beta.4", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fshared/-/shared-2.0.0-beta.4.tgz", + "integrity": "sha1-G+W4fSqDuZzCxr5upwS6RMtQ7FQ=", + "requires": { + "@vue/shared": "^3.0.7" + } + }, + "@vuepress/utils": { + "version": "2.0.0-beta.5", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2futils/-/utils-2.0.0-beta.5.tgz", + "integrity": "sha1-jxcEqCjYLozVm9tGfGzaOKusqDE=", + "requires": { + "@types/debug": "^4.1.5", + "@types/fs-extra": "^9.0.8", + "@types/hash-sum": "^1.0.0", + "@vuepress/shared": "2.0.0-beta.4", + "chalk": "^4.1.0", + "debug": "^4.3.1", + "fs-extra": "^9.1.0", + "globby": "^11.0.2", + "hash-sum": "^2.0.0", + "ora": "^5.4.0", + "upath": "^2.0.1" + } + }, + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://npm.corp.kuaishou.com/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha1-CCyyyJyf6GWaMRpTvWpNxTAdswQ=" + }, + "bl": { + "version": "4.1.0", + "resolved": "https://npm.corp.kuaishou.com/bl/-/bl-4.1.0.tgz", + "integrity": "sha1-RRU1JkGCvsL7vIOmKrmM8R2fezo=", + "requires": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "buffer": { + "version": "5.7.1", + "resolved": "https://npm.corp.kuaishou.com/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://npm.corp.kuaishou.com/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "cli-cursor": { + "version": "3.1.0", + "resolved": "https://npm.corp.kuaishou.com/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha1-JkMFp65JDR0Dvwybp8kl0XU68wc=", + "requires": { + "restore-cursor": "^3.1.0" + } + }, + "debug": { + "version": "4.3.4", + "resolved": "https://npm.corp.kuaishou.com/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "requires": { + "ms": "2.1.2" + } + }, + "entities": { + "version": "2.1.0", + "resolved": "https://npm.corp.kuaishou.com/entities/-/entities-2.1.0.tgz", + "integrity": "sha1-mS0xKc999ocLlsV4WMJJoSD4uLU=" + }, + "fs-extra": { + "version": "9.1.0", + "resolved": "https://npm.corp.kuaishou.com/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha1-WVRGDHZKjaIJS6NVS/g55rmnyG0=", + "requires": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, + "globby": { + "version": "11.1.0", + "resolved": "https://npm.corp.kuaishou.com/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "requires": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + } + }, + "is-interactive": { + "version": "1.0.0", + "resolved": "https://npm.corp.kuaishou.com/is-interactive/-/is-interactive-1.0.0.tgz", + "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==" + }, + "is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://npm.corp.kuaishou.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==" + }, + "linkify-it": { + "version": "3.0.3", + "resolved": "https://npm.corp.kuaishou.com/linkify-it/-/linkify-it-3.0.3.tgz", + "integrity": "sha512-ynTsyrFSdE5oZ/O9GEf00kPngmOfVwazR5GKDq6EYfhlpFug3J2zybX56a2PRRpc9P+FuSoGNAwjlbDs9jJBPQ==", + "requires": { + "uc.micro": "^1.0.1" + } + }, + "log-symbols": { + "version": "4.1.0", + "resolved": "https://npm.corp.kuaishou.com/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha1-P727lbRoOsn8eFER55LlWNSr1QM=", + "requires": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + } + }, + "markdown-it": { + "version": "12.3.2", + "resolved": "https://npm.corp.kuaishou.com/markdown-it/-/markdown-it-12.3.2.tgz", + "integrity": "sha512-TchMembfxfNVpHkbtriWltGWc+m3xszaRD0CZup7GFFhzIgQqxIfn3eGj1yZpfuflzPvfkt611B2Q/Bsk1YnGg==", + "requires": { + "argparse": "^2.0.1", + "entities": "~2.1.0", + "linkify-it": "^3.0.1", + "mdurl": "^1.0.1", + "uc.micro": "^1.0.5" + } + }, + "markdown-it-anchor": { + "version": "7.1.0", + "resolved": "https://npm.corp.kuaishou.com/markdown-it-anchor/-/markdown-it-anchor-7.1.0.tgz", + "integrity": "sha1-MPshSXv1noP/TR3cBS2CGWLiSJ4=", + "requires": {} + }, + "ms": { + "version": "2.1.2", + "resolved": "https://npm.corp.kuaishou.com/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "ora": { + "version": "5.4.1", + "resolved": "https://npm.corp.kuaishou.com/ora/-/ora-5.4.1.tgz", + "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", + "requires": { + "bl": "^4.1.0", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.5.0", + "is-interactive": "^1.0.0", + "is-unicode-supported": "^0.1.0", + "log-symbols": "^4.1.0", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" + } + }, + "restore-cursor": { + "version": "3.1.0", + "resolved": "https://npm.corp.kuaishou.com/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "requires": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + } + }, + "slash": { + "version": "3.0.0", + "resolved": "https://npm.corp.kuaishou.com/slash/-/slash-3.0.0.tgz", + "integrity": "sha1-ZTm+hwwWWtvVJAIg2+Nh8bxNRjQ=" + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://npm.corp.kuaishou.com/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha1-nibGPTD1NEPpSJSVshBdN7Z6hdk=", + "requires": { + "ansi-regex": "^5.0.1" + } + } + } + }, + "@vuepress/plugin-theme-data": { + "version": "2.0.0-beta.51", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fplugin-theme-data/-/plugin-theme-data-2.0.0-beta.51.tgz", + "integrity": "sha512-sfsZRhb7zZATqY1+BXkynZZ7HEZnBZEd4iuEyCNpWEnjwa7/qjPSKJyAb/M0a2SLgN2/UcPdM5URMfE1mV/4QQ==", + "requires": { + "@vue/devtools-api": "^6.2.1", + "@vuepress/client": "2.0.0-beta.51", + "@vuepress/core": "2.0.0-beta.51", + "@vuepress/shared": "2.0.0-beta.51", + "@vuepress/utils": "2.0.0-beta.51", + "vue": "^3.2.37" + } + }, + "@vuepress/shared": { + "version": "2.0.0-beta.51", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fshared/-/shared-2.0.0-beta.51.tgz", + "integrity": "sha512-0dbJp0M+d/schkD+xUI7MwwoyJRtFxH3QEYMcLTKhgkaNFjgzlIEG/coh1QywVIoQGX9cGQSa8PZk8BeMeePug==", + "requires": { + "@mdit-vue/types": "^0.10.0", + "@vue/shared": "^3.2.37" + } + }, + "@vuepress/theme-default": { + "version": "2.0.0-beta.51", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2ftheme-default/-/theme-default-2.0.0-beta.51.tgz", + "integrity": "sha512-k1hbvsnPgcpqyBZc54OOytBD2UlL2IlThnasiRxvoV5qEibVcS07JzF7Dydk8BmrcylHEkhGTe2oAuUXwVs7Dg==", + "requires": { + "@vuepress/client": "2.0.0-beta.51", + "@vuepress/core": "2.0.0-beta.51", + "@vuepress/plugin-active-header-links": "2.0.0-beta.51", + "@vuepress/plugin-back-to-top": "2.0.0-beta.51", + "@vuepress/plugin-container": "2.0.0-beta.51", + "@vuepress/plugin-external-link-icon": "2.0.0-beta.51", + "@vuepress/plugin-git": "2.0.0-beta.51", + "@vuepress/plugin-medium-zoom": "2.0.0-beta.51", + "@vuepress/plugin-nprogress": "2.0.0-beta.51", + "@vuepress/plugin-palette": "2.0.0-beta.51", + "@vuepress/plugin-prismjs": "2.0.0-beta.51", + "@vuepress/plugin-theme-data": "2.0.0-beta.51", + "@vuepress/shared": "2.0.0-beta.51", + "@vuepress/utils": "2.0.0-beta.51", + "@vueuse/core": "^9.1.0", + "sass": "^1.54.5", + "vue": "^3.2.37", + "vue-router": "^4.1.4" + } + }, + "@vuepress/types": { + "version": "1.9.7", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2ftypes/-/types-1.9.7.tgz", + "integrity": "sha512-moLQzkX3ED2o18dimLemUm7UVDKxhcrJmGt5C0Ng3xxrLPaQu7UqbROtEKB3YnMRt4P/CA91J+Ck+b9LmGabog==", + "requires": { + "@types/markdown-it": "^10.0.0", + "@types/webpack-dev-server": "^3", + "webpack-chain": "^6.0.0" + }, + "dependencies": { + "@types/markdown-it": { + "version": "10.0.3", + "resolved": "https://npm.corp.kuaishou.com/@types%2fmarkdown-it/-/markdown-it-10.0.3.tgz", + "integrity": "sha1-qYANFLESwX8d527DPv+GSkgV7sc=", + "requires": { + "@types/highlight.js": "^9.7.0", + "@types/linkify-it": "*", + "@types/mdurl": "*", + "highlight.js": "^9.7.0" + } + } + } + }, + "@vuepress/utils": { + "version": "2.0.0-beta.51", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2futils/-/utils-2.0.0-beta.51.tgz", + "integrity": "sha512-BtWK38047GNk3CnzAN9dxm8n7XplHqOU/DhW4BYO84Czl6XZh0NExPny3aPf7SL8roy03eAzF0dgPgmug6whIQ==", + "requires": { + "@types/debug": "^4.1.7", + "@types/fs-extra": "^9.0.13", + "@types/hash-sum": "^1.0.0", + "@vuepress/shared": "2.0.0-beta.51", + "chalk": "^5.0.1", + "debug": "^4.3.4", + "fs-extra": "^10.1.0", + "globby": "^13.1.2", + "hash-sum": "^2.0.0", + "ora": "^6.1.2", + "upath": "^2.0.1" + }, + "dependencies": { + "debug": { + "version": "4.3.4", + "resolved": "https://npm.corp.kuaishou.com/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "requires": { + "ms": "2.1.2" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://npm.corp.kuaishou.com/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + } + } + }, + "@vueuse/core": { + "version": "9.4.0", + "resolved": "https://npm.corp.kuaishou.com/@vueuse%2fcore/-/core-9.4.0.tgz", + "integrity": "sha512-JzgenGj1ZF2BHOen5rsFiAyyI9sXAv7aKhNLlm9b7SwYQeKTcxTWdhudonURCSP3Egl9NQaRBzes2lv/1JUt/Q==", + "requires": { + "@types/web-bluetooth": "^0.0.16", + "@vueuse/metadata": "9.4.0", + "@vueuse/shared": "9.4.0", + "vue-demi": "*" + } + }, + "@vueuse/metadata": { + "version": "9.4.0", + "resolved": "https://npm.corp.kuaishou.com/@vueuse%2fmetadata/-/metadata-9.4.0.tgz", + "integrity": "sha512-7GKMdGAsJyQJl35MYOz/RDpP0FxuiZBRDSN79QIPbdqYx4Sd0sVTnIC68KJ6Oln0t0SouvSUMvRHuno216Ud2Q==" + }, + "@vueuse/shared": { + "version": "9.4.0", + "resolved": "https://npm.corp.kuaishou.com/@vueuse%2fshared/-/shared-9.4.0.tgz", + "integrity": "sha512-fTuem51KwMCnqUKkI8B57qAIMcFovtGgsCtAeqxIzH3i6nE9VYge+gVfneNHAAy7lj8twbkNfqQSygOPJTm4tQ==", + "requires": { + "vue-demi": "*" + } + }, + "@waline/client": { + "version": "2.13.0", + "resolved": "https://npm.corp.kuaishou.com/@waline%2fclient/-/client-2.13.0.tgz", + "integrity": "sha512-7NrEVpAaT79PTCjjK06WEBRu8gR+/jDU40kn1D4SOJB3fEfvZg1Ztzf2mj1xqy3r4xdOrJ+KWFD88xvPVU96ZA==", + "requires": { + "@vueuse/core": "^9.3.0", + "autosize": "^5.0.1", + "marked": "^4.1.1", + "vue": "^3.2.40" + }, + "dependencies": { + "autosize": { + "version": "5.0.1", + "resolved": "https://npm.corp.kuaishou.com/autosize/-/autosize-5.0.1.tgz", + "integrity": "sha1-7SabD6m360dicEihuzKZ6Z4AOg8=" + } + } + }, + "@webassemblyjs/ast": { + "version": "1.11.1", + "resolved": "https://npm.corp.kuaishou.com/@webassemblyjs%2fast/-/ast-1.11.1.tgz", + "integrity": "sha1-K/12fq4aaZb0Mv9+jX/HVnnAtqc=", + "requires": { + "@webassemblyjs/helper-numbers": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1" + } + }, + "@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.1", + "resolved": "https://npm.corp.kuaishou.com/@webassemblyjs%2ffloating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz", + "integrity": "sha1-9sYacF8P16auyqToGY8j2dwXnk8=" + }, + "@webassemblyjs/helper-api-error": { + "version": "1.11.1", + "resolved": "https://npm.corp.kuaishou.com/@webassemblyjs%2fhelper-api-error/-/helper-api-error-1.11.1.tgz", + "integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==" + }, + "@webassemblyjs/helper-buffer": { + "version": "1.11.1", + "resolved": "https://npm.corp.kuaishou.com/@webassemblyjs%2fhelper-buffer/-/helper-buffer-1.11.1.tgz", + "integrity": "sha1-gyqQDrREiEzemnytRn+BUA9eWrU=" + }, + "@webassemblyjs/helper-numbers": { + "version": "1.11.1", + "resolved": "https://npm.corp.kuaishou.com/@webassemblyjs%2fhelper-numbers/-/helper-numbers-1.11.1.tgz", + "integrity": "sha1-ZNgdohn7u6HjvRv8dPboxOEKYq4=", + "requires": { + "@webassemblyjs/floating-point-hex-parser": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.1", + "resolved": "https://npm.corp.kuaishou.com/@webassemblyjs%2fhelper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz", + "integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==" + }, + "@webassemblyjs/helper-wasm-section": { + "version": "1.11.1", + "resolved": "https://npm.corp.kuaishou.com/@webassemblyjs%2fhelper-wasm-section/-/helper-wasm-section-1.11.1.tgz", + "integrity": "sha1-Ie4GWntjXzGec48N1zv72igcCXo=", + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1" + } + }, + "@webassemblyjs/ieee754": { + "version": "1.11.1", + "resolved": "https://npm.corp.kuaishou.com/@webassemblyjs%2fieee754/-/ieee754-1.11.1.tgz", + "integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==", + "requires": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "@webassemblyjs/leb128": { + "version": "1.11.1", + "resolved": "https://npm.corp.kuaishou.com/@webassemblyjs%2fleb128/-/leb128-1.11.1.tgz", + "integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==", + "requires": { + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/utf8": { + "version": "1.11.1", + "resolved": "https://npm.corp.kuaishou.com/@webassemblyjs%2futf8/-/utf8-1.11.1.tgz", + "integrity": "sha1-0fi3ZDaefG5rrjUOhU3smlnwo/8=" + }, + "@webassemblyjs/wasm-edit": { + "version": "1.11.1", + "resolved": "https://npm.corp.kuaishou.com/@webassemblyjs%2fwasm-edit/-/wasm-edit-1.11.1.tgz", + "integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==", + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/helper-wasm-section": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-opt": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1", + "@webassemblyjs/wast-printer": "1.11.1" + } + }, + "@webassemblyjs/wasm-gen": { + "version": "1.11.1", + "resolved": "https://npm.corp.kuaishou.com/@webassemblyjs%2fwasm-gen/-/wasm-gen-1.11.1.tgz", + "integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==", + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" + } + }, + "@webassemblyjs/wasm-opt": { + "version": "1.11.1", + "resolved": "https://npm.corp.kuaishou.com/@webassemblyjs%2fwasm-opt/-/wasm-opt-1.11.1.tgz", + "integrity": "sha1-ZXtMIgL0zzs0X4pMZGHIwkGJhfI=", + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1" + } + }, + "@webassemblyjs/wasm-parser": { + "version": "1.11.1", + "resolved": "https://npm.corp.kuaishou.com/@webassemblyjs%2fwasm-parser/-/wasm-parser-1.11.1.tgz", + "integrity": "sha1-hspzRTT0F+m9PGfHocddi+QfsZk=", + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" + } + }, + "@webassemblyjs/wast-printer": { + "version": "1.11.1", + "resolved": "https://npm.corp.kuaishou.com/@webassemblyjs%2fwast-printer/-/wast-printer-1.11.1.tgz", + "integrity": "sha1-0Mc77ajuxUJvEK6O9VzuXnCEwvA=", + "requires": { + "@webassemblyjs/ast": "1.11.1", + "@xtuc/long": "4.2.2" + } + }, + "@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://npm.corp.kuaishou.com/@xtuc%2fieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha1-7vAUoxRa5Hehy8AM0eVSM23Ot5A=" + }, + "@xtuc/long": { + "version": "4.2.2", + "resolved": "https://npm.corp.kuaishou.com/@xtuc%2flong/-/long-4.2.2.tgz", + "integrity": "sha1-0pHGpOl5ibXGHZrPOWrk/hM6cY0=" + }, + "accepts": { + "version": "1.3.8", + "resolved": "https://npm.corp.kuaishou.com/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "requires": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + } + }, + "acorn": { + "version": "8.8.1", + "resolved": "https://npm.corp.kuaishou.com/acorn/-/acorn-8.8.1.tgz", + "integrity": "sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==" + }, + "acorn-import-assertions": { + "version": "1.8.0", + "resolved": "https://npm.corp.kuaishou.com/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz", + "integrity": "sha1-uitZOc5iwjjbbZPYHJsRGym4Vek=", + "requires": {} + }, + "acorn-node": { + "version": "1.8.2", + "resolved": "https://npm.corp.kuaishou.com/acorn-node/-/acorn-node-1.8.2.tgz", + "integrity": "sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==", + "requires": { + "acorn": "^7.0.0", + "acorn-walk": "^7.0.0", + "xtend": "^4.0.2" + }, + "dependencies": { + "acorn": { + "version": "7.4.1", + "resolved": "https://npm.corp.kuaishou.com/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==" + } + } + }, + "acorn-walk": { + "version": "7.2.0", + "resolved": "https://npm.corp.kuaishou.com/acorn-walk/-/acorn-walk-7.2.0.tgz", + "integrity": "sha1-DeiJpgEgOQmw++B7iTjcIdLpZ7w=" + }, + "ajv": { + "version": "8.11.0", + "resolved": "https://npm.corp.kuaishou.com/ajv/-/ajv-8.11.0.tgz", + "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "ajv-formats": { + "version": "2.1.1", + "resolved": "https://npm.corp.kuaishou.com/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha1-bmaUAGWet0lzu/LjMycYCgmWtSA=", + "requires": { + "ajv": "^8.0.0" + } + }, + "ajv-keywords": { + "version": "5.1.0", + "resolved": "https://npm.corp.kuaishou.com/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "requires": { + "fast-deep-equal": "^3.1.3" + } + }, + "ansi-html-community": { + "version": "0.0.8", + "resolved": "https://npm.corp.kuaishou.com/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha1-afvE1sy+OD+XNpNK40w/gpDxv0E=" + }, + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://npm.corp.kuaishou.com/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://npm.corp.kuaishou.com/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "anymatch": { + "version": "3.1.2", + "resolved": "https://npm.corp.kuaishou.com/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha1-wFV8CWrzLxBhmPT04qODU343hxY=", + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "arg": { + "version": "5.0.2", + "resolved": "https://npm.corp.kuaishou.com/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==" + }, + "argparse": { + "version": "2.0.1", + "resolved": "https://npm.corp.kuaishou.com/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha1-JG9Q88p4oyQPbJl+ipvR6sSeSzg=" + }, + "array-flatten": { + "version": "1.1.1", + "resolved": "https://npm.corp.kuaishou.com/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" + }, + "array-union": { + "version": "2.1.0", + "resolved": "https://npm.corp.kuaishou.com/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha1-t5hCCtvrHego2ErNii4j0+/oXo0=" + }, + "ascli": { + "version": "1.0.1", + "resolved": "https://npm.corp.kuaishou.com/ascli/-/ascli-1.0.1.tgz", + "integrity": "sha512-JGQaNxpaCJz9Bd1JvVaFIHuWn9S+l3xhN17R0V/vmUDiGE0QngNMXhjlqpwqV+91plWz9Fg+Lt28Lj7p5vjs8A==", + "requires": { + "colour": "~0.7.1", + "optjs": "~3.2.2" + } + }, + "assignment": { + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/assignment/-/assignment-2.0.0.tgz", + "integrity": "sha1-/9F7Ib9dayLnd7mJaBqBVFaj3T4=" + }, + "async-limiter": { + "version": "1.0.1", + "resolved": "https://npm.corp.kuaishou.com/async-limiter/-/async-limiter-1.0.1.tgz", + "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==" + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://npm.corp.kuaishou.com/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + }, + "at-least-node": { + "version": "1.0.0", + "resolved": "https://npm.corp.kuaishou.com/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==" + }, + "autoprefixer": { + "version": "10.4.13", + "resolved": "https://npm.corp.kuaishou.com/autoprefixer/-/autoprefixer-10.4.13.tgz", + "integrity": "sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==", + "requires": { + "browserslist": "^4.21.4", + "caniuse-lite": "^1.0.30001426", + "fraction.js": "^4.2.0", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" + } + }, + "autosize": { + "version": "4.0.4", + "resolved": "https://npm.corp.kuaishou.com/autosize/-/autosize-4.0.4.tgz", + "integrity": "sha1-kk8ThTpGa2M7kwkzCDOTbYvMzgM=" + }, + "balajs": { + "version": "1.0.10", + "resolved": "https://npm.corp.kuaishou.com/balajs/-/balajs-1.0.10.tgz", + "integrity": "sha1-ZCDfHiT8cq9bXpWJyv4ShSVW0Es=" + }, + "balalaika": { + "version": "1.0.1", + "resolved": "https://npm.corp.kuaishou.com/balalaika/-/balalaika-1.0.1.tgz", + "integrity": "sha1-BmQUeiV+oq1K5mRRcR5SZoMNUdk=" + }, + "balanced-match": { + "version": "1.0.2", + "resolved": "https://npm.corp.kuaishou.com/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha1-6D46fj8wCzTLnYf2FfoMvzV2kO4=" + }, + "base64-arraybuffer": { + "version": "0.1.5", + "resolved": "https://npm.corp.kuaishou.com/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz", + "integrity": "sha1-c5JncZI7Whl0etZmqlzUv5xunOg=" + }, + "base64-js": { + "version": "1.5.1", + "resolved": "https://npm.corp.kuaishou.com/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha1-GxtEAWClv3rUC2UPCVljSBkDkwo=" + }, + "batch": { + "version": "0.6.1", + "resolved": "https://npm.corp.kuaishou.com/batch/-/batch-0.6.1.tgz", + "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==" + }, + "big.js": { + "version": "5.2.2", + "resolved": "https://npm.corp.kuaishou.com/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha1-ZfCvOC9Xi83HQr2cKB6cstd2gyg=" + }, + "binary-extensions": { + "version": "2.2.0", + "resolved": "https://npm.corp.kuaishou.com/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==" + }, + "bl": { + "version": "5.1.0", + "resolved": "https://npm.corp.kuaishou.com/bl/-/bl-5.1.0.tgz", + "integrity": "sha512-tv1ZJHLfTDnXE6tMHv73YgSJaWR2AFuPwMntBe7XL/GBFHnT0CLnsHMogfk5+GzCDC5ZWarSCYaIGATZt9dNsQ==", + "requires": { + "buffer": "^6.0.3", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "blueimp-md5": { + "version": "2.19.0", + "resolved": "https://npm.corp.kuaishou.com/blueimp-md5/-/blueimp-md5-2.19.0.tgz", + "integrity": "sha512-DRQrD6gJyy8FbiE4s+bDoXS9hiW3Vbx5uCdwvcCf3zLHL+Iv7LtGHLpr+GZV8rHG8tK766FGYBwRbu8pELTt+w==" + }, + "body-parser": { + "version": "1.20.1", + "resolved": "https://npm.corp.kuaishou.com/body-parser/-/body-parser-1.20.1.tgz", + "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", + "requires": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + } + }, + "bonjour-service": { + "version": "1.0.14", + "resolved": "https://npm.corp.kuaishou.com/bonjour-service/-/bonjour-service-1.0.14.tgz", + "integrity": "sha512-HIMbgLnk1Vqvs6B4Wq5ep7mxvj9sGz5d1JJyDNSGNIdA/w2MCz6GTjWTdjqOJV1bEPj+6IkxDvWNFKEBxNt4kQ==", + "requires": { + "array-flatten": "^2.1.2", + "dns-equal": "^1.0.0", + "fast-deep-equal": "^3.1.3", + "multicast-dns": "^7.2.5" + }, + "dependencies": { + "array-flatten": { + "version": "2.1.2", + "resolved": "https://npm.corp.kuaishou.com/array-flatten/-/array-flatten-2.1.2.tgz", + "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==" + } + } + }, + "boolbase": { + "version": "1.0.0", + "resolved": "https://npm.corp.kuaishou.com/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://npm.corp.kuaishou.com/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha1-PH/L9SnYcibz0vUrlm/1Jx60Qd0=", + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "3.0.2", + "resolved": "https://npm.corp.kuaishou.com/braces/-/braces-3.0.2.tgz", + "integrity": "sha1-NFThpGLujVmeI23zNs2epPiv4Qc=", + "requires": { + "fill-range": "^7.0.1" + } + }, + "browserslist": { + "version": "4.21.4", + "resolved": "https://npm.corp.kuaishou.com/browserslist/-/browserslist-4.21.4.tgz", + "integrity": "sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==", + "requires": { + "caniuse-lite": "^1.0.30001400", + "electron-to-chromium": "^1.4.251", + "node-releases": "^2.0.6", + "update-browserslist-db": "^1.0.9" + } + }, + "buffer": { + "version": "6.0.3", + "resolved": "https://npm.corp.kuaishou.com/buffer/-/buffer-6.0.3.tgz", + "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.2.1" + } + }, + "buffer-from": { + "version": "1.1.2", + "resolved": "https://npm.corp.kuaishou.com/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" + }, + "bytebuffer": { + "version": "5.0.1", + "resolved": "https://npm.corp.kuaishou.com/bytebuffer/-/bytebuffer-5.0.1.tgz", + "integrity": "sha1-WC7qSxqHO20CCkjVjfhfC7ps/d0=", + "requires": { + "long": "~3" + } + }, + "bytes": { + "version": "3.1.2", + "resolved": "https://npm.corp.kuaishou.com/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" + }, + "cac": { + "version": "6.7.14", + "resolved": "https://npm.corp.kuaishou.com/cac/-/cac-6.7.14.tgz", + "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==" + }, + "call-bind": { + "version": "1.0.2", + "resolved": "https://npm.corp.kuaishou.com/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + } + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://npm.corp.kuaishou.com/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha1-s2MKvYlDQy9Us/BRkjjjPNffL3M=" + }, + "camel-case": { + "version": "4.1.2", + "resolved": "https://npm.corp.kuaishou.com/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha1-lygHKpVPgFIoIlpt7qazhGHhvVo=", + "requires": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "camelcase": { + "version": "2.1.1", + "resolved": "https://npm.corp.kuaishou.com/camelcase/-/camelcase-2.1.1.tgz", + "integrity": "sha512-DLIsRzJVBQu72meAKPkWQOLcujdXT32hwdfnkI1frSiSRMK1MofjKHf+MEx0SB6fjEFXL8fBDv1dKymBlOp4Qw==" + }, + "camelcase-css": { + "version": "2.0.1", + "resolved": "https://npm.corp.kuaishou.com/camelcase-css/-/camelcase-css-2.0.1.tgz", + "integrity": "sha1-7pePaUeRTMMMa0R0G27R338EP9U=" + }, + "caniuse-lite": { + "version": "1.0.30001431", + "resolved": "https://npm.corp.kuaishou.com/caniuse-lite/-/caniuse-lite-1.0.30001431.tgz", + "integrity": "sha512-zBUoFU0ZcxpvSt9IU66dXVT/3ctO1cy4y9cscs1szkPlcWb6pasYM144GqrUygUbT+k7cmUCW61cvskjcv0enQ==" + }, + "chalk": { + "version": "5.1.2", + "resolved": "https://npm.corp.kuaishou.com/chalk/-/chalk-5.1.2.tgz", + "integrity": "sha512-E5CkT4jWURs1Vy5qGJye+XwCkNj7Od3Af7CP6SujMetSMkLs8Do2RWJK5yx1wamHV/op8Rz+9rltjaTQWDnEFQ==" + }, + "charenc": { + "version": "0.0.2", + "resolved": "https://npm.corp.kuaishou.com/charenc/-/charenc-0.0.2.tgz", + "integrity": "sha1-wKHS86cJLgN3S/qD8UwPxXkKhmc=" + }, + "chokidar": { + "version": "3.5.3", + "resolved": "https://npm.corp.kuaishou.com/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "requires": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "fsevents": "~2.3.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + } + }, + "chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://npm.corp.kuaishou.com/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", + "integrity": "sha1-EBXs7UdB4V0GZkqVfbv1DQQeJqw=" + }, + "clean-css": { + "version": "5.3.1", + "resolved": "https://npm.corp.kuaishou.com/clean-css/-/clean-css-5.3.1.tgz", + "integrity": "sha512-lCr8OHhiWCTw4v8POJovCoh4T7I9U11yVsPjMWWnnMmp9ZowCxyad1Pathle/9HjaDp+fdQKjO9fQydE6RHTZg==", + "requires": { + "source-map": "~0.6.0" + } + }, + "cli-cursor": { + "version": "4.0.0", + "resolved": "https://npm.corp.kuaishou.com/cli-cursor/-/cli-cursor-4.0.0.tgz", + "integrity": "sha1-POz+NzS/T+Aqg2HL3A9v4oxqV+o=", + "requires": { + "restore-cursor": "^4.0.0" + } + }, + "cli-spinners": { + "version": "2.7.0", + "resolved": "https://npm.corp.kuaishou.com/cli-spinners/-/cli-spinners-2.7.0.tgz", + "integrity": "sha512-qu3pN8Y3qHNgE2AFweciB1IfMnmZ/fsNTEE+NOFjmGB2F/7rLhnhzppvpCnN4FovtP26k8lHyy9ptEbNwWFLzw==" + }, + "cliui": { + "version": "3.2.0", + "resolved": "https://npm.corp.kuaishou.com/cliui/-/cliui-3.2.0.tgz", + "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=", + "requires": { + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1", + "wrap-ansi": "^2.0.0" + } + }, + "clone": { + "version": "1.0.4", + "resolved": "https://npm.corp.kuaishou.com/clone/-/clone-1.0.4.tgz", + "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=" + }, + "clone-deep": { + "version": "4.0.1", + "resolved": "https://npm.corp.kuaishou.com/clone-deep/-/clone-deep-4.0.1.tgz", + "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", + "requires": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" + } + }, + "code-point-at": { + "version": "1.1.0", + "resolved": "https://npm.corp.kuaishou.com/code-point-at/-/code-point-at-1.1.0.tgz", + "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=" + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://npm.corp.kuaishou.com/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://npm.corp.kuaishou.com/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=" + }, + "colorette": { + "version": "2.0.19", + "resolved": "https://npm.corp.kuaishou.com/colorette/-/colorette-2.0.19.tgz", + "integrity": "sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==" + }, + "colour": { + "version": "0.7.1", + "resolved": "https://npm.corp.kuaishou.com/colour/-/colour-0.7.1.tgz", + "integrity": "sha1-nLFpkX7F0SwHNtPoaFdG3xyt93g=" + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://npm.corp.kuaishou.com/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha1-w9RaizT9cwYxoRCoolIGgrMdWn8=", + "requires": { + "delayed-stream": "~1.0.0" + } + }, + "commander": { + "version": "2.20.3", + "resolved": "https://npm.corp.kuaishou.com/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "comment-regex": { + "version": "1.0.1", + "resolved": "https://npm.corp.kuaishou.com/comment-regex/-/comment-regex-1.0.1.tgz", + "integrity": "sha1-4HDSxNszIxlV0JedJ8kY/Lb5NWU=" + }, + "component-emitter": { + "version": "1.3.0", + "resolved": "https://npm.corp.kuaishou.com/component-emitter/-/component-emitter-1.3.0.tgz", + "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==" + }, + "compressible": { + "version": "2.0.18", + "resolved": "https://npm.corp.kuaishou.com/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "requires": { + "mime-db": ">= 1.43.0 < 2" + } + }, + "compression": { + "version": "1.7.4", + "resolved": "https://npm.corp.kuaishou.com/compression/-/compression-1.7.4.tgz", + "integrity": "sha1-lVI+/xcMpXwpoMpB5v4TH0Hlu48=", + "requires": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "dependencies": { + "bytes": { + "version": "3.0.0", + "resolved": "https://npm.corp.kuaishou.com/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==" + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://npm.corp.kuaishou.com/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha1-mR7GnSluAxN0fVm9/St0XDX4go0=" + } + } + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://npm.corp.kuaishou.com/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + }, + "connect-history-api-fallback": { + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz", + "integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==" + }, + "content-disposition": { + "version": "0.5.4", + "resolved": "https://npm.corp.kuaishou.com/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "requires": { + "safe-buffer": "5.2.1" + } + }, + "content-type": { + "version": "1.0.4", + "resolved": "https://npm.corp.kuaishou.com/content-type/-/content-type-1.0.4.tgz", + "integrity": "sha1-4TjMdeBAxyexlm/l5fjJruJW/js=" + }, + "convert-source-map": { + "version": "1.9.0", + "resolved": "https://npm.corp.kuaishou.com/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" + }, + "cookie": { + "version": "0.5.0", + "resolved": "https://npm.corp.kuaishou.com/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==" + }, + "cookie-signature": { + "version": "1.0.6", + "resolved": "https://npm.corp.kuaishou.com/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" + }, + "cookiejar": { + "version": "2.1.3", + "resolved": "https://npm.corp.kuaishou.com/cookiejar/-/cookiejar-2.1.3.tgz", + "integrity": "sha1-/HpiFuQI50QUuQIwBQhC2s2nWsw=" + }, + "copy-webpack-plugin": { + "version": "11.0.0", + "resolved": "https://npm.corp.kuaishou.com/copy-webpack-plugin/-/copy-webpack-plugin-11.0.0.tgz", + "integrity": "sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ==", + "requires": { + "fast-glob": "^3.2.11", + "glob-parent": "^6.0.1", + "globby": "^13.1.1", + "normalize-path": "^3.0.0", + "schema-utils": "^4.0.0", + "serialize-javascript": "^6.0.0" + }, + "dependencies": { + "glob-parent": { + "version": "6.0.2", + "resolved": "https://npm.corp.kuaishou.com/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "requires": { + "is-glob": "^4.0.3" + } + } + } + }, + "core-util-is": { + "version": "1.0.3", + "resolved": "https://npm.corp.kuaishou.com/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha1-pgQtNjTCsn6TKPg3uWX6yDgI24U=" + }, + "cosmiconfig": { + "version": "7.0.1", + "resolved": "https://npm.corp.kuaishou.com/cosmiconfig/-/cosmiconfig-7.0.1.tgz", + "integrity": "sha1-cU11ZSLKzoZ4Z8y0R0xdAbuuXW0=", + "requires": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + } + }, + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://npm.corp.kuaishou.com/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "crypt": { + "version": "0.0.2", + "resolved": "https://npm.corp.kuaishou.com/crypt/-/crypt-0.0.2.tgz", + "integrity": "sha1-iNf/fsDfuG9xPch7u0LQRNPmxBs=" + }, + "css-loader": { + "version": "6.7.1", + "resolved": "https://npm.corp.kuaishou.com/css-loader/-/css-loader-6.7.1.tgz", + "integrity": "sha512-yB5CNFa14MbPJcomwNh3wLThtkZgcNyI2bNMRt8iE5Z8Vwl7f8vQXFAzn2HDOJvtDq2NTZBUGMSUNNyrv3/+cw==", + "requires": { + "icss-utils": "^5.1.0", + "postcss": "^8.4.7", + "postcss-modules-extract-imports": "^3.0.0", + "postcss-modules-local-by-default": "^4.0.0", + "postcss-modules-scope": "^3.0.0", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.2.0", + "semver": "^7.3.5" + } + }, + "css-select": { + "version": "4.3.0", + "resolved": "https://npm.corp.kuaishou.com/css-select/-/css-select-4.3.0.tgz", + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "requires": { + "boolbase": "^1.0.0", + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" + } + }, + "css-tree": { + "version": "2.2.1", + "resolved": "https://npm.corp.kuaishou.com/css-tree/-/css-tree-2.2.1.tgz", + "integrity": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==", + "requires": { + "mdn-data": "2.0.28", + "source-map-js": "^1.0.1" + } + }, + "css-what": { + "version": "6.1.0", + "resolved": "https://npm.corp.kuaishou.com/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==" + }, + "cssesc": { + "version": "3.0.0", + "resolved": "https://npm.corp.kuaishou.com/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" + }, + "cssfilter": { + "version": "0.0.10", + "resolved": "https://npm.corp.kuaishou.com/cssfilter/-/cssfilter-0.0.10.tgz", + "integrity": "sha1-xtJnJjKi5cg+AT5oZKQs6N79IK4=" + }, + "csso": { + "version": "5.0.5", + "resolved": "https://npm.corp.kuaishou.com/csso/-/csso-5.0.5.tgz", + "integrity": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==", + "requires": { + "css-tree": "~2.2.0" + } + }, + "csstype": { + "version": "2.6.21", + "resolved": "https://npm.corp.kuaishou.com/csstype/-/csstype-2.6.21.tgz", + "integrity": "sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==" + }, + "debug": { + "version": "2.6.9", + "resolved": "https://npm.corp.kuaishou.com/debug/-/debug-2.6.9.tgz", + "integrity": "sha1-XRKFFd8TT/Mn6QpMk/Tgd6U2NB8=", + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + } + } + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://npm.corp.kuaishou.com/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==" + }, + "deepmerge": { + "version": "1.5.2", + "resolved": "https://npm.corp.kuaishou.com/deepmerge/-/deepmerge-1.5.2.tgz", + "integrity": "sha512-95k0GDqvBjZavkuvzx/YqVLv/6YYa17fz6ILMSf7neqQITCPbnfEnQvEgMPNjH4kgobe7+WIL0yJEHku+H3qtQ==" + }, + "default-gateway": { + "version": "6.0.3", + "resolved": "https://npm.corp.kuaishou.com/default-gateway/-/default-gateway-6.0.3.tgz", + "integrity": "sha1-gZSUyIgFO9t0PtvzQ9bN9/KUOnE=", + "requires": { + "execa": "^5.0.0" + }, + "dependencies": { + "execa": { + "version": "5.1.1", + "resolved": "https://npm.corp.kuaishou.com/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "requires": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + } + }, + "human-signals": { + "version": "2.1.0", + "resolved": "https://npm.corp.kuaishou.com/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha1-3JH8ukLk0G5Kuu0zs+ejwC9RTqA=" + }, + "is-stream": { + "version": "2.0.1", + "resolved": "https://npm.corp.kuaishou.com/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==" + }, + "npm-run-path": { + "version": "4.0.1", + "resolved": "https://npm.corp.kuaishou.com/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha1-t+zR5e1T2o43pV4cImnguX7XSOo=", + "requires": { + "path-key": "^3.0.0" + } + }, + "strip-final-newline": { + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==" + } + } + }, + "defaults": { + "version": "1.0.4", + "resolved": "https://npm.corp.kuaishou.com/defaults/-/defaults-1.0.4.tgz", + "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", + "requires": { + "clone": "^1.0.2" + } + }, + "define-lazy-prop": { + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha1-P3rkIRKbyqrJvHSQXJigAJ7J7n8=" + }, + "defined": { + "version": "1.0.1", + "resolved": "https://npm.corp.kuaishou.com/defined/-/defined-1.0.1.tgz", + "integrity": "sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q==" + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://npm.corp.kuaishou.com/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" + }, + "depd": { + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" + }, + "destroy": { + "version": "1.2.0", + "resolved": "https://npm.corp.kuaishou.com/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==" + }, + "detect-node": { + "version": "2.1.0", + "resolved": "https://npm.corp.kuaishou.com/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==" + }, + "detective": { + "version": "5.2.1", + "resolved": "https://npm.corp.kuaishou.com/detective/-/detective-5.2.1.tgz", + "integrity": "sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw==", + "requires": { + "acorn-node": "^1.8.2", + "defined": "^1.0.0", + "minimist": "^1.2.6" + } + }, + "didyoumean": { + "version": "1.2.2", + "resolved": "https://npm.corp.kuaishou.com/didyoumean/-/didyoumean-1.2.2.tgz", + "integrity": "sha1-mJNG/+noObRVXs9WZu3qDT6K0Dc=" + }, + "dir-glob": { + "version": "3.0.1", + "resolved": "https://npm.corp.kuaishou.com/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "requires": { + "path-type": "^4.0.0" + } + }, + "dlv": { + "version": "1.1.3", + "resolved": "https://npm.corp.kuaishou.com/dlv/-/dlv-1.1.3.tgz", + "integrity": "sha1-XBmKihFFNZbnUUlNSYdLx3MvLnk=" + }, + "dns-equal": { + "version": "1.0.0", + "resolved": "https://npm.corp.kuaishou.com/dns-equal/-/dns-equal-1.0.0.tgz", + "integrity": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==" + }, + "dns-packet": { + "version": "5.4.0", + "resolved": "https://npm.corp.kuaishou.com/dns-packet/-/dns-packet-5.4.0.tgz", + "integrity": "sha512-EgqGeaBB8hLiHLZtp/IbaDQTL8pZ0+IvwzSHA6d7VyMDM+B9hgddEMa9xjK5oYnw0ci0JQ6g2XCD7/f6cafU6g==", + "requires": { + "@leichtgewicht/ip-codec": "^2.0.1" + } + }, + "dom-converter": { + "version": "0.2.0", + "resolved": "https://npm.corp.kuaishou.com/dom-converter/-/dom-converter-0.2.0.tgz", + "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", + "requires": { + "utila": "~0.4" + } + }, + "dom-serializer": { + "version": "1.4.1", + "resolved": "https://npm.corp.kuaishou.com/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + } + }, + "domelementtype": { + "version": "2.3.0", + "resolved": "https://npm.corp.kuaishou.com/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==" + }, + "domhandler": { + "version": "4.3.1", + "resolved": "https://npm.corp.kuaishou.com/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "requires": { + "domelementtype": "^2.2.0" + } + }, + "domutils": { + "version": "2.8.0", + "resolved": "https://npm.corp.kuaishou.com/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "requires": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + } + }, + "dot-case": { + "version": "3.0.4", + "resolved": "https://npm.corp.kuaishou.com/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha1-mytnDQCkMWZ6inW6Kc0bmICc51E=", + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "ee-first": { + "version": "1.1.1", + "resolved": "https://npm.corp.kuaishou.com/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" + }, + "electron-to-chromium": { + "version": "1.4.284", + "resolved": "https://npm.corp.kuaishou.com/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz", + "integrity": "sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==" + }, + "element-closest": { + "version": "3.0.2", + "resolved": "https://npm.corp.kuaishou.com/element-closest/-/element-closest-3.0.2.tgz", + "integrity": "sha1-OBSmmoTzDkjmPq9XNB9Nv0In0qo=" + }, + "emmet": { + "version": "2.3.6", + "resolved": "https://npm.corp.kuaishou.com/emmet/-/emmet-2.3.6.tgz", + "integrity": "sha512-pLS4PBPDdxuUAmw7Me7+TcHbykTsBKN/S9XJbUOMFQrNv9MoshzyMFK/R57JBm94/6HSL4vHnDeEmxlC82NQ4A==", + "requires": { + "@emmetio/abbreviation": "^2.2.3", + "@emmetio/css-abbreviation": "^2.1.4" + } + }, + "emmet-monaco-es": { + "version": "5.1.2", + "resolved": "https://npm.corp.kuaishou.com/emmet-monaco-es/-/emmet-monaco-es-5.1.2.tgz", + "integrity": "sha512-P+GwbRfzCAN9socNCLj7hdlmjV1J535wYZX9uoXERRGbbfkzcmfz4i43ClDecqCVt6IsbP0RK8AgX370ClMcJA==", + "requires": { + "emmet": "^2.3.6" + } + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://npm.corp.kuaishou.com/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==" + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://npm.corp.kuaishou.com/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==" + }, + "enhanced-resolve": { + "version": "5.10.0", + "resolved": "https://npm.corp.kuaishou.com/enhanced-resolve/-/enhanced-resolve-5.10.0.tgz", + "integrity": "sha512-T0yTFjdpldGY8PmuXXR0PyQ1ufZpEGiHVrp7zHKB7jdR4qlmZHhONVM5AQOAWXuF/w3dnHbEQVrNptJgt7F+cQ==", + "requires": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + } + }, + "entities": { + "version": "2.2.0", + "resolved": "https://npm.corp.kuaishou.com/entities/-/entities-2.2.0.tgz", + "integrity": "sha1-CY3JDruD2N/6CJ1VJWs1HTTE2lU=" + }, + "envinfo": { + "version": "7.8.1", + "resolved": "https://npm.corp.kuaishou.com/envinfo/-/envinfo-7.8.1.tgz", + "integrity": "sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==" + }, + "error-ex": { + "version": "1.3.2", + "resolved": "https://npm.corp.kuaishou.com/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "requires": { + "is-arrayish": "^0.2.1" + } + }, + "es-module-lexer": { + "version": "0.9.3", + "resolved": "https://npm.corp.kuaishou.com/es-module-lexer/-/es-module-lexer-0.9.3.tgz", + "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==" + }, + "es6-promise": { + "version": "4.2.3", + "resolved": "https://npm.corp.kuaishou.com/es6-promise/-/es6-promise-4.2.3.tgz", + "integrity": "sha1-KUVLjbIbc/vvHfBww13Am3/WBsQ=" + }, + "esbuild": { + "version": "0.14.54", + "resolved": "https://npm.corp.kuaishou.com/esbuild/-/esbuild-0.14.54.tgz", + "integrity": "sha512-Cy9llcy8DvET5uznocPyqL3BFRrFXSVqbgpMJ9Wz8oVjZlh/zUSNbPRbov0VX7VxN2JH1Oa0uNxZ7eLRb62pJA==", + "requires": { + "@esbuild/linux-loong64": "0.14.54", + "esbuild-android-64": "0.14.54", + "esbuild-android-arm64": "0.14.54", + "esbuild-darwin-64": "0.14.54", + "esbuild-darwin-arm64": "0.14.54", + "esbuild-freebsd-64": "0.14.54", + "esbuild-freebsd-arm64": "0.14.54", + "esbuild-linux-32": "0.14.54", + "esbuild-linux-64": "0.14.54", + "esbuild-linux-arm": "0.14.54", + "esbuild-linux-arm64": "0.14.54", + "esbuild-linux-mips64le": "0.14.54", + "esbuild-linux-ppc64le": "0.14.54", + "esbuild-linux-riscv64": "0.14.54", + "esbuild-linux-s390x": "0.14.54", + "esbuild-netbsd-64": "0.14.54", + "esbuild-openbsd-64": "0.14.54", + "esbuild-sunos-64": "0.14.54", + "esbuild-windows-32": "0.14.54", + "esbuild-windows-64": "0.14.54", + "esbuild-windows-arm64": "0.14.54" + } + }, + "esbuild-darwin-64": { + "version": "0.14.54", + "resolved": "https://npm.corp.kuaishou.com/esbuild-darwin-64/-/esbuild-darwin-64-0.14.54.tgz", + "integrity": "sha512-jtdKWV3nBviOd5v4hOpkVmpxsBy90CGzebpbO9beiqUYVMBtSc0AL9zGftFuBon7PNDcdvNCEuQqw2x0wP9yug==", + "optional": true + }, + "esbuild-loader": { + "version": "2.19.0", + "resolved": "https://npm.corp.kuaishou.com/esbuild-loader/-/esbuild-loader-2.19.0.tgz", + "integrity": "sha512-urGNVE6Tl2rqx92ElKi/LiExXjGvcH6HfDBFzJ9Ppwqh4n6Jmx8x7RKAyMzSM78b6CAaJLhDncG5sPrL0ROh5Q==", + "requires": { + "esbuild": "^0.14.39", + "joycon": "^3.0.1", + "json5": "^2.2.0", + "loader-utils": "^2.0.0", + "tapable": "^2.2.0", + "webpack-sources": "^2.2.0" + } + }, + "escalade": { + "version": "3.1.1", + "resolved": "https://npm.corp.kuaishou.com/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://npm.corp.kuaishou.com/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://npm.corp.kuaishou.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==" + }, + "eslint-scope": { + "version": "5.1.1", + "resolved": "https://npm.corp.kuaishou.com/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha1-54blmmbLkrP2wfsNUIqrF0hI9Iw=", + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + } + }, + "esprima": { + "version": "4.0.1", + "resolved": "https://npm.corp.kuaishou.com/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" + }, + "esrecurse": { + "version": "4.3.0", + "resolved": "https://npm.corp.kuaishou.com/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha1-eteWTWeauyi+5yzsY3WLHF0smSE=", + "requires": { + "estraverse": "^5.2.0" + }, + "dependencies": { + "estraverse": { + "version": "5.3.0", + "resolved": "https://npm.corp.kuaishou.com/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha1-LupSkHAvJquP5TcDcP+GyWXSESM=" + } + } + }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://npm.corp.kuaishou.com/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha1-OYrT88WiSUi+dyXoPRGn3ijNvR0=" + }, + "estree-walker": { + "version": "2.0.2", + "resolved": "https://npm.corp.kuaishou.com/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha1-UvAQF4wqTBF6d1fP6UKtt9LaTKw=" + }, + "etag": { + "version": "1.8.1", + "resolved": "https://npm.corp.kuaishou.com/etag/-/etag-1.8.1.tgz", + "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=" + }, + "event-target-shim": { + "version": "5.0.1", + "resolved": "https://npm.corp.kuaishou.com/event-target-shim/-/event-target-shim-5.0.1.tgz", + "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==" + }, + "eventemitter3": { + "version": "2.0.3", + "resolved": "https://npm.corp.kuaishou.com/eventemitter3/-/eventemitter3-2.0.3.tgz", + "integrity": "sha512-jLN68Dx5kyFHaePoXWPsCGW5qdyZQtLYHkxkg02/Mz6g0kYpDx4FyP6XfArhQdlOC4b8Mv+EMxPo/8La7Tzghg==" + }, + "events": { + "version": "3.3.0", + "resolved": "https://npm.corp.kuaishou.com/events/-/events-3.3.0.tgz", + "integrity": "sha1-Mala0Kkk4tLEGagTrrLE6HjqdAA=" + }, + "execa": { + "version": "6.1.0", + "resolved": "https://npm.corp.kuaishou.com/execa/-/execa-6.1.0.tgz", + "integrity": "sha512-QVWlX2e50heYJcCPG0iWtf8r0xjEYfz/OYLGDYH+IyjWezzPNxz63qNFOu0l4YftGWuizFVZHHs8PrLU5p2IDA==", + "requires": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.1", + "human-signals": "^3.0.1", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^3.0.7", + "strip-final-newline": "^3.0.0" + }, + "dependencies": { + "mimic-fn": { + "version": "4.0.0", + "resolved": "https://npm.corp.kuaishou.com/mimic-fn/-/mimic-fn-4.0.0.tgz", + "integrity": "sha1-YKkFUNXLCyOcymXYk7GlOymHHsw=" + }, + "onetime": { + "version": "6.0.0", + "resolved": "https://npm.corp.kuaishou.com/onetime/-/onetime-6.0.0.tgz", + "integrity": "sha1-fCTBjtH9LpvKS9JoBqM2E8d9NLQ=", + "requires": { + "mimic-fn": "^4.0.0" + } + } + } + }, + "express": { + "version": "4.18.2", + "resolved": "https://npm.corp.kuaishou.com/express/-/express-4.18.2.tgz", + "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", + "requires": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.1", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.5.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.11.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + } + }, + "extend": { + "version": "3.0.2", + "resolved": "https://npm.corp.kuaishou.com/extend/-/extend-3.0.2.tgz", + "integrity": "sha1-+LETa0Bx+9jrFAr/hYsQGewpFfo=" + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://npm.corp.kuaishou.com/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "requires": { + "is-extendable": "^0.1.0" + } + }, + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://npm.corp.kuaishou.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha1-On1WtVnWy8PrUSMlJE5hmmXGxSU=" + }, + "fast-glob": { + "version": "3.2.12", + "resolved": "https://npm.corp.kuaishou.com/fast-glob/-/fast-glob-3.2.12.tgz", + "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", + "requires": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + } + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://npm.corp.kuaishou.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + }, + "fast-safe-stringify": { + "version": "2.1.1", + "resolved": "https://npm.corp.kuaishou.com/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz", + "integrity": "sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==" + }, + "fastq": { + "version": "1.13.0", + "resolved": "https://npm.corp.kuaishou.com/fastq/-/fastq-1.13.0.tgz", + "integrity": "sha1-YWdg+Ip1Jr38WWt8q4wYk4w2uYw=", + "requires": { + "reusify": "^1.0.4" + } + }, + "faye-websocket": { + "version": "0.11.4", + "resolved": "https://npm.corp.kuaishou.com/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha1-fw2Sdc/dhqHJY9yLZfzEUe3Lsdo=", + "requires": { + "websocket-driver": ">=0.5.1" + } + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://npm.corp.kuaishou.com/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha1-GRmmp8df44ssfHflGYU12prN2kA=", + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "finalhandler": { + "version": "1.2.0", + "resolved": "https://npm.corp.kuaishou.com/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + } + }, + "follow-redirects": { + "version": "1.15.2", + "resolved": "https://npm.corp.kuaishou.com/follow-redirects/-/follow-redirects-1.15.2.tgz", + "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==" + }, + "form-data": { + "version": "2.5.1", + "resolved": "https://npm.corp.kuaishou.com/form-data/-/form-data-2.5.1.tgz", + "integrity": "sha512-m21N3WOmEEURgk6B9GLOE4RuWOFf28Lhh9qGYeNlGq4VDXUlJy2th2slBNU8Gp8EzloYZOibZJ7t5ecIrFSjVA==", + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + } + }, + "formidable": { + "version": "1.2.6", + "resolved": "https://npm.corp.kuaishou.com/formidable/-/formidable-1.2.6.tgz", + "integrity": "sha1-0qUdYBYrvJtKBV2EV6fHUxXRoWg=" + }, + "forwarded": { + "version": "0.2.0", + "resolved": "https://npm.corp.kuaishou.com/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha1-ImmTZCiq1MFcfr6XeahL8LKoGBE=" + }, + "fraction.js": { + "version": "4.2.0", + "resolved": "https://npm.corp.kuaishou.com/fraction.js/-/fraction.js-4.2.0.tgz", + "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==" + }, + "fresh": { + "version": "0.5.2", + "resolved": "https://npm.corp.kuaishou.com/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==" + }, + "fs-extra": { + "version": "10.1.0", + "resolved": "https://npm.corp.kuaishou.com/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, + "fs-monkey": { + "version": "1.0.3", + "resolved": "https://npm.corp.kuaishou.com/fs-monkey/-/fs-monkey-1.0.3.tgz", + "integrity": "sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==" + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://npm.corp.kuaishou.com/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" + }, + "fsevents": { + "version": "2.3.2", + "resolved": "https://npm.corp.kuaishou.com/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "optional": true + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://npm.corp.kuaishou.com/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://npm.corp.kuaishou.com/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==" + }, + "get-intrinsic": { + "version": "1.1.3", + "resolved": "https://npm.corp.kuaishou.com/get-intrinsic/-/get-intrinsic-1.1.3.tgz", + "integrity": "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==", + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.3" + } + }, + "get-stream": { + "version": "6.0.1", + "resolved": "https://npm.corp.kuaishou.com/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha1-omLY7vZ6ztV8KFKtYWdSakPL97c=" + }, + "glob": { + "version": "7.2.3", + "resolved": "https://npm.corp.kuaishou.com/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "glob-parent": { + "version": "5.1.2", + "resolved": "https://npm.corp.kuaishou.com/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "requires": { + "is-glob": "^4.0.1" + } + }, + "glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://npm.corp.kuaishou.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha1-x1KXCHyFG5pXi9IX3VmpL1n+VG4=" + }, + "globals": { + "version": "11.12.0", + "resolved": "https://npm.corp.kuaishou.com/globals/-/globals-11.12.0.tgz", + "integrity": "sha1-q4eVM4hooLq9hSV1gBjCp+uVxC4=" + }, + "globby": { + "version": "13.1.2", + "resolved": "https://npm.corp.kuaishou.com/globby/-/globby-13.1.2.tgz", + "integrity": "sha512-LKSDZXToac40u8Q1PQtZihbNdTYSNMuWe+K5l+oa6KgDzSvVrHXlJy40hUP522RjAIoNLJYBJi7ow+rbFpIhHQ==", + "requires": { + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.11", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^4.0.0" + } + }, + "graceful-fs": { + "version": "4.2.10", + "resolved": "https://npm.corp.kuaishou.com/graceful-fs/-/graceful-fs-4.2.10.tgz", + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==" + }, + "gray-matter": { + "version": "4.0.3", + "resolved": "https://npm.corp.kuaishou.com/gray-matter/-/gray-matter-4.0.3.tgz", + "integrity": "sha1-6JPAZIJd5z6h9ffYjHqfcnQoh5g=", + "requires": { + "js-yaml": "^3.13.1", + "kind-of": "^6.0.2", + "section-matter": "^1.0.0", + "strip-bom-string": "^1.0.0" + } + }, + "hanabi": { + "version": "0.4.0", + "resolved": "https://npm.corp.kuaishou.com/hanabi/-/hanabi-0.4.0.tgz", + "integrity": "sha512-ixJH94fwmmVzUSdxl7TMkVZJmsq4d2JKrxedpM5V1V+91iVHL0q6NnJi4xiDahK6Vo00xT17H8H6b4F6RVbsOg==", + "requires": { + "comment-regex": "^1.0.0" + } + }, + "handle-thing": { + "version": "2.0.1", + "resolved": "https://npm.corp.kuaishou.com/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha1-hX95zjWVgMNA1DCBzGSJcNC7I04=" + }, + "has": { + "version": "1.0.3", + "resolved": "https://npm.corp.kuaishou.com/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://npm.corp.kuaishou.com/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=" + }, + "has-symbols": { + "version": "1.0.3", + "resolved": "https://npm.corp.kuaishou.com/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" + }, + "hash-sum": { + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/hash-sum/-/hash-sum-2.0.0.tgz", + "integrity": "sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==" + }, + "he": { + "version": "0.5.0", + "resolved": "https://npm.corp.kuaishou.com/he/-/he-0.5.0.tgz", + "integrity": "sha1-LAX/rvkLaOhg8/0rVO9YCYknfuI=" + }, + "highlight.js": { + "version": "9.18.5", + "resolved": "https://npm.corp.kuaishou.com/highlight.js/-/highlight.js-9.18.5.tgz", + "integrity": "sha512-a5bFyofd/BHCX52/8i8uJkjr9DYwXIPnM/plwI6W7ezItLGqzt7X2G2nXuYSfsIJdkwwj/g9DG1LkcGJI/dDoA==" + }, + "hpack.js": { + "version": "2.1.6", + "resolved": "https://npm.corp.kuaishou.com/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", + "requires": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.7", + "resolved": "https://npm.corp.kuaishou.com/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://npm.corp.kuaishou.com/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha1-mR7GnSluAxN0fVm9/St0XDX4go0=" + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://npm.corp.kuaishou.com/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha1-nPFhG6YmhdcDCunkujQUnDrwP8g=", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "html-entities": { + "version": "2.3.3", + "resolved": "https://npm.corp.kuaishou.com/html-entities/-/html-entities-2.3.3.tgz", + "integrity": "sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==" + }, + "html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://npm.corp.kuaishou.com/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==", + "requires": { + "camel-case": "^4.1.2", + "clean-css": "^5.2.2", + "commander": "^8.3.0", + "he": "^1.2.0", + "param-case": "^3.0.4", + "relateurl": "^0.2.7", + "terser": "^5.10.0" + }, + "dependencies": { + "commander": { + "version": "8.3.0", + "resolved": "https://npm.corp.kuaishou.com/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==" + }, + "he": { + "version": "1.2.0", + "resolved": "https://npm.corp.kuaishou.com/he/-/he-1.2.0.tgz", + "integrity": "sha1-hK5l+n6vsWX922FWauFLrwVmTw8=" + } + } + }, + "html-webpack-plugin": { + "version": "5.5.0", + "resolved": "https://npm.corp.kuaishou.com/html-webpack-plugin/-/html-webpack-plugin-5.5.0.tgz", + "integrity": "sha1-w5EZNvV2gcH59Ni2jBWM2d/lL1A=", + "requires": { + "@types/html-minifier-terser": "^6.0.0", + "html-minifier-terser": "^6.0.2", + "lodash": "^4.17.21", + "pretty-error": "^4.0.0", + "tapable": "^2.0.0" + } + }, + "htmlparser2": { + "version": "6.1.0", + "resolved": "https://npm.corp.kuaishou.com/htmlparser2/-/htmlparser2-6.1.0.tgz", + "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", + "requires": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" + } + }, + "http-deceiver": { + "version": "1.2.7", + "resolved": "https://npm.corp.kuaishou.com/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=" + }, + "http-errors": { + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "requires": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + } + }, + "http-parser-js": { + "version": "0.5.8", + "resolved": "https://npm.corp.kuaishou.com/http-parser-js/-/http-parser-js-0.5.8.tgz", + "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==" + }, + "http-proxy": { + "version": "1.18.1", + "resolved": "https://npm.corp.kuaishou.com/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "requires": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + }, + "dependencies": { + "eventemitter3": { + "version": "4.0.7", + "resolved": "https://npm.corp.kuaishou.com/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" + } + } + }, + "http-proxy-middleware": { + "version": "2.0.6", + "resolved": "https://npm.corp.kuaishou.com/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz", + "integrity": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==", + "requires": { + "@types/http-proxy": "^1.17.8", + "http-proxy": "^1.18.1", + "is-glob": "^4.0.1", + "is-plain-obj": "^3.0.0", + "micromatch": "^4.0.2" + } + }, + "human-signals": { + "version": "3.0.1", + "resolved": "https://npm.corp.kuaishou.com/human-signals/-/human-signals-3.0.1.tgz", + "integrity": "sha1-x0CSCFna+lDloyItqdO/S7Dl7vU=" + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://npm.corp.kuaishou.com/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "icss-utils": { + "version": "5.1.0", + "resolved": "https://npm.corp.kuaishou.com/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha1-xr5oWKvQE9do6YNmrkfiXViHsa4=", + "requires": {} + }, + "ieee754": { + "version": "1.2.1", + "resolved": "https://npm.corp.kuaishou.com/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" + }, + "ignore": { + "version": "5.2.0", + "resolved": "https://npm.corp.kuaishou.com/ignore/-/ignore-5.2.0.tgz", + "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==" + }, + "immutable": { + "version": "4.1.0", + "resolved": "https://npm.corp.kuaishou.com/immutable/-/immutable-4.1.0.tgz", + "integrity": "sha512-oNkuqVTA8jqG1Q6c+UglTOD1xhC1BtjKI7XkCXRkZHrN5m18/XsnUp8Q89GkQO/z+0WjonSvl0FLhDYftp46nQ==" + }, + "import-fresh": { + "version": "3.3.0", + "resolved": "https://npm.corp.kuaishou.com/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "requires": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + } + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://npm.corp.kuaishou.com/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://npm.corp.kuaishou.com/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha1-D6LGT5MpF8NDOg3tVTY6rjdBa3w=" + }, + "insane": { + "version": "2.6.2", + "resolved": "https://npm.corp.kuaishou.com/insane/-/insane-2.6.2.tgz", + "integrity": "sha1-wqtouz4AarRRVg0bRGkXMpwKgSA=", + "requires": { + "assignment": "2.0.0", + "he": "0.5.0" + } + }, + "install": { + "version": "0.13.0", + "resolved": "https://npm.corp.kuaishou.com/install/-/install-0.13.0.tgz", + "integrity": "sha1-avbp2p3QmH3iq0IPeOYNnBcmB3Y=" + }, + "invert-kv": { + "version": "1.0.0", + "resolved": "https://npm.corp.kuaishou.com/invert-kv/-/invert-kv-1.0.0.tgz", + "integrity": "sha512-xgs2NH9AE66ucSq4cNG1nhSFghr5l6tdL15Pk+jl46bmmBapgoaY/AacXyaDznAqmGL99TiLSQgO/XazFSKYeQ==" + }, + "ipaddr.js": { + "version": "2.0.1", + "resolved": "https://npm.corp.kuaishou.com/ipaddr.js/-/ipaddr.js-2.0.1.tgz", + "integrity": "sha1-7KJWp6h36Reus2iwp0l930LvgcA=" + }, + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://npm.corp.kuaishou.com/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://npm.corp.kuaishou.com/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha1-6h9/O4DwZCNug0cPhsCcJU+0Wwk=", + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "is-buffer": { + "version": "1.1.6", + "resolved": "https://npm.corp.kuaishou.com/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" + }, + "is-core-module": { + "version": "2.11.0", + "resolved": "https://npm.corp.kuaishou.com/is-core-module/-/is-core-module-2.11.0.tgz", + "integrity": "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==", + "requires": { + "has": "^1.0.3" + } + }, + "is-docker": { + "version": "2.2.1", + "resolved": "https://npm.corp.kuaishou.com/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha1-M+6r4jz+hvFL3kQIoCwM+4U6zao=" + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://npm.corp.kuaishou.com/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==" + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://npm.corp.kuaishou.com/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=" + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://npm.corp.kuaishou.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==", + "requires": { + "number-is-nan": "^1.0.0" + } + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://npm.corp.kuaishou.com/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-interactive": { + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/is-interactive/-/is-interactive-2.0.0.tgz", + "integrity": "sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==" + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://npm.corp.kuaishou.com/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha1-dTU0W4lnNNX4DE0GxQlVUnoU8Ss=" + }, + "is-plain-obj": { + "version": "3.0.0", + "resolved": "https://npm.corp.kuaishou.com/is-plain-obj/-/is-plain-obj-3.0.0.tgz", + "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==" + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://npm.corp.kuaishou.com/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "requires": { + "isobject": "^3.0.1" + } + }, + "is-stream": { + "version": "3.0.0", + "resolved": "https://npm.corp.kuaishou.com/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==" + }, + "is-unicode-supported": { + "version": "1.3.0", + "resolved": "https://npm.corp.kuaishou.com/is-unicode-supported/-/is-unicode-supported-1.3.0.tgz", + "integrity": "sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==" + }, + "is-wsl": { + "version": "2.2.0", + "resolved": "https://npm.corp.kuaishou.com/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha1-dKTHbnfKn9P5MvKQwX6jJs0VcnE=", + "requires": { + "is-docker": "^2.0.0" + } + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://npm.corp.kuaishou.com/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://npm.corp.kuaishou.com/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==" + }, + "javascript-state-machine": { + "version": "2.4.0", + "resolved": "https://npm.corp.kuaishou.com/javascript-state-machine/-/javascript-state-machine-2.4.0.tgz", + "integrity": "sha1-2L4x7DjySsGhgy8LZy/DzV95yW4=" + }, + "javascript-stringify": { + "version": "2.1.0", + "resolved": "https://npm.corp.kuaishou.com/javascript-stringify/-/javascript-stringify-2.1.0.tgz", + "integrity": "sha1-J8dlOb4U2L0Sghmi1zGwkzeQTnk=" + }, + "jest-worker": { + "version": "27.5.1", + "resolved": "https://npm.corp.kuaishou.com/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "requires": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "dependencies": { + "supports-color": { + "version": "8.1.1", + "resolved": "https://npm.corp.kuaishou.com/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha1-zW/BfihQDP9WwbhsCn/UpUpzAFw=", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "joycon": { + "version": "3.1.1", + "resolved": "https://npm.corp.kuaishou.com/joycon/-/joycon-3.1.1.tgz", + "integrity": "sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==" + }, + "js-base64": { + "version": "3.7.2", + "resolved": "https://npm.corp.kuaishou.com/js-base64/-/js-base64-3.7.2.tgz", + "integrity": "sha512-NnRs6dsyqUXejqk/yv2aiXlAvOs56sLkX6nUdeaNezI5LFFLlsZjOThmwnrcwh5ZZRwZlCMnVAY3CvhIhoVEKQ==" + }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://npm.corp.kuaishou.com/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha1-GSA/tZmR35jjoocFDUZHzerzJJk=" + }, + "js-yaml": { + "version": "3.14.1", + "resolved": "https://npm.corp.kuaishou.com/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha1-2ugS/bOCX6MGYJqHFzg8UMNqBTc=", + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "dependencies": { + "argparse": { + "version": "1.0.10", + "resolved": "https://npm.corp.kuaishou.com/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha1-vNZ5HqWuCXJeF+WtmIE0zUCz2RE=", + "requires": { + "sprintf-js": "~1.0.2" + } + } + } + }, + "jsesc": { + "version": "2.5.2", + "resolved": "https://npm.corp.kuaishou.com/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" + }, + "json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://npm.corp.kuaishou.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://npm.corp.kuaishou.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "json5": { + "version": "2.2.1", + "resolved": "https://npm.corp.kuaishou.com/json5/-/json5-2.2.1.tgz", + "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==" + }, + "jsonc-parser": { + "version": "3.2.0", + "resolved": "https://npm.corp.kuaishou.com/jsonc-parser/-/jsonc-parser-3.2.0.tgz", + "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==" + }, + "jsonfile": { + "version": "6.1.0", + "resolved": "https://npm.corp.kuaishou.com/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "requires": { + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" + } + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://npm.corp.kuaishou.com/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha1-B8BQNKbDSfoG4k+jWqdttFgM5N0=" + }, + "klona": { + "version": "2.0.5", + "resolved": "https://npm.corp.kuaishou.com/klona/-/klona-2.0.5.tgz", + "integrity": "sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==" + }, + "lcid": { + "version": "1.0.0", + "resolved": "https://npm.corp.kuaishou.com/lcid/-/lcid-1.0.0.tgz", + "integrity": "sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=", + "requires": { + "invert-kv": "^1.0.0" + } + }, + "leancloud-realtime": { + "version": "5.0.0-rc.7", + "resolved": "https://npm.corp.kuaishou.com/leancloud-realtime/-/leancloud-realtime-5.0.0-rc.7.tgz", + "integrity": "sha1-7zFP31mKCjKj7tlFPMLKMc+nl4E=", + "requires": { + "@babel/runtime": "^7.10.2", + "@leancloud/adapter-types": "^3.0.0", + "@leancloud/platform-adapters-browser": "^1.1.0", + "@leancloud/platform-adapters-node": "^1.1.0", + "@leancloud/platform-adapters-weapp": "^1.2.0", + "base64-arraybuffer": "^0.1.5", + "debug": "^3.1.0", + "eventemitter3": "^3.0.0", + "javascript-state-machine": "^2.3.5", + "lodash": "^4.17.10", + "promise-timeout": "^1.3.0", + "protobufjs": "^5.0.1", + "uuid": "^3.0.0" + }, + "dependencies": { + "@leancloud/adapter-types": { + "version": "3.0.0", + "resolved": "https://npm.corp.kuaishou.com/@leancloud%2fadapter-types/-/adapter-types-3.0.0.tgz", + "integrity": "sha1-ccXo43BlvqSRRlCEi1WmJi1lhXc=" + }, + "debug": { + "version": "3.2.7", + "resolved": "https://npm.corp.kuaishou.com/debug/-/debug-3.2.7.tgz", + "integrity": "sha1-clgLfpFF+zm2Z2+cXl+xALk0F5o=", + "requires": { + "ms": "^2.1.1" + } + }, + "eventemitter3": { + "version": "3.1.2", + "resolved": "https://npm.corp.kuaishou.com/eventemitter3/-/eventemitter3-3.1.2.tgz", + "integrity": "sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q==" + } + } + }, + "leancloud-realtime-plugin-live-query": { + "version": "1.2.0", + "resolved": "https://npm.corp.kuaishou.com/leancloud-realtime-plugin-live-query/-/leancloud-realtime-plugin-live-query-1.2.0.tgz", + "integrity": "sha1-HgfaG1uZ5EzdvDsFIjRCLyeMSrk=", + "requires": {} + }, + "leancloud-storage": { + "version": "3.15.0", + "resolved": "https://npm.corp.kuaishou.com/leancloud-storage/-/leancloud-storage-3.15.0.tgz", + "integrity": "sha1-bTsBCjExiZhbtpqwjHXHrXS9F4g=", + "requires": { + "debug": "^3.1.0", + "es6-promise": "4.2.3", + "eventemitter3": "^2.0.3", + "leancloud-realtime": "^5.0.0-alpha.3", + "leancloud-realtime-plugin-live-query": "^1.2.0", + "localstorage-memory": "^1.0.1", + "md5": "^2.0.0", + "superagent": "^3.3.1", + "underscore": "^1.8.3", + "uuid": "^3.3.2" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://npm.corp.kuaishou.com/debug/-/debug-3.2.7.tgz", + "integrity": "sha1-clgLfpFF+zm2Z2+cXl+xALk0F5o=", + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "lilconfig": { + "version": "2.0.6", + "resolved": "https://npm.corp.kuaishou.com/lilconfig/-/lilconfig-2.0.6.tgz", + "integrity": "sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==" + }, + "lines-and-columns": { + "version": "1.2.4", + "resolved": "https://npm.corp.kuaishou.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" + }, + "linkify-it": { + "version": "4.0.1", + "resolved": "https://npm.corp.kuaishou.com/linkify-it/-/linkify-it-4.0.1.tgz", + "integrity": "sha512-C7bfi1UZmoj8+PQx22XyeXCuBlokoyWQL5pWSP+EI6nzRylyThouddufc2c1NDIcP9k5agmN9fLpA7VNJfIiqw==", + "requires": { + "uc.micro": "^1.0.1" + } + }, + "loader-runner": { + "version": "4.3.0", + "resolved": "https://npm.corp.kuaishou.com/loader-runner/-/loader-runner-4.3.0.tgz", + "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==" + }, + "loader-utils": { + "version": "2.0.3", + "resolved": "https://npm.corp.kuaishou.com/loader-utils/-/loader-utils-2.0.3.tgz", + "integrity": "sha512-THWqIsn8QRnvLl0shHYVBN9syumU8pYWEHPTmkiVGd+7K5eFNVSY6AJhRvgGF70gg1Dz+l/k8WicvFCxdEs60A==", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + }, + "localstorage-memory": { + "version": "1.0.3", + "resolved": "https://npm.corp.kuaishou.com/localstorage-memory/-/localstorage-memory-1.0.3.tgz", + "integrity": "sha1-Vms3lo/gxNdro2ptpWT6YTlFynI=" + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://npm.corp.kuaishou.com/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha1-Z5WRxWTDv/quhFTPCz3zcMPWkRw=" + }, + "log-symbols": { + "version": "5.1.0", + "resolved": "https://npm.corp.kuaishou.com/log-symbols/-/log-symbols-5.1.0.tgz", + "integrity": "sha512-l0x2DvrW294C9uDCoQe1VSU4gf529FkSZ6leBl4TiqZH/e+0R7hSfHQBNut2mNygDgHwvYHfFLn6Oxb3VWj2rA==", + "requires": { + "chalk": "^5.0.0", + "is-unicode-supported": "^1.1.0" + } + }, + "long": { + "version": "3.2.0", + "resolved": "https://npm.corp.kuaishou.com/long/-/long-3.2.0.tgz", + "integrity": "sha1-2CG3E4yhy1gcFymQ7xTbIAtcR0s=" + }, + "lower-case": { + "version": "2.0.2", + "resolved": "https://npm.corp.kuaishou.com/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "requires": { + "tslib": "^2.0.3" + } + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://npm.corp.kuaishou.com/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "requires": { + "yallist": "^4.0.0" + } + }, + "magic-string": { + "version": "0.25.9", + "resolved": "https://npm.corp.kuaishou.com/magic-string/-/magic-string-0.25.9.tgz", + "integrity": "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==", + "requires": { + "sourcemap-codec": "^1.4.8" + } + }, + "markdown-it": { + "version": "13.0.1", + "resolved": "https://npm.corp.kuaishou.com/markdown-it/-/markdown-it-13.0.1.tgz", + "integrity": "sha512-lTlxriVoy2criHP0JKRhO2VDG9c2ypWCsT237eDiLqi09rmbKoUetyGHq2uOIRoRS//kfoJckS0eUzzkDR+k2Q==", + "requires": { + "argparse": "^2.0.1", + "entities": "~3.0.1", + "linkify-it": "^4.0.1", + "mdurl": "^1.0.1", + "uc.micro": "^1.0.5" + }, + "dependencies": { + "entities": { + "version": "3.0.1", + "resolved": "https://npm.corp.kuaishou.com/entities/-/entities-3.0.1.tgz", + "integrity": "sha1-K4h8piWF6W2zkDSC0zbBAGwwAdQ=" + } + } + }, + "markdown-it-anchor": { + "version": "8.6.5", + "resolved": "https://npm.corp.kuaishou.com/markdown-it-anchor/-/markdown-it-anchor-8.6.5.tgz", + "integrity": "sha512-PI1qEHHkTNWT+X6Ip9w+paonfIQ+QZP9sCeMYi47oqhH+EsW8CrJ8J7CzV19QVOj6il8ATGbK2nTECj22ZHGvQ==", + "requires": {} + }, + "markdown-it-container": { + "version": "3.0.0", + "resolved": "https://npm.corp.kuaishou.com/markdown-it-container/-/markdown-it-container-3.0.0.tgz", + "integrity": "sha1-HRmwYECgIPmoJ1d7t9v2eqXemls=" + }, + "markdown-it-emoji": { + "version": "2.0.2", + "resolved": "https://npm.corp.kuaishou.com/markdown-it-emoji/-/markdown-it-emoji-2.0.2.tgz", + "integrity": "sha512-zLftSaNrKuYl0kR5zm4gxXjHaOI3FAOEaloKmRA5hijmJZvSjmxcokOLlzycb/HXlUFWzXqpIEoyEMCE4i9MvQ==" + }, + "marked": { + "version": "4.2.2", + "resolved": "https://npm.corp.kuaishou.com/marked/-/marked-4.2.2.tgz", + "integrity": "sha512-JjBTFTAvuTgANXx82a5vzK9JLSMoV6V3LBVn4Uhdso6t7vXrGx7g1Cd2r6NYSsxrYbQGFCMqBDhFHyK5q2UvcQ==" + }, + "md5": { + "version": "2.3.0", + "resolved": "https://npm.corp.kuaishou.com/md5/-/md5-2.3.0.tgz", + "integrity": "sha1-w9qaaq46MLRreww0m4exENw72k8=", + "requires": { + "charenc": "0.0.2", + "crypt": "0.0.2", + "is-buffer": "~1.1.6" + } + }, + "mdn-data": { + "version": "2.0.28", + "resolved": "https://npm.corp.kuaishou.com/mdn-data/-/mdn-data-2.0.28.tgz", + "integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==" + }, + "mdurl": { + "version": "1.0.1", + "resolved": "https://npm.corp.kuaishou.com/mdurl/-/mdurl-1.0.1.tgz", + "integrity": "sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==" + }, + "media-typer": { + "version": "0.3.0", + "resolved": "https://npm.corp.kuaishou.com/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=" + }, + "medium-zoom": { + "version": "1.0.6", + "resolved": "https://npm.corp.kuaishou.com/medium-zoom/-/medium-zoom-1.0.6.tgz", + "integrity": "sha1-kkfyHKkxPYu+lCCsoVOkEN8I0Cc=" + }, + "memfs": { + "version": "3.4.10", + "resolved": "https://npm.corp.kuaishou.com/memfs/-/memfs-3.4.10.tgz", + "integrity": "sha512-0bCUP+L79P4am30yP1msPzApwuMQG23TjwlwdHeEV5MxioDR1a0AgB0T9FfggU52eJuDCq8WVwb5ekznFyWiTQ==", + "requires": { + "fs-monkey": "^1.0.3" + } + }, + "merge-descriptors": { + "version": "1.0.1", + "resolved": "https://npm.corp.kuaishou.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" + }, + "merge-stream": { + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" + }, + "merge2": { + "version": "1.4.1", + "resolved": "https://npm.corp.kuaishou.com/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha1-Q2iJL4hekHRVpv19xVwMnUBJkK4=" + }, + "methods": { + "version": "1.1.2", + "resolved": "https://npm.corp.kuaishou.com/methods/-/methods-1.1.2.tgz", + "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" + }, + "micromatch": { + "version": "4.0.5", + "resolved": "https://npm.corp.kuaishou.com/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "requires": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + } + }, + "mime": { + "version": "1.6.0", + "resolved": "https://npm.corp.kuaishou.com/mime/-/mime-1.6.0.tgz", + "integrity": "sha1-Ms2eXGRVO9WNGaVor0Uqz/BJgbE=" + }, + "mime-db": { + "version": "1.52.0", + "resolved": "https://npm.corp.kuaishou.com/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" + }, + "mime-types": { + "version": "2.1.35", + "resolved": "https://npm.corp.kuaishou.com/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "requires": { + "mime-db": "1.52.0" + } + }, + "mimic-fn": { + "version": "2.1.0", + "resolved": "https://npm.corp.kuaishou.com/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha1-ftLCzMyvhNP/y3pptXcR/CCDQBs=" + }, + "mini-css-extract-plugin": { + "version": "2.6.1", + "resolved": "https://npm.corp.kuaishou.com/mini-css-extract-plugin/-/mini-css-extract-plugin-2.6.1.tgz", + "integrity": "sha512-wd+SD57/K6DiV7jIR34P+s3uckTRuQvx0tKPcvjFlrEylk6P4mQ2KSWk1hblj1Kxaqok7LogKOieygXqBczNlg==", + "requires": { + "schema-utils": "^4.0.0" + } + }, + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://npm.corp.kuaishou.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" + }, + "minimatch": { + "version": "3.1.2", + "resolved": "https://npm.corp.kuaishou.com/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "1.2.7", + "resolved": "https://npm.corp.kuaishou.com/minimist/-/minimist-1.2.7.tgz", + "integrity": "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==" + }, + "miniprogram-api-typings": { + "version": "2.12.0", + "resolved": "https://npm.corp.kuaishou.com/miniprogram-api-typings/-/miniprogram-api-typings-2.12.0.tgz", + "integrity": "sha1-einJDz5e+jZYhCLR8B4i0zlKqqE=" + }, + "monaco-editor": { + "version": "0.34.1", + "resolved": "https://npm.corp.kuaishou.com/monaco-editor/-/monaco-editor-0.34.1.tgz", + "integrity": "sha512-FKc80TyiMaruhJKKPz5SpJPIjL+dflGvz4CpuThaPMc94AyN7SeC9HQ8hrvaxX7EyHdJcUY5i4D0gNyJj1vSZQ==" + }, + "ms": { + "version": "2.1.3", + "resolved": "https://npm.corp.kuaishou.com/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + }, + "multicast-dns": { + "version": "7.2.5", + "resolved": "https://npm.corp.kuaishou.com/multicast-dns/-/multicast-dns-7.2.5.tgz", + "integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==", + "requires": { + "dns-packet": "^5.2.2", + "thunky": "^1.0.2" + } + }, + "nanoid": { + "version": "3.3.4", + "resolved": "https://npm.corp.kuaishou.com/nanoid/-/nanoid-3.3.4.tgz", + "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==" + }, + "negotiator": { + "version": "0.6.3", + "resolved": "https://npm.corp.kuaishou.com/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" + }, + "neo-async": { + "version": "2.6.2", + "resolved": "https://npm.corp.kuaishou.com/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" + }, + "no-case": { + "version": "3.0.4", + "resolved": "https://npm.corp.kuaishou.com/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha1-02H9XJgA9VhVGoNp/A3NRmK2Ek0=", + "requires": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node-forge": { + "version": "1.3.1", + "resolved": "https://npm.corp.kuaishou.com/node-forge/-/node-forge-1.3.1.tgz", + "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==" + }, + "node-releases": { + "version": "2.0.6", + "resolved": "https://npm.corp.kuaishou.com/node-releases/-/node-releases-2.0.6.tgz", + "integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==" + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://npm.corp.kuaishou.com/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" + }, + "normalize-range": { + "version": "0.1.2", + "resolved": "https://npm.corp.kuaishou.com/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=" + }, + "npm": { + "version": "8.19.3", + "resolved": "https://npm.corp.kuaishou.com/npm/-/npm-8.19.3.tgz", + "integrity": "sha512-0QjmyPtDxSyMWWD8I91QGbrgx9KzbV6C9FK1liEb/K0zppiZkr5KxXc990G+LzPwBHDfRjUBlO9T1qZ08vl9mA==", + "requires": { + "@isaacs/string-locale-compare": "^1.1.0", + "@npmcli/arborist": "^5.6.3", + "@npmcli/ci-detect": "^2.0.0", + "@npmcli/config": "^4.2.1", + "@npmcli/fs": "^2.1.0", + "@npmcli/map-workspaces": "^2.0.3", + "@npmcli/package-json": "^2.0.0", + "@npmcli/run-script": "^4.2.1", + "abbrev": "~1.1.1", + "archy": "~1.0.0", + "cacache": "^16.1.3", + "chalk": "^4.1.2", + "chownr": "^2.0.0", + "cli-columns": "^4.0.0", + "cli-table3": "^0.6.2", + "columnify": "^1.6.0", + "fastest-levenshtein": "^1.0.12", + "fs-minipass": "^2.1.0", + "glob": "^8.0.1", + "graceful-fs": "^4.2.10", + "hosted-git-info": "^5.2.1", + "ini": "^3.0.1", + "init-package-json": "^3.0.2", + "is-cidr": "^4.0.2", + "json-parse-even-better-errors": "^2.3.1", + "libnpmaccess": "^6.0.4", + "libnpmdiff": "^4.0.5", + "libnpmexec": "^4.0.14", + "libnpmfund": "^3.0.5", + "libnpmhook": "^8.0.4", + "libnpmorg": "^4.0.4", + "libnpmpack": "^4.1.3", + "libnpmpublish": "^6.0.5", + "libnpmsearch": "^5.0.4", + "libnpmteam": "^4.0.4", + "libnpmversion": "^3.0.7", + "make-fetch-happen": "^10.2.0", + "minimatch": "^5.1.0", + "minipass": "^3.1.6", + "minipass-pipeline": "^1.2.4", + "mkdirp": "^1.0.4", + "mkdirp-infer-owner": "^2.0.0", + "ms": "^2.1.2", + "node-gyp": "^9.1.0", + "nopt": "^6.0.0", + "npm-audit-report": "^3.0.0", + "npm-install-checks": "^5.0.0", + "npm-package-arg": "^9.1.0", + "npm-pick-manifest": "^7.0.2", + "npm-profile": "^6.2.0", + "npm-registry-fetch": "^13.3.1", + "npm-user-validate": "^1.0.1", + "npmlog": "^6.0.2", + "opener": "^1.5.2", + "p-map": "^4.0.0", + "pacote": "^13.6.2", + "parse-conflict-json": "^2.0.2", + "proc-log": "^2.0.1", + "qrcode-terminal": "^0.12.0", + "read": "~1.0.7", + "read-package-json": "^5.0.2", + "read-package-json-fast": "^2.0.3", + "readdir-scoped-modules": "^1.1.0", + "rimraf": "^3.0.2", + "semver": "^7.3.7", + "ssri": "^9.0.1", + "tar": "^6.1.11", + "text-table": "~0.2.0", + "tiny-relative-date": "^1.3.0", + "treeverse": "^2.0.0", + "validate-npm-package-name": "^4.0.0", + "which": "^2.0.2", + "write-file-atomic": "^4.0.1" + }, + "dependencies": { + "@colors/colors": { + "version": "1.5.0", + "resolved": "https://npm.corp.kuaishou.com/@colors%2fcolors/-/colors-1.5.0.tgz", + "integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==", + "bundled": true, + "optional": true + }, + "@gar/promisify": { + "version": "1.1.3", + "resolved": "https://npm.corp.kuaishou.com/@gar%2fpromisify/-/promisify-1.1.3.tgz", + "integrity": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==", + "bundled": true + }, + "@isaacs/string-locale-compare": { + "version": "1.1.0", + "resolved": "https://npm.corp.kuaishou.com/@isaacs%2fstring-locale-compare/-/string-locale-compare-1.1.0.tgz", + "integrity": "sha1-KRwifpP9QHqW7NWYeaNYCRIOQys=", + "bundled": true + }, + "@npmcli/arborist": { + "version": "5.6.3", + "resolved": "https://npm.corp.kuaishou.com/@npmcli%2farborist/-/arborist-5.6.3.tgz", + "integrity": "sha512-/7hbqEM6YuRjwTcQXkK1+xKslEblY5kFQe0tZ7jKyMlIR6x4iOmhLErIkBBGtTKvYxRKdpcxnFXjCobg3UqmsA==", + "bundled": true, + "requires": { + "@isaacs/string-locale-compare": "^1.1.0", + "@npmcli/installed-package-contents": "^1.0.7", + "@npmcli/map-workspaces": "^2.0.3", + "@npmcli/metavuln-calculator": "^3.0.1", + "@npmcli/move-file": "^2.0.0", + "@npmcli/name-from-folder": "^1.0.1", + "@npmcli/node-gyp": "^2.0.0", + "@npmcli/package-json": "^2.0.0", + "@npmcli/query": "^1.2.0", + "@npmcli/run-script": "^4.1.3", + "bin-links": "^3.0.3", + "cacache": "^16.1.3", + "common-ancestor-path": "^1.0.1", + "hosted-git-info": "^5.2.1", + "json-parse-even-better-errors": "^2.3.1", + "json-stringify-nice": "^1.1.4", + "minimatch": "^5.1.0", + "mkdirp": "^1.0.4", + "mkdirp-infer-owner": "^2.0.0", + "nopt": "^6.0.0", + "npm-install-checks": "^5.0.0", + "npm-package-arg": "^9.0.0", + "npm-pick-manifest": "^7.0.2", + "npm-registry-fetch": "^13.0.0", + "npmlog": "^6.0.2", + "pacote": "^13.6.1", + "parse-conflict-json": "^2.0.1", + "proc-log": "^2.0.0", + "promise-all-reject-late": "^1.0.0", + "promise-call-limit": "^1.0.1", + "read-package-json-fast": "^2.0.2", + "readdir-scoped-modules": "^1.1.0", + "rimraf": "^3.0.2", + "semver": "^7.3.7", + "ssri": "^9.0.0", + "treeverse": "^2.0.0", + "walk-up-path": "^1.0.0" + } + }, + "@npmcli/ci-detect": { + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/@npmcli%2fci-detect/-/ci-detect-2.0.0.tgz", + "integrity": "sha512-8yQtQ9ArHh/TzdUDKQwEvwCgpDuhSWTDAbiKMl3854PcT+Dk4UmWaiawuFTLy9n5twzXOBXVflWe+90/ffXQrA==", + "bundled": true + }, + "@npmcli/config": { + "version": "4.2.2", + "resolved": "https://npm.corp.kuaishou.com/@npmcli%2fconfig/-/config-4.2.2.tgz", + "integrity": "sha512-5GNcLd+0c4bYBnFop53+26CO5GQP0R9YcxlernohpHDWdIgzUg9I0+GEMk3sNHnLntATVU39d283A4OO+W402w==", + "bundled": true, + "requires": { + "@npmcli/map-workspaces": "^2.0.2", + "ini": "^3.0.0", + "mkdirp-infer-owner": "^2.0.0", + "nopt": "^6.0.0", + "proc-log": "^2.0.0", + "read-package-json-fast": "^2.0.3", + "semver": "^7.3.5", + "walk-up-path": "^1.0.0" + } + }, + "@npmcli/disparity-colors": { + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/@npmcli%2fdisparity-colors/-/disparity-colors-2.0.0.tgz", + "integrity": "sha512-FFXGrIjhvd2qSZ8iS0yDvbI7nbjdyT2VNO7wotosjYZM2p2r8PN3B7Om3M5NO9KqW/OVzfzLB3L0V5Vo5QXC7A==", + "bundled": true, + "requires": { + "ansi-styles": "^4.3.0" + } + }, + "@npmcli/fs": { + "version": "2.1.2", + "resolved": "https://npm.corp.kuaishou.com/@npmcli%2ffs/-/fs-2.1.2.tgz", + "integrity": "sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==", + "bundled": true, + "requires": { + "@gar/promisify": "^1.1.3", + "semver": "^7.3.5" + } + }, + "@npmcli/git": { + "version": "3.0.2", + "resolved": "https://npm.corp.kuaishou.com/@npmcli%2fgit/-/git-3.0.2.tgz", + "integrity": "sha512-CAcd08y3DWBJqJDpfuVL0uijlq5oaXaOJEKHKc4wqrjd00gkvTZB+nFuLn+doOOKddaQS9JfqtNoFCO2LCvA3w==", + "bundled": true, + "requires": { + "@npmcli/promise-spawn": "^3.0.0", + "lru-cache": "^7.4.4", + "mkdirp": "^1.0.4", + "npm-pick-manifest": "^7.0.0", + "proc-log": "^2.0.0", + "promise-inflight": "^1.0.1", + "promise-retry": "^2.0.1", + "semver": "^7.3.5", + "which": "^2.0.2" + } + }, + "@npmcli/installed-package-contents": { + "version": "1.0.7", + "resolved": "https://npm.corp.kuaishou.com/@npmcli%2finstalled-package-contents/-/installed-package-contents-1.0.7.tgz", + "integrity": "sha1-q3QIxhR5EblwqKviYc5RIjKj9Po=", + "bundled": true, + "requires": { + "npm-bundled": "^1.1.1", + "npm-normalize-package-bin": "^1.0.1" + }, + "dependencies": { + "npm-bundled": { + "version": "1.1.2", + "resolved": "https://npm.corp.kuaishou.com/npm-bundled/-/npm-bundled-1.1.2.tgz", + "integrity": "sha1-lEx4eJvXOQNbcLqiylzDK42GC8E=", + "bundled": true, + "requires": { + "npm-normalize-package-bin": "^1.0.1" + } + } + } + }, + "@npmcli/map-workspaces": { + "version": "2.0.4", + "resolved": "https://npm.corp.kuaishou.com/@npmcli%2fmap-workspaces/-/map-workspaces-2.0.4.tgz", + "integrity": "sha512-bMo0aAfwhVwqoVM5UzX1DJnlvVvzDCHae821jv48L1EsrYwfOZChlqWYXEtto/+BkBXetPbEWgau++/brh4oVg==", + "bundled": true, + "requires": { + "@npmcli/name-from-folder": "^1.0.1", + "glob": "^8.0.1", + "minimatch": "^5.0.1", + "read-package-json-fast": "^2.0.3" + } + }, + "@npmcli/metavuln-calculator": { + "version": "3.1.1", + "resolved": "https://npm.corp.kuaishou.com/@npmcli%2fmetavuln-calculator/-/metavuln-calculator-3.1.1.tgz", + "integrity": "sha512-n69ygIaqAedecLeVH3KnO39M6ZHiJ2dEv5A7DGvcqCB8q17BGUgW8QaanIkbWUo2aYGZqJaOORTLAlIvKjNDKA==", + "bundled": true, + "requires": { + "cacache": "^16.0.0", + "json-parse-even-better-errors": "^2.3.1", + "pacote": "^13.0.3", + "semver": "^7.3.5" + } + }, + "@npmcli/move-file": { + "version": "2.0.1", + "resolved": "https://npm.corp.kuaishou.com/@npmcli%2fmove-file/-/move-file-2.0.1.tgz", + "integrity": "sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==", + "bundled": true, + "requires": { + "mkdirp": "^1.0.4", + "rimraf": "^3.0.2" + } + }, + "@npmcli/name-from-folder": { + "version": "1.0.1", + "resolved": "https://npm.corp.kuaishou.com/@npmcli%2fname-from-folder/-/name-from-folder-1.0.1.tgz", + "integrity": "sha1-d+zQpPy3crpv6Sfi4uFV++wuaxo=", + "bundled": true + }, + "@npmcli/node-gyp": { + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/@npmcli%2fnode-gyp/-/node-gyp-2.0.0.tgz", + "integrity": "sha512-doNI35wIe3bBaEgrlPfdJPaCpUR89pJWep4Hq3aRdh6gKazIVWfs0jHttvSSoq47ZXgC7h73kDsUl8AoIQUB+A==", + "bundled": true + }, + "@npmcli/package-json": { + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/@npmcli%2fpackage-json/-/package-json-2.0.0.tgz", + "integrity": "sha512-42jnZ6yl16GzjWSH7vtrmWyJDGVa/LXPdpN2rcUWolFjc9ON2N3uz0qdBbQACfmhuJZ2lbKYtmK5qx68ZPLHMA==", + "bundled": true, + "requires": { + "json-parse-even-better-errors": "^2.3.1" + } + }, + "@npmcli/promise-spawn": { + "version": "3.0.0", + "resolved": "https://npm.corp.kuaishou.com/@npmcli%2fpromise-spawn/-/promise-spawn-3.0.0.tgz", + "integrity": "sha512-s9SgS+p3a9Eohe68cSI3fi+hpcZUmXq5P7w0kMlAsWVtR7XbK3ptkZqKT2cK1zLDObJ3sR+8P59sJE0w/KTL1g==", + "bundled": true, + "requires": { + "infer-owner": "^1.0.4" + } + }, + "@npmcli/query": { + "version": "1.2.0", + "resolved": "https://npm.corp.kuaishou.com/@npmcli%2fquery/-/query-1.2.0.tgz", + "integrity": "sha512-uWglsUM3PjBLgTSmZ3/vygeGdvWEIZ3wTUnzGFbprC/RtvQSaT+GAXu1DXmSFj2bD3oOZdcRm1xdzsV2z1YWdw==", + "bundled": true, + "requires": { + "npm-package-arg": "^9.1.0", + "postcss-selector-parser": "^6.0.10", + "semver": "^7.3.7" + } + }, + "@npmcli/run-script": { + "version": "4.2.1", + "resolved": "https://npm.corp.kuaishou.com/@npmcli%2frun-script/-/run-script-4.2.1.tgz", + "integrity": "sha512-7dqywvVudPSrRCW5nTHpHgeWnbBtz8cFkOuKrecm6ih+oO9ciydhWt6OF7HlqupRRmB8Q/gECVdB9LMfToJbRg==", + "bundled": true, + "requires": { + "@npmcli/node-gyp": "^2.0.0", + "@npmcli/promise-spawn": "^3.0.0", + "node-gyp": "^9.0.0", + "read-package-json-fast": "^2.0.3", + "which": "^2.0.2" + } + }, + "@tootallnate/once": { + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/@tootallnate%2fonce/-/once-2.0.0.tgz", + "integrity": "sha1-9UShSNOrNYAcH2M6dEH9h8LkhL8=", + "bundled": true + }, + "abbrev": { + "version": "1.1.1", + "resolved": "https://npm.corp.kuaishou.com/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha1-+PLIh60Qv2f2NPAFtph/7TF5qsg=", + "bundled": true + }, + "agent-base": { + "version": "6.0.2", + "resolved": "https://npm.corp.kuaishou.com/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha1-Sf/1hXfP7j83F2/qtMIuAPhtf3c=", + "bundled": true, + "requires": { + "debug": "4" + } + }, + "agentkeepalive": { + "version": "4.2.1", + "resolved": "https://npm.corp.kuaishou.com/agentkeepalive/-/agentkeepalive-4.2.1.tgz", + "integrity": "sha512-Zn4cw2NEqd+9fiSVWMscnjyQ1a8Yfoc5oBajLeo5w+YBHgDUcEBY2hS4YpTz6iN5f/2zQiktcuM6tS8x1p9dpA==", + "bundled": true, + "requires": { + "debug": "^4.1.0", + "depd": "^1.1.2", + "humanize-ms": "^1.2.1" + } + }, + "aggregate-error": { + "version": "3.1.0", + "resolved": "https://npm.corp.kuaishou.com/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "bundled": true, + "requires": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + } + }, + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://npm.corp.kuaishou.com/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha1-CCyyyJyf6GWaMRpTvWpNxTAdswQ=", + "bundled": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://npm.corp.kuaishou.com/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "bundled": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "aproba": { + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/aproba/-/aproba-2.0.0.tgz", + "integrity": "sha1-UlILiuW1aSFbNU78DKo/4eRaitw=", + "bundled": true + }, + "archy": { + "version": "1.0.0", + "resolved": "https://npm.corp.kuaishou.com/archy/-/archy-1.0.0.tgz", + "integrity": "sha1-+cjBN1fMHde8N5rHeyxipcKGjEA=", + "bundled": true + }, + "are-we-there-yet": { + "version": "3.0.1", + "resolved": "https://npm.corp.kuaishou.com/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz", + "integrity": "sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==", + "bundled": true, + "requires": { + "delegates": "^1.0.0", + "readable-stream": "^3.6.0" + } + }, + "asap": { + "version": "2.0.6", + "resolved": "https://npm.corp.kuaishou.com/asap/-/asap-2.0.6.tgz", + "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==", + "bundled": true + }, + "balanced-match": { + "version": "1.0.2", + "resolved": "https://npm.corp.kuaishou.com/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha1-6D46fj8wCzTLnYf2FfoMvzV2kO4=", + "bundled": true + }, + "bin-links": { + "version": "3.0.3", + "resolved": "https://npm.corp.kuaishou.com/bin-links/-/bin-links-3.0.3.tgz", + "integrity": "sha512-zKdnMPWEdh4F5INR07/eBrodC7QrF5JKvqskjz/ZZRXg5YSAZIbn8zGhbhUrElzHBZ2fvEQdOU59RHcTG3GiwA==", + "bundled": true, + "requires": { + "cmd-shim": "^5.0.0", + "mkdirp-infer-owner": "^2.0.0", + "npm-normalize-package-bin": "^2.0.0", + "read-cmd-shim": "^3.0.0", + "rimraf": "^3.0.0", + "write-file-atomic": "^4.0.0" + }, + "dependencies": { + "npm-normalize-package-bin": { + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/npm-normalize-package-bin/-/npm-normalize-package-bin-2.0.0.tgz", + "integrity": "sha512-awzfKUO7v0FscrSpRoogyNm0sajikhBWpU0QMrW09AMi9n1PoKU6WaIqUzuJSQnpciZZmJ/jMZ2Egfmb/9LiWQ==", + "bundled": true + } + } + }, + "binary-extensions": { + "version": "2.2.0", + "resolved": "https://npm.corp.kuaishou.com/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "bundled": true + }, + "brace-expansion": { + "version": "2.0.1", + "resolved": "https://npm.corp.kuaishou.com/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha1-HtxFng8MVISG7Pn8mfIiE2S5oK4=", + "bundled": true, + "requires": { + "balanced-match": "^1.0.0" + } + }, + "builtins": { + "version": "5.0.1", + "resolved": "https://npm.corp.kuaishou.com/builtins/-/builtins-5.0.1.tgz", + "integrity": "sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==", + "bundled": true, + "requires": { + "semver": "^7.0.0" + } + }, + "cacache": { + "version": "16.1.3", + "resolved": "https://npm.corp.kuaishou.com/cacache/-/cacache-16.1.3.tgz", + "integrity": "sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==", + "bundled": true, + "requires": { + "@npmcli/fs": "^2.1.0", + "@npmcli/move-file": "^2.0.0", + "chownr": "^2.0.0", + "fs-minipass": "^2.1.0", + "glob": "^8.0.1", + "infer-owner": "^1.0.4", + "lru-cache": "^7.7.1", + "minipass": "^3.1.6", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "mkdirp": "^1.0.4", + "p-map": "^4.0.0", + "promise-inflight": "^1.0.1", + "rimraf": "^3.0.2", + "ssri": "^9.0.0", + "tar": "^6.1.11", + "unique-filename": "^2.0.0" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://npm.corp.kuaishou.com/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "bundled": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "chownr": { + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha1-Fb++U9LqtM9w8YqM1o6+Wzyx3s4=", + "bundled": true + }, + "cidr-regex": { + "version": "3.1.1", + "resolved": "https://npm.corp.kuaishou.com/cidr-regex/-/cidr-regex-3.1.1.tgz", + "integrity": "sha1-uhlyxXxm9hh18Y/X3Uh0aXcLVx0=", + "bundled": true, + "requires": { + "ip-regex": "^4.1.0" + } + }, + "clean-stack": { + "version": "2.2.0", + "resolved": "https://npm.corp.kuaishou.com/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "bundled": true + }, + "cli-columns": { + "version": "4.0.0", + "resolved": "https://npm.corp.kuaishou.com/cli-columns/-/cli-columns-4.0.0.tgz", + "integrity": "sha1-n+TWWXUjjVUhjEG9LtKWp/pVVkY=", + "bundled": true, + "requires": { + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1" + } + }, + "cli-table3": { + "version": "0.6.2", + "bundled": true, + "requires": { + "@colors/colors": "1.5.0", + "string-width": "^4.2.0" + } + }, + "clone": { + "version": "1.0.4", + "resolved": "https://npm.corp.kuaishou.com/clone/-/clone-1.0.4.tgz", + "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=", + "bundled": true + }, + "cmd-shim": { + "version": "5.0.0", + "resolved": "https://npm.corp.kuaishou.com/cmd-shim/-/cmd-shim-5.0.0.tgz", + "integrity": "sha512-qkCtZ59BidfEwHltnJwkyVZn+XQojdAySM1D1gSeh11Z4pW1Kpolkyo53L5noc0nrxmIvyFwTmJRo4xs7FFLPw==", + "bundled": true, + "requires": { + "mkdirp-infer-owner": "^2.0.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://npm.corp.kuaishou.com/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=", + "bundled": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://npm.corp.kuaishou.com/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=", + "bundled": true + }, + "color-support": { + "version": "1.1.3", + "resolved": "https://npm.corp.kuaishou.com/color-support/-/color-support-1.1.3.tgz", + "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", + "bundled": true + }, + "columnify": { + "version": "1.6.0", + "resolved": "https://npm.corp.kuaishou.com/columnify/-/columnify-1.6.0.tgz", + "integrity": "sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q==", + "bundled": true, + "requires": { + "strip-ansi": "^6.0.1", + "wcwidth": "^1.0.0" + } + }, + "common-ancestor-path": { + "version": "1.0.1", + "resolved": "https://npm.corp.kuaishou.com/common-ancestor-path/-/common-ancestor-path-1.0.1.tgz", + "integrity": "sha1-T30tE5TZG3q99Rhxxi9x6tsBgqc=", + "bundled": true + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://npm.corp.kuaishou.com/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "bundled": true + }, + "console-control-strings": { + "version": "1.1.0", + "resolved": "https://npm.corp.kuaishou.com/console-control-strings/-/console-control-strings-1.1.0.tgz", + "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=", + "bundled": true + }, + "cssesc": { + "version": "3.0.0", + "resolved": "https://npm.corp.kuaishou.com/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "bundled": true + }, + "debug": { + "version": "4.3.4", + "resolved": "https://npm.corp.kuaishou.com/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "bundled": true, + "requires": { + "ms": "2.1.2" + }, + "dependencies": { + "ms": { + "version": "2.1.2", + "resolved": "https://npm.corp.kuaishou.com/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "bundled": true + } + } + }, + "debuglog": { + "version": "1.0.1", + "resolved": "https://npm.corp.kuaishou.com/debuglog/-/debuglog-1.0.1.tgz", + "integrity": "sha1-qiT/uaw9+aI1GDfPstJ5NgzXhJI=", + "bundled": true + }, + "defaults": { + "version": "1.0.3", + "bundled": true, + "requires": { + "clone": "^1.0.2" + } + }, + "delegates": { + "version": "1.0.0", + "resolved": "https://npm.corp.kuaishou.com/delegates/-/delegates-1.0.0.tgz", + "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==", + "bundled": true + }, + "depd": { + "version": "1.1.2", + "resolved": "https://npm.corp.kuaishou.com/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", + "bundled": true + }, + "dezalgo": { + "version": "1.0.4", + "resolved": "https://npm.corp.kuaishou.com/dezalgo/-/dezalgo-1.0.4.tgz", + "integrity": "sha512-rXSP0bf+5n0Qonsb+SVVfNfIsimO4HEtmnIpPHY8Q1UCzKlQrDMfdobr8nJOOsRgWCyMRqeSBQzmWUMq7zvVig==", + "bundled": true, + "requires": { + "asap": "^2.0.0", + "wrappy": "1" + } + }, + "diff": { + "version": "5.1.0", + "resolved": "https://npm.corp.kuaishou.com/diff/-/diff-5.1.0.tgz", + "integrity": "sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==", + "bundled": true + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://npm.corp.kuaishou.com/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha1-6Bj9ac5cz8tARZT4QpY79TFkzDc=", + "bundled": true + }, + "encoding": { + "version": "0.1.13", + "resolved": "https://npm.corp.kuaishou.com/encoding/-/encoding-0.1.13.tgz", + "integrity": "sha1-VldK/deR9UqOmyeFwFgqLSYhD6k=", + "bundled": true, + "optional": true, + "requires": { + "iconv-lite": "^0.6.2" + } + }, + "env-paths": { + "version": "2.2.1", + "resolved": "https://npm.corp.kuaishou.com/env-paths/-/env-paths-2.2.1.tgz", + "integrity": "sha1-QgOZ1BbOH76bwKB8Yvpo1n/Q+PI=", + "bundled": true + }, + "err-code": { + "version": "2.0.3", + "resolved": "https://npm.corp.kuaishou.com/err-code/-/err-code-2.0.3.tgz", + "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==", + "bundled": true + }, + "fastest-levenshtein": { + "version": "1.0.12", + "bundled": true + }, + "fs-minipass": { + "version": "2.1.0", + "resolved": "https://npm.corp.kuaishou.com/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha1-f1A2/b8SxjwWkZDL5BmchSJx+fs=", + "bundled": true, + "requires": { + "minipass": "^3.0.0" + } + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://npm.corp.kuaishou.com/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "bundled": true + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://npm.corp.kuaishou.com/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "bundled": true + }, + "gauge": { + "version": "4.0.4", + "resolved": "https://npm.corp.kuaishou.com/gauge/-/gauge-4.0.4.tgz", + "integrity": "sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==", + "bundled": true, + "requires": { + "aproba": "^1.0.3 || ^2.0.0", + "color-support": "^1.1.3", + "console-control-strings": "^1.1.0", + "has-unicode": "^2.0.1", + "signal-exit": "^3.0.7", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1", + "wide-align": "^1.1.5" + } + }, + "glob": { + "version": "8.0.3", + "resolved": "https://npm.corp.kuaishou.com/glob/-/glob-8.0.3.tgz", + "integrity": "sha512-ull455NHSHI/Y1FqGaaYFaLGkNMMJbavMrEGFXG/PGrg6y7sutWHUHrz6gy6WEBH6akM1M414dWKCNs+IhKdiQ==", + "bundled": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" + } + }, + "graceful-fs": { + "version": "4.2.10", + "resolved": "https://npm.corp.kuaishou.com/graceful-fs/-/graceful-fs-4.2.10.tgz", + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", + "bundled": true + }, + "has": { + "version": "1.0.3", + "resolved": "https://npm.corp.kuaishou.com/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "bundled": true, + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://npm.corp.kuaishou.com/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=", + "bundled": true + }, + "has-unicode": { + "version": "2.0.1", + "resolved": "https://npm.corp.kuaishou.com/has-unicode/-/has-unicode-2.0.1.tgz", + "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==", + "bundled": true + }, + "hosted-git-info": { + "version": "5.2.1", + "resolved": "https://npm.corp.kuaishou.com/hosted-git-info/-/hosted-git-info-5.2.1.tgz", + "integrity": "sha512-xIcQYMnhcx2Nr4JTjsFmwwnr9vldugPy9uVm0o87bjqqWMv9GaqsTeT+i99wTl0mk1uLxJtHxLb8kymqTENQsw==", + "bundled": true, + "requires": { + "lru-cache": "^7.5.1" + } + }, + "http-cache-semantics": { + "version": "4.1.0", + "resolved": "https://npm.corp.kuaishou.com/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz", + "integrity": "sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==", + "bundled": true + }, + "http-proxy-agent": { + "version": "5.0.0", + "resolved": "https://npm.corp.kuaishou.com/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", + "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", + "bundled": true, + "requires": { + "@tootallnate/once": "2", + "agent-base": "6", + "debug": "4" + } + }, + "https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://npm.corp.kuaishou.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "bundled": true, + "requires": { + "agent-base": "6", + "debug": "4" + } + }, + "humanize-ms": { + "version": "1.2.1", + "resolved": "https://npm.corp.kuaishou.com/humanize-ms/-/humanize-ms-1.2.1.tgz", + "integrity": "sha1-xG4xWaKT9riW2ikxbYtv6Lt5u+0=", + "bundled": true, + "requires": { + "ms": "^2.0.0" + } + }, + "iconv-lite": { + "version": "0.6.3", + "resolved": "https://npm.corp.kuaishou.com/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "bundled": true, + "optional": true, + "requires": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + } + }, + "ignore-walk": { + "version": "5.0.1", + "resolved": "https://npm.corp.kuaishou.com/ignore-walk/-/ignore-walk-5.0.1.tgz", + "integrity": "sha512-yemi4pMf51WKT7khInJqAvsIGzoqYXblnsz0ql8tM+yi1EKYTY1evX4NAbJrLL/Aanr2HyZeluqU+Oi7MGHokw==", + "bundled": true, + "requires": { + "minimatch": "^5.0.1" + } + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://npm.corp.kuaishou.com/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "bundled": true + }, + "indent-string": { + "version": "4.0.0", + "resolved": "https://npm.corp.kuaishou.com/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "bundled": true + }, + "infer-owner": { + "version": "1.0.4", + "resolved": "https://npm.corp.kuaishou.com/infer-owner/-/infer-owner-1.0.4.tgz", + "integrity": "sha1-xM78qo5RBRwqQLos6KPScpWvlGc=", + "bundled": true + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://npm.corp.kuaishou.com/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "bundled": true, + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://npm.corp.kuaishou.com/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha1-D6LGT5MpF8NDOg3tVTY6rjdBa3w=", + "bundled": true + }, + "ini": { + "version": "3.0.1", + "resolved": "https://npm.corp.kuaishou.com/ini/-/ini-3.0.1.tgz", + "integrity": "sha512-it4HyVAUTKBc6m8e1iXWvXSTdndF7HbdN713+kvLrymxTaU4AUBWrJ4vEooP+V7fexnVD3LKcBshjGGPefSMUQ==", + "bundled": true + }, + "init-package-json": { + "version": "3.0.2", + "resolved": "https://npm.corp.kuaishou.com/init-package-json/-/init-package-json-3.0.2.tgz", + "integrity": "sha512-YhlQPEjNFqlGdzrBfDNRLhvoSgX7iQRgSxgsNknRQ9ITXFT7UMfVMWhBTOh2Y+25lRnGrv5Xz8yZwQ3ACR6T3A==", + "bundled": true, + "requires": { + "npm-package-arg": "^9.0.1", + "promzard": "^0.3.0", + "read": "^1.0.7", + "read-package-json": "^5.0.0", + "semver": "^7.3.5", + "validate-npm-package-license": "^3.0.4", + "validate-npm-package-name": "^4.0.0" + } + }, + "ip": { + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/ip/-/ip-2.0.0.tgz", + "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==", + "bundled": true + }, + "ip-regex": { + "version": "4.3.0", + "resolved": "https://npm.corp.kuaishou.com/ip-regex/-/ip-regex-4.3.0.tgz", + "integrity": "sha1-aHJ1qw9X+naXj/j03dyKI9WZDbU=", + "bundled": true + }, + "is-cidr": { + "version": "4.0.2", + "resolved": "https://npm.corp.kuaishou.com/is-cidr/-/is-cidr-4.0.2.tgz", + "integrity": "sha1-lMdYXkxsd86r+SD4zeUbjA/aiBQ=", + "bundled": true, + "requires": { + "cidr-regex": "^3.1.1" + } + }, + "is-core-module": { + "version": "2.10.0", + "bundled": true, + "requires": { + "has": "^1.0.3" + } + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://npm.corp.kuaishou.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "bundled": true + }, + "is-lambda": { + "version": "1.0.1", + "resolved": "https://npm.corp.kuaishou.com/is-lambda/-/is-lambda-1.0.1.tgz", + "integrity": "sha1-PZh3iZ5qU+/AFgUEzeFfgubwYdU=", + "bundled": true + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "bundled": true + }, + "json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://npm.corp.kuaishou.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "bundled": true + }, + "json-stringify-nice": { + "version": "1.1.4", + "resolved": "https://npm.corp.kuaishou.com/json-stringify-nice/-/json-stringify-nice-1.1.4.tgz", + "integrity": "sha1-LJN5YrgBgdPzF905qjI+FPWmCmc=", + "bundled": true + }, + "jsonparse": { + "version": "1.3.1", + "resolved": "https://npm.corp.kuaishou.com/jsonparse/-/jsonparse-1.3.1.tgz", + "integrity": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==", + "bundled": true + }, + "just-diff": { + "version": "5.1.1", + "resolved": "https://npm.corp.kuaishou.com/just-diff/-/just-diff-5.1.1.tgz", + "integrity": "sha512-u8HXJ3HlNrTzY7zrYYKjNEfBlyjqhdBkoyTVdjtn7p02RJD5NvR8rIClzeGA7t+UYP1/7eAkWNLU0+P3QrEqKQ==", + "bundled": true + }, + "just-diff-apply": { + "version": "5.4.1", + "resolved": "https://npm.corp.kuaishou.com/just-diff-apply/-/just-diff-apply-5.4.1.tgz", + "integrity": "sha512-AAV5Jw7tsniWwih8Ly3fXxEZ06y+6p5TwQMsw0dzZ/wPKilzyDgdAnL0Ug4NNIquPUOh1vfFWEHbmXUqM5+o8g==", + "bundled": true + }, + "libnpmaccess": { + "version": "6.0.4", + "resolved": "https://npm.corp.kuaishou.com/libnpmaccess/-/libnpmaccess-6.0.4.tgz", + "integrity": "sha512-qZ3wcfIyUoW0+qSFkMBovcTrSGJ3ZeyvpR7d5N9pEYv/kXs8sHP2wiqEIXBKLFrZlmM0kR0RJD7mtfLngtlLag==", + "bundled": true, + "requires": { + "aproba": "^2.0.0", + "minipass": "^3.1.1", + "npm-package-arg": "^9.0.1", + "npm-registry-fetch": "^13.0.0" + } + }, + "libnpmdiff": { + "version": "4.0.5", + "resolved": "https://npm.corp.kuaishou.com/libnpmdiff/-/libnpmdiff-4.0.5.tgz", + "integrity": "sha512-9fICQIzmH892UwHHPmb+Seup50UIBWcMIK2FdxvlXm9b4kc1nSH0b/BuY1mORJQtB6ydPMnn+BLzOTmd/SKJmw==", + "bundled": true, + "requires": { + "@npmcli/disparity-colors": "^2.0.0", + "@npmcli/installed-package-contents": "^1.0.7", + "binary-extensions": "^2.2.0", + "diff": "^5.1.0", + "minimatch": "^5.0.1", + "npm-package-arg": "^9.0.1", + "pacote": "^13.6.1", + "tar": "^6.1.0" + } + }, + "libnpmexec": { + "version": "4.0.14", + "resolved": "https://npm.corp.kuaishou.com/libnpmexec/-/libnpmexec-4.0.14.tgz", + "integrity": "sha512-dwmzv2K29SdoAHBOa7QR6CfQbFG/PiZDRF6HZrlI6C4DLt2hNgOHTFaUGOpqE2C+YGu0ZwYTDywxRe0eOnf0ZA==", + "bundled": true, + "requires": { + "@npmcli/arborist": "^5.6.3", + "@npmcli/ci-detect": "^2.0.0", + "@npmcli/fs": "^2.1.1", + "@npmcli/run-script": "^4.2.0", + "chalk": "^4.1.0", + "mkdirp-infer-owner": "^2.0.0", + "npm-package-arg": "^9.0.1", + "npmlog": "^6.0.2", + "pacote": "^13.6.1", + "proc-log": "^2.0.0", + "read": "^1.0.7", + "read-package-json-fast": "^2.0.2", + "semver": "^7.3.7", + "walk-up-path": "^1.0.0" + } + }, + "libnpmfund": { + "version": "3.0.5", + "resolved": "https://npm.corp.kuaishou.com/libnpmfund/-/libnpmfund-3.0.5.tgz", + "integrity": "sha512-KdeRoG/dem8H3PcEU2/0SKi3ip7AWwczgS72y/3PE+PBrz/s/G52FNIA9jeLnBirkLC0sOyQHfeM3b7e24ZM+g==", + "bundled": true, + "requires": { + "@npmcli/arborist": "^5.6.3" + } + }, + "libnpmhook": { + "version": "8.0.4", + "resolved": "https://npm.corp.kuaishou.com/libnpmhook/-/libnpmhook-8.0.4.tgz", + "integrity": "sha512-nuD6e+Nx0OprjEi0wOeqASMl6QIH235th/Du2/8upK3evByFhzIgdfOeP1OhstavW4xtsl0hk5Vw4fAWWuSUgA==", + "bundled": true, + "requires": { + "aproba": "^2.0.0", + "npm-registry-fetch": "^13.0.0" + } + }, + "libnpmorg": { + "version": "4.0.4", + "resolved": "https://npm.corp.kuaishou.com/libnpmorg/-/libnpmorg-4.0.4.tgz", + "integrity": "sha512-1bTpD7iub1rDCsgiBguhJhiDufLQuc8DEti20euqsXz9O0ncXVpCYqf2SMmHR4GEdmAvAj2r7FMiyA9zGdaTpA==", + "bundled": true, + "requires": { + "aproba": "^2.0.0", + "npm-registry-fetch": "^13.0.0" + } + }, + "libnpmpack": { + "version": "4.1.3", + "resolved": "https://npm.corp.kuaishou.com/libnpmpack/-/libnpmpack-4.1.3.tgz", + "integrity": "sha512-rYP4X++ME3ZiFO+2iN3YnXJ4LB4Gsd0z5cgszWJZxaEpDN4lRIXirSyynGNsN/hn4taqnlxD+3DPlFDShvRM8w==", + "bundled": true, + "requires": { + "@npmcli/run-script": "^4.1.3", + "npm-package-arg": "^9.0.1", + "pacote": "^13.6.1" + } + }, + "libnpmpublish": { + "version": "6.0.5", + "resolved": "https://npm.corp.kuaishou.com/libnpmpublish/-/libnpmpublish-6.0.5.tgz", + "integrity": "sha512-LUR08JKSviZiqrYTDfywvtnsnxr+tOvBU0BF8H+9frt7HMvc6Qn6F8Ubm72g5hDTHbq8qupKfDvDAln2TVPvFg==", + "bundled": true, + "requires": { + "normalize-package-data": "^4.0.0", + "npm-package-arg": "^9.0.1", + "npm-registry-fetch": "^13.0.0", + "semver": "^7.3.7", + "ssri": "^9.0.0" + } + }, + "libnpmsearch": { + "version": "5.0.4", + "resolved": "https://npm.corp.kuaishou.com/libnpmsearch/-/libnpmsearch-5.0.4.tgz", + "integrity": "sha512-XHDmsvpN5+pufvGnfLRqpy218gcGGbbbXR6wPrDJyd1em6agKdYByzU5ccskDHH9iVm2UeLydpDsW1ksYuU0cg==", + "bundled": true, + "requires": { + "npm-registry-fetch": "^13.0.0" + } + }, + "libnpmteam": { + "version": "4.0.4", + "resolved": "https://npm.corp.kuaishou.com/libnpmteam/-/libnpmteam-4.0.4.tgz", + "integrity": "sha512-rzKSwi6MLzwwevbM/vl+BBQTErgn24tCfgPUdzBlszrw3j5necOu7WnTzgvZMDv6maGUwec6Ut1rxszOgH0l+Q==", + "bundled": true, + "requires": { + "aproba": "^2.0.0", + "npm-registry-fetch": "^13.0.0" + } + }, + "libnpmversion": { + "version": "3.0.7", + "resolved": "https://npm.corp.kuaishou.com/libnpmversion/-/libnpmversion-3.0.7.tgz", + "integrity": "sha512-O0L4eNMUIMQ+effi1HsZPKp2N6wecwqGqB8PvkvmLPWN7EsdabdzAVG48nv0p/OjlbIai5KQg/L+qMMfCA4ZjA==", + "bundled": true, + "requires": { + "@npmcli/git": "^3.0.0", + "@npmcli/run-script": "^4.1.3", + "json-parse-even-better-errors": "^2.3.1", + "proc-log": "^2.0.0", + "semver": "^7.3.7" + } + }, + "lru-cache": { + "version": "7.13.2", + "bundled": true + }, + "make-fetch-happen": { + "version": "10.2.1", + "resolved": "https://npm.corp.kuaishou.com/make-fetch-happen/-/make-fetch-happen-10.2.1.tgz", + "integrity": "sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==", + "bundled": true, + "requires": { + "agentkeepalive": "^4.2.1", + "cacache": "^16.1.0", + "http-cache-semantics": "^4.1.0", + "http-proxy-agent": "^5.0.0", + "https-proxy-agent": "^5.0.0", + "is-lambda": "^1.0.1", + "lru-cache": "^7.7.1", + "minipass": "^3.1.6", + "minipass-collect": "^1.0.2", + "minipass-fetch": "^2.0.3", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "negotiator": "^0.6.3", + "promise-retry": "^2.0.1", + "socks-proxy-agent": "^7.0.0", + "ssri": "^9.0.0" + } + }, + "minimatch": { + "version": "5.1.0", + "resolved": "https://npm.corp.kuaishou.com/minimatch/-/minimatch-5.1.0.tgz", + "integrity": "sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==", + "bundled": true, + "requires": { + "brace-expansion": "^2.0.1" + } + }, + "minipass": { + "version": "3.3.4", + "resolved": "https://npm.corp.kuaishou.com/minipass/-/minipass-3.3.4.tgz", + "integrity": "sha512-I9WPbWHCGu8W+6k1ZiGpPu0GkoKBeorkfKNuAFBNS1HNFJvke82sxvI5bzcCNpWPorkOO5QQ+zomzzwRxejXiw==", + "bundled": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "minipass-collect": { + "version": "1.0.2", + "resolved": "https://npm.corp.kuaishou.com/minipass-collect/-/minipass-collect-1.0.2.tgz", + "integrity": "sha1-IrgTv3Rdxu26JXa5QAIq1u3Ixhc=", + "bundled": true, + "requires": { + "minipass": "^3.0.0" + } + }, + "minipass-fetch": { + "version": "2.1.1", + "bundled": true, + "requires": { + "encoding": "^0.1.13", + "minipass": "^3.1.6", + "minipass-sized": "^1.0.3", + "minizlib": "^2.1.2" + } + }, + "minipass-flush": { + "version": "1.0.5", + "resolved": "https://npm.corp.kuaishou.com/minipass-flush/-/minipass-flush-1.0.5.tgz", + "integrity": "sha1-gucTXX6JpQ/+ZGEKeHlTxMTLs3M=", + "bundled": true, + "requires": { + "minipass": "^3.0.0" + } + }, + "minipass-json-stream": { + "version": "1.0.1", + "resolved": "https://npm.corp.kuaishou.com/minipass-json-stream/-/minipass-json-stream-1.0.1.tgz", + "integrity": "sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==", + "bundled": true, + "requires": { + "jsonparse": "^1.3.1", + "minipass": "^3.0.0" + } + }, + "minipass-pipeline": { + "version": "1.2.4", + "resolved": "https://npm.corp.kuaishou.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", + "integrity": "sha1-aEcveXEcCEZXwGfFxq2Tzd6oIUw=", + "bundled": true, + "requires": { + "minipass": "^3.0.0" + } + }, + "minipass-sized": { + "version": "1.0.3", + "resolved": "https://npm.corp.kuaishou.com/minipass-sized/-/minipass-sized-1.0.3.tgz", + "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==", + "bundled": true, + "requires": { + "minipass": "^3.0.0" + } + }, + "minizlib": { + "version": "2.1.2", + "resolved": "https://npm.corp.kuaishou.com/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha1-6Q00Zrogm5MkUVCKEc49NjIUWTE=", + "bundled": true, + "requires": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + } + }, + "mkdirp": { + "version": "1.0.4", + "resolved": "https://npm.corp.kuaishou.com/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha1-PrXtYmInVteaXw4qIh3+utdcL34=", + "bundled": true + }, + "mkdirp-infer-owner": { + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/mkdirp-infer-owner/-/mkdirp-infer-owner-2.0.0.tgz", + "integrity": "sha1-VdOzaOfYkGXDjzL9OOY48Kth0xY=", + "bundled": true, + "requires": { + "chownr": "^2.0.0", + "infer-owner": "^1.0.4", + "mkdirp": "^1.0.3" + } + }, + "ms": { + "version": "2.1.3", + "resolved": "https://npm.corp.kuaishou.com/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "bundled": true + }, + "mute-stream": { + "version": "0.0.8", + "resolved": "https://npm.corp.kuaishou.com/mute-stream/-/mute-stream-0.0.8.tgz", + "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", + "bundled": true + }, + "negotiator": { + "version": "0.6.3", + "resolved": "https://npm.corp.kuaishou.com/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "bundled": true + }, + "node-gyp": { + "version": "9.1.0", + "bundled": true, + "requires": { + "env-paths": "^2.2.0", + "glob": "^7.1.4", + "graceful-fs": "^4.2.6", + "make-fetch-happen": "^10.0.3", + "nopt": "^5.0.0", + "npmlog": "^6.0.0", + "rimraf": "^3.0.2", + "semver": "^7.3.5", + "tar": "^6.1.2", + "which": "^2.0.2" + }, + "dependencies": { + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://npm.corp.kuaishou.com/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha1-PH/L9SnYcibz0vUrlm/1Jx60Qd0=", + "bundled": true, + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "glob": { + "version": "7.2.3", + "resolved": "https://npm.corp.kuaishou.com/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "bundled": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "minimatch": { + "version": "3.1.2", + "resolved": "https://npm.corp.kuaishou.com/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "bundled": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "nopt": { + "version": "5.0.0", + "bundled": true, + "requires": { + "abbrev": "1" + } + } + } + }, + "nopt": { + "version": "6.0.0", + "resolved": "https://npm.corp.kuaishou.com/nopt/-/nopt-6.0.0.tgz", + "integrity": "sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==", + "bundled": true, + "requires": { + "abbrev": "^1.0.0" + } + }, + "normalize-package-data": { + "version": "4.0.1", + "resolved": "https://npm.corp.kuaishou.com/normalize-package-data/-/normalize-package-data-4.0.1.tgz", + "integrity": "sha512-EBk5QKKuocMJhB3BILuKhmaPjI8vNRSpIfO9woLC6NyHVkKKdVEdAO1mrT0ZfxNR1lKwCcTkuZfmGIFdizZ8Pg==", + "bundled": true, + "requires": { + "hosted-git-info": "^5.0.0", + "is-core-module": "^2.8.1", + "semver": "^7.3.5", + "validate-npm-package-license": "^3.0.4" + } + }, + "npm-audit-report": { + "version": "3.0.0", + "resolved": "https://npm.corp.kuaishou.com/npm-audit-report/-/npm-audit-report-3.0.0.tgz", + "integrity": "sha512-tWQzfbwz1sc4244Bx2BVELw0EmZlCsCF0X93RDcmmwhonCsPMoEviYsi+32R+mdRvOWXolPce9zo64n2xgPESw==", + "bundled": true, + "requires": { + "chalk": "^4.0.0" + } + }, + "npm-bundled": { + "version": "2.0.1", + "resolved": "https://npm.corp.kuaishou.com/npm-bundled/-/npm-bundled-2.0.1.tgz", + "integrity": "sha512-gZLxXdjEzE/+mOstGDqR6b0EkhJ+kM6fxM6vUuckuctuVPh80Q6pw/rSZj9s4Gex9GxWtIicO1pc8DB9KZWudw==", + "bundled": true, + "requires": { + "npm-normalize-package-bin": "^2.0.0" + }, + "dependencies": { + "npm-normalize-package-bin": { + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/npm-normalize-package-bin/-/npm-normalize-package-bin-2.0.0.tgz", + "integrity": "sha512-awzfKUO7v0FscrSpRoogyNm0sajikhBWpU0QMrW09AMi9n1PoKU6WaIqUzuJSQnpciZZmJ/jMZ2Egfmb/9LiWQ==", + "bundled": true + } + } + }, + "npm-install-checks": { + "version": "5.0.0", + "resolved": "https://npm.corp.kuaishou.com/npm-install-checks/-/npm-install-checks-5.0.0.tgz", + "integrity": "sha512-65lUsMI8ztHCxFz5ckCEC44DRvEGdZX5usQFriauxHEwt7upv1FKaQEmAtU0YnOAdwuNWCmk64xYiQABNrEyLA==", + "bundled": true, + "requires": { + "semver": "^7.1.1" + } + }, + "npm-normalize-package-bin": { + "version": "1.0.1", + "resolved": "https://npm.corp.kuaishou.com/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz", + "integrity": "sha1-bnmkHyP9I1wGIyGCKNp9nCO49uI=", + "bundled": true + }, + "npm-package-arg": { + "version": "9.1.0", + "bundled": true, + "requires": { + "hosted-git-info": "^5.0.0", + "proc-log": "^2.0.1", + "semver": "^7.3.5", + "validate-npm-package-name": "^4.0.0" + } + }, + "npm-packlist": { + "version": "5.1.3", + "resolved": "https://npm.corp.kuaishou.com/npm-packlist/-/npm-packlist-5.1.3.tgz", + "integrity": "sha512-263/0NGrn32YFYi4J533qzrQ/krmmrWwhKkzwTuM4f/07ug51odoaNjUexxO4vxlzURHcmYMH1QjvHjsNDKLVg==", + "bundled": true, + "requires": { + "glob": "^8.0.1", + "ignore-walk": "^5.0.1", + "npm-bundled": "^2.0.0", + "npm-normalize-package-bin": "^2.0.0" + }, + "dependencies": { + "npm-normalize-package-bin": { + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/npm-normalize-package-bin/-/npm-normalize-package-bin-2.0.0.tgz", + "integrity": "sha512-awzfKUO7v0FscrSpRoogyNm0sajikhBWpU0QMrW09AMi9n1PoKU6WaIqUzuJSQnpciZZmJ/jMZ2Egfmb/9LiWQ==", + "bundled": true + } + } + }, + "npm-pick-manifest": { + "version": "7.0.2", + "resolved": "https://npm.corp.kuaishou.com/npm-pick-manifest/-/npm-pick-manifest-7.0.2.tgz", + "integrity": "sha512-gk37SyRmlIjvTfcYl6RzDbSmS9Y4TOBXfsPnoYqTHARNgWbyDiCSMLUpmALDj4jjcTZpURiEfsSHJj9k7EV4Rw==", + "bundled": true, + "requires": { + "npm-install-checks": "^5.0.0", + "npm-normalize-package-bin": "^2.0.0", + "npm-package-arg": "^9.0.0", + "semver": "^7.3.5" + }, + "dependencies": { + "npm-normalize-package-bin": { + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/npm-normalize-package-bin/-/npm-normalize-package-bin-2.0.0.tgz", + "integrity": "sha512-awzfKUO7v0FscrSpRoogyNm0sajikhBWpU0QMrW09AMi9n1PoKU6WaIqUzuJSQnpciZZmJ/jMZ2Egfmb/9LiWQ==", + "bundled": true + } + } + }, + "npm-profile": { + "version": "6.2.1", + "resolved": "https://npm.corp.kuaishou.com/npm-profile/-/npm-profile-6.2.1.tgz", + "integrity": "sha512-Tlu13duByHyDd4Xy0PgroxzxnBYWbGGL5aZifNp8cx2DxUrHSoETXtPKg38aRPsBWMRfDtvcvVfJNasj7oImQQ==", + "bundled": true, + "requires": { + "npm-registry-fetch": "^13.0.1", + "proc-log": "^2.0.0" + } + }, + "npm-registry-fetch": { + "version": "13.3.1", + "resolved": "https://npm.corp.kuaishou.com/npm-registry-fetch/-/npm-registry-fetch-13.3.1.tgz", + "integrity": "sha512-eukJPi++DKRTjSBRcDZSDDsGqRK3ehbxfFUcgaRd0Yp6kRwOwh2WVn0r+8rMB4nnuzvAk6rQVzl6K5CkYOmnvw==", + "bundled": true, + "requires": { + "make-fetch-happen": "^10.0.6", + "minipass": "^3.1.6", + "minipass-fetch": "^2.0.3", + "minipass-json-stream": "^1.0.1", + "minizlib": "^2.1.2", + "npm-package-arg": "^9.0.1", + "proc-log": "^2.0.0" + } + }, + "npm-user-validate": { + "version": "1.0.1", + "resolved": "https://npm.corp.kuaishou.com/npm-user-validate/-/npm-user-validate-1.0.1.tgz", + "integrity": "sha1-MUKPxUdf6EFgI/F4wKtHk1rYxWE=", + "bundled": true + }, + "npmlog": { + "version": "6.0.2", + "resolved": "https://npm.corp.kuaishou.com/npmlog/-/npmlog-6.0.2.tgz", + "integrity": "sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==", + "bundled": true, + "requires": { + "are-we-there-yet": "^3.0.0", + "console-control-strings": "^1.1.0", + "gauge": "^4.0.3", + "set-blocking": "^2.0.0" + } + }, + "once": { + "version": "1.4.0", + "resolved": "https://npm.corp.kuaishou.com/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "bundled": true, + "requires": { + "wrappy": "1" + } + }, + "opener": { + "version": "1.5.2", + "resolved": "https://npm.corp.kuaishou.com/opener/-/opener-1.5.2.tgz", + "integrity": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==", + "bundled": true + }, + "p-map": { + "version": "4.0.0", + "resolved": "https://npm.corp.kuaishou.com/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "bundled": true, + "requires": { + "aggregate-error": "^3.0.0" + } + }, + "pacote": { + "version": "13.6.2", + "resolved": "https://npm.corp.kuaishou.com/pacote/-/pacote-13.6.2.tgz", + "integrity": "sha512-Gu8fU3GsvOPkak2CkbojR7vjs3k3P9cA6uazKTHdsdV0gpCEQq2opelnEv30KRQWgVzP5Vd/5umjcedma3MKtg==", + "bundled": true, + "requires": { + "@npmcli/git": "^3.0.0", + "@npmcli/installed-package-contents": "^1.0.7", + "@npmcli/promise-spawn": "^3.0.0", + "@npmcli/run-script": "^4.1.0", + "cacache": "^16.0.0", + "chownr": "^2.0.0", + "fs-minipass": "^2.1.0", + "infer-owner": "^1.0.4", + "minipass": "^3.1.6", + "mkdirp": "^1.0.4", + "npm-package-arg": "^9.0.0", + "npm-packlist": "^5.1.0", + "npm-pick-manifest": "^7.0.0", + "npm-registry-fetch": "^13.0.1", + "proc-log": "^2.0.0", + "promise-retry": "^2.0.1", + "read-package-json": "^5.0.0", + "read-package-json-fast": "^2.0.3", + "rimraf": "^3.0.2", + "ssri": "^9.0.0", + "tar": "^6.1.11" + } + }, + "parse-conflict-json": { + "version": "2.0.2", + "resolved": "https://npm.corp.kuaishou.com/parse-conflict-json/-/parse-conflict-json-2.0.2.tgz", + "integrity": "sha512-jDbRGb00TAPFsKWCpZZOT93SxVP9nONOSgES3AevqRq/CHvavEBvKAjxX9p5Y5F0RZLxH9Ufd9+RwtCsa+lFDA==", + "bundled": true, + "requires": { + "json-parse-even-better-errors": "^2.3.1", + "just-diff": "^5.0.1", + "just-diff-apply": "^5.2.0" + } + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://npm.corp.kuaishou.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "bundled": true + }, + "postcss-selector-parser": { + "version": "6.0.10", + "resolved": "https://npm.corp.kuaishou.com/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz", + "integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==", + "bundled": true, + "requires": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + } + }, + "proc-log": { + "version": "2.0.1", + "resolved": "https://npm.corp.kuaishou.com/proc-log/-/proc-log-2.0.1.tgz", + "integrity": "sha512-Kcmo2FhfDTXdcbfDH76N7uBYHINxc/8GW7UAVuVP9I+Va3uHSerrnKV6dLooga/gh7GlgzuCCr/eoldnL1muGw==", + "bundled": true + }, + "promise-all-reject-late": { + "version": "1.0.1", + "resolved": "https://npm.corp.kuaishou.com/promise-all-reject-late/-/promise-all-reject-late-1.0.1.tgz", + "integrity": "sha1-+OvxNIPlypGtgJzML88l8m+GQ8I=", + "bundled": true + }, + "promise-call-limit": { + "version": "1.0.1", + "resolved": "https://npm.corp.kuaishou.com/promise-call-limit/-/promise-call-limit-1.0.1.tgz", + "integrity": "sha1-S97gOuuFZ0OFypNNpxFOm808biQ=", + "bundled": true + }, + "promise-inflight": { + "version": "1.0.1", + "resolved": "https://npm.corp.kuaishou.com/promise-inflight/-/promise-inflight-1.0.1.tgz", + "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=", + "bundled": true + }, + "promise-retry": { + "version": "2.0.1", + "resolved": "https://npm.corp.kuaishou.com/promise-retry/-/promise-retry-2.0.1.tgz", + "integrity": "sha1-/3R6E2IKtXumiPX8Z4VUEMNw2iI=", + "bundled": true, + "requires": { + "err-code": "^2.0.2", + "retry": "^0.12.0" + } + }, + "promzard": { + "version": "0.3.0", + "resolved": "https://npm.corp.kuaishou.com/promzard/-/promzard-0.3.0.tgz", + "integrity": "sha1-JqXW7ox97kyxIggwWs+5O6OCqe4=", + "bundled": true, + "requires": { + "read": "1" + } + }, + "qrcode-terminal": { + "version": "0.12.0", + "resolved": "https://npm.corp.kuaishou.com/qrcode-terminal/-/qrcode-terminal-0.12.0.tgz", + "integrity": "sha1-u1tpnvf58FBQkqN0i+RGT+cbWBk=", + "bundled": true + }, + "read": { + "version": "1.0.7", + "resolved": "https://npm.corp.kuaishou.com/read/-/read-1.0.7.tgz", + "integrity": "sha1-s9oZvQUkMal2cdRKQmNK33ELQMQ=", + "bundled": true, + "requires": { + "mute-stream": "~0.0.4" + } + }, + "read-cmd-shim": { + "version": "3.0.0", + "bundled": true + }, + "read-package-json": { + "version": "5.0.2", + "resolved": "https://npm.corp.kuaishou.com/read-package-json/-/read-package-json-5.0.2.tgz", + "integrity": "sha512-BSzugrt4kQ/Z0krro8zhTwV1Kd79ue25IhNN/VtHFy1mG/6Tluyi+msc0UpwaoQzxSHa28mntAjIZY6kEgfR9Q==", + "bundled": true, + "requires": { + "glob": "^8.0.1", + "json-parse-even-better-errors": "^2.3.1", + "normalize-package-data": "^4.0.0", + "npm-normalize-package-bin": "^2.0.0" + }, + "dependencies": { + "npm-normalize-package-bin": { + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/npm-normalize-package-bin/-/npm-normalize-package-bin-2.0.0.tgz", + "integrity": "sha512-awzfKUO7v0FscrSpRoogyNm0sajikhBWpU0QMrW09AMi9n1PoKU6WaIqUzuJSQnpciZZmJ/jMZ2Egfmb/9LiWQ==", + "bundled": true + } + } + }, + "read-package-json-fast": { + "version": "2.0.3", + "resolved": "https://npm.corp.kuaishou.com/read-package-json-fast/-/read-package-json-fast-2.0.3.tgz", + "integrity": "sha1-MjylKWMNqCyzSzbMC5lmk8mMK4M=", + "bundled": true, + "requires": { + "json-parse-even-better-errors": "^2.3.0", + "npm-normalize-package-bin": "^1.0.1" + } + }, + "readable-stream": { + "version": "3.6.0", + "resolved": "https://npm.corp.kuaishou.com/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "bundled": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + }, + "readdir-scoped-modules": { + "version": "1.1.0", + "resolved": "https://npm.corp.kuaishou.com/readdir-scoped-modules/-/readdir-scoped-modules-1.1.0.tgz", + "integrity": "sha512-asaikDeqAQg7JifRsZn1NJZXo9E+VwlyCfbkZhwyISinqk5zNS6266HS5kah6P0SaQKGF6SkNnZVHUzHFYxYDw==", + "bundled": true, + "requires": { + "debuglog": "^1.0.1", + "dezalgo": "^1.0.0", + "graceful-fs": "^4.1.2", + "once": "^1.3.0" + } + }, + "retry": { + "version": "0.12.0", + "resolved": "https://npm.corp.kuaishou.com/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==", + "bundled": true + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://npm.corp.kuaishou.com/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha1-8aVAK6YiCtUswSgrrBrjqkn9Bho=", + "bundled": true, + "requires": { + "glob": "^7.1.3" + }, + "dependencies": { + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://npm.corp.kuaishou.com/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha1-PH/L9SnYcibz0vUrlm/1Jx60Qd0=", + "bundled": true, + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "glob": { + "version": "7.2.3", + "resolved": "https://npm.corp.kuaishou.com/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "bundled": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "minimatch": { + "version": "3.1.2", + "resolved": "https://npm.corp.kuaishou.com/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "bundled": true, + "requires": { + "brace-expansion": "^1.1.7" + } + } + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://npm.corp.kuaishou.com/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha1-Hq+fqb2x/dTsdfWPnNtOa3gn7sY=", + "bundled": true + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://npm.corp.kuaishou.com/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "bundled": true, + "optional": true + }, + "semver": { + "version": "7.3.7", + "bundled": true, + "requires": { + "lru-cache": "^6.0.0" + }, + "dependencies": { + "lru-cache": { + "version": "6.0.0", + "resolved": "https://npm.corp.kuaishou.com/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "bundled": true, + "requires": { + "yallist": "^4.0.0" + } + } + } + }, + "set-blocking": { + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", + "bundled": true + }, + "signal-exit": { + "version": "3.0.7", + "resolved": "https://npm.corp.kuaishou.com/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "bundled": true + }, + "smart-buffer": { + "version": "4.2.0", + "resolved": "https://npm.corp.kuaishou.com/smart-buffer/-/smart-buffer-4.2.0.tgz", + "integrity": "sha1-bh1x+k8YwF99D/IW3RakgdDo2a4=", + "bundled": true + }, + "socks": { + "version": "2.7.0", + "bundled": true, + "requires": { + "ip": "^2.0.0", + "smart-buffer": "^4.2.0" + } + }, + "socks-proxy-agent": { + "version": "7.0.0", + "resolved": "https://npm.corp.kuaishou.com/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz", + "integrity": "sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==", + "bundled": true, + "requires": { + "agent-base": "^6.0.2", + "debug": "^4.3.3", + "socks": "^2.6.2" + } + }, + "spdx-correct": { + "version": "3.1.1", + "resolved": "https://npm.corp.kuaishou.com/spdx-correct/-/spdx-correct-3.1.1.tgz", + "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", + "bundled": true, + "requires": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://npm.corp.kuaishou.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", + "bundled": true + }, + "spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://npm.corp.kuaishou.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha1-z3D1BILu/cmOPOCmgz5KU87rpnk=", + "bundled": true, + "requires": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-license-ids": { + "version": "3.0.11", + "bundled": true + }, + "ssri": { + "version": "9.0.1", + "resolved": "https://npm.corp.kuaishou.com/ssri/-/ssri-9.0.1.tgz", + "integrity": "sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==", + "bundled": true, + "requires": { + "minipass": "^3.1.1" + } + }, + "string_decoder": { + "version": "1.3.0", + "resolved": "https://npm.corp.kuaishou.com/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha1-QvEUWUpGzxqOMLCoT1bHjD7awh4=", + "bundled": true, + "requires": { + "safe-buffer": "~5.2.0" + } + }, + "string-width": { + "version": "4.2.3", + "resolved": "https://npm.corp.kuaishou.com/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "bundled": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://npm.corp.kuaishou.com/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha1-nibGPTD1NEPpSJSVshBdN7Z6hdk=", + "bundled": true, + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://npm.corp.kuaishou.com/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", + "bundled": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "tar": { + "version": "6.1.11", + "bundled": true, + "requires": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^3.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + } + }, + "text-table": { + "version": "0.2.0", + "resolved": "https://npm.corp.kuaishou.com/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "bundled": true + }, + "tiny-relative-date": { + "version": "1.3.0", + "resolved": "https://npm.corp.kuaishou.com/tiny-relative-date/-/tiny-relative-date-1.3.0.tgz", + "integrity": "sha1-+giq1QHtcw8xzAQxgdmVw5qTXgc=", + "bundled": true + }, + "treeverse": { + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/treeverse/-/treeverse-2.0.0.tgz", + "integrity": "sha512-N5gJCkLu1aXccpOTtqV6ddSEi6ZmGkh3hjmbu1IjcavJK4qyOVQmi0myQKM7z5jVGmD68SJoliaVrMmVObhj6A==", + "bundled": true + }, + "unique-filename": { + "version": "2.0.1", + "resolved": "https://npm.corp.kuaishou.com/unique-filename/-/unique-filename-2.0.1.tgz", + "integrity": "sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==", + "bundled": true, + "requires": { + "unique-slug": "^3.0.0" + } + }, + "unique-slug": { + "version": "3.0.0", + "resolved": "https://npm.corp.kuaishou.com/unique-slug/-/unique-slug-3.0.0.tgz", + "integrity": "sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==", + "bundled": true, + "requires": { + "imurmurhash": "^0.1.4" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://npm.corp.kuaishou.com/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "bundled": true + }, + "validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://npm.corp.kuaishou.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "bundled": true, + "requires": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "validate-npm-package-name": { + "version": "4.0.0", + "resolved": "https://npm.corp.kuaishou.com/validate-npm-package-name/-/validate-npm-package-name-4.0.0.tgz", + "integrity": "sha512-mzR0L8ZDktZjpX4OB46KT+56MAhl4EIazWP/+G/HPGuvfdaqg4YsCdtOm6U9+LOFyYDoh4dpnpxZRB9MQQns5Q==", + "bundled": true, + "requires": { + "builtins": "^5.0.0" + } + }, + "walk-up-path": { + "version": "1.0.0", + "resolved": "https://npm.corp.kuaishou.com/walk-up-path/-/walk-up-path-1.0.0.tgz", + "integrity": "sha1-1HReiT3V/Q27WN0KTGoz2cn+xT4=", + "bundled": true + }, + "wcwidth": { + "version": "1.0.1", + "resolved": "https://npm.corp.kuaishou.com/wcwidth/-/wcwidth-1.0.1.tgz", + "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", + "bundled": true, + "requires": { + "defaults": "^1.0.3" + } + }, + "which": { + "version": "2.0.2", + "resolved": "https://npm.corp.kuaishou.com/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "bundled": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "wide-align": { + "version": "1.1.5", + "resolved": "https://npm.corp.kuaishou.com/wide-align/-/wide-align-1.1.5.tgz", + "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", + "bundled": true, + "requires": { + "string-width": "^1.0.2 || 2 || 3 || 4" + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://npm.corp.kuaishou.com/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "bundled": true + }, + "write-file-atomic": { + "version": "4.0.2", + "resolved": "https://npm.corp.kuaishou.com/write-file-atomic/-/write-file-atomic-4.0.2.tgz", + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", + "bundled": true, + "requires": { + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.7" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://npm.corp.kuaishou.com/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha1-m7knkNnA7/7GO+c1GeEaNQGaOnI=", + "bundled": true + } } }, - "node-forge": { - "version": "1.3.1" - }, - "node-releases": { - "version": "2.0.6" - }, - "normalize-path": { - "version": "3.0.0" - }, - "normalize-range": { - "version": "0.1.2" - }, "npm-run-path": { "version": "5.1.0", + "resolved": "https://npm.corp.kuaishou.com/npm-run-path/-/npm-run-path-5.1.0.tgz", + "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", "requires": { "path-key": "^4.0.0" }, "dependencies": { "path-key": { - "version": "4.0.0" + "version": "4.0.0", + "resolved": "https://npm.corp.kuaishou.com/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==" } } }, "nth-check": { "version": "2.1.1", + "resolved": "https://npm.corp.kuaishou.com/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", "requires": { "boolbase": "^1.0.0" } }, "number-is-nan": { - "version": "1.0.1" + "version": "1.0.1", + "resolved": "https://npm.corp.kuaishou.com/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==" }, "object-hash": { - "version": "3.0.0" + "version": "3.0.0", + "resolved": "https://npm.corp.kuaishou.com/object-hash/-/object-hash-3.0.0.tgz", + "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==" }, "object-inspect": { - "version": "1.12.2" + "version": "1.12.2", + "resolved": "https://npm.corp.kuaishou.com/object-inspect/-/object-inspect-1.12.2.tgz", + "integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==" }, "obuf": { - "version": "1.1.2" + "version": "1.1.2", + "resolved": "https://npm.corp.kuaishou.com/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha1-Cb6jND1BhZ69RGKS0RydTbYZCE4=" }, "on-finished": { "version": "2.4.1", + "resolved": "https://npm.corp.kuaishou.com/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", "requires": { "ee-first": "1.1.1" } }, "on-headers": { - "version": "1.0.2" + "version": "1.0.2", + "resolved": "https://npm.corp.kuaishou.com/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==" }, "once": { "version": "1.4.0", + "resolved": "https://npm.corp.kuaishou.com/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", "requires": { "wrappy": "1" } }, "onetime": { "version": "5.1.2", + "resolved": "https://npm.corp.kuaishou.com/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha1-0Oluu1awdHbfHdnEgG5SN5hcpF4=", "requires": { "mimic-fn": "^2.1.0" } }, "open": { "version": "8.4.0", + "resolved": "https://npm.corp.kuaishou.com/open/-/open-8.4.0.tgz", + "integrity": "sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==", "requires": { "define-lazy-prop": "^2.0.0", "is-docker": "^2.1.1", @@ -9479,10 +18202,14 @@ } }, "optjs": { - "version": "3.2.2" + "version": "3.2.2", + "resolved": "https://npm.corp.kuaishou.com/optjs/-/optjs-3.2.2.tgz", + "integrity": "sha1-aabOicRCpEQDFBrS+bNwvVu29O4=" }, "ora": { "version": "6.1.2", + "resolved": "https://npm.corp.kuaishou.com/ora/-/ora-6.1.2.tgz", + "integrity": "sha512-EJQ3NiP5Xo94wJXIzAyOtSb0QEIAUu7m8t6UZ9krbz0vAJqr92JpcK/lEXg91q6B9pEGqrykkd2EQplnifDSBw==", "requires": { "bl": "^5.0.0", "chalk": "^5.0.0", @@ -9496,10 +18223,14 @@ }, "dependencies": { "ansi-regex": { - "version": "6.0.1" + "version": "6.0.1", + "resolved": "https://npm.corp.kuaishou.com/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha1-MYPjj66aZdfLXlOUXNWJfQJgoGo=" }, "strip-ansi": { "version": "7.0.1", + "resolved": "https://npm.corp.kuaishou.com/strip-ansi/-/strip-ansi-7.0.1.tgz", + "integrity": "sha1-YXQKCM42th5Q5lZT8HBg0ACXX7I=", "requires": { "ansi-regex": "^6.0.1" } @@ -9508,12 +18239,16 @@ }, "os-locale": { "version": "1.4.0", + "resolved": "https://npm.corp.kuaishou.com/os-locale/-/os-locale-1.4.0.tgz", + "integrity": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=", "requires": { "lcid": "^1.0.0" } }, "p-retry": { "version": "4.6.2", + "resolved": "https://npm.corp.kuaishou.com/p-retry/-/p-retry-4.6.2.tgz", + "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==", "requires": { "@types/retry": "0.12.0", "retry": "^0.13.1" @@ -9521,6 +18256,8 @@ }, "param-case": { "version": "3.0.4", + "resolved": "https://npm.corp.kuaishou.com/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha1-fRf+SqEr3jTUp32RrPtiGcqtAcU=", "requires": { "dot-case": "^3.0.4", "tslib": "^2.0.3" @@ -9528,12 +18265,16 @@ }, "parent-module": { "version": "1.0.1", + "resolved": "https://npm.corp.kuaishou.com/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", "requires": { "callsites": "^3.0.0" } }, "parse-json": { "version": "5.2.0", + "resolved": "https://npm.corp.kuaishou.com/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha1-x2/Gbe5UIxyWKyK8yKcs8vmXU80=", "requires": { "@babel/code-frame": "^7.0.0", "error-ex": "^1.3.1", @@ -9542,41 +18283,63 @@ } }, "parseurl": { - "version": "1.3.3" + "version": "1.3.3", + "resolved": "https://npm.corp.kuaishou.com/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha1-naGee+6NEt/wUT7Vt2lXeTvC6NQ=" }, "pascal-case": { "version": "3.1.2", + "resolved": "https://npm.corp.kuaishou.com/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha1-tI4O8rmOIF58Ha50fQsVCCN2YOs=", "requires": { "no-case": "^3.0.4", "tslib": "^2.0.3" } }, "path-is-absolute": { - "version": "1.0.1" + "version": "1.0.1", + "resolved": "https://npm.corp.kuaishou.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==" }, "path-key": { - "version": "3.1.1" + "version": "3.1.1", + "resolved": "https://npm.corp.kuaishou.com/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" }, "path-parse": { - "version": "1.0.7" + "version": "1.0.7", + "resolved": "https://npm.corp.kuaishou.com/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha1-+8EUtgykKzDZ2vWFjkvWi77bZzU=" }, "path-to-regexp": { - "version": "0.1.7" + "version": "0.1.7", + "resolved": "https://npm.corp.kuaishou.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" }, "path-type": { - "version": "4.0.0" + "version": "4.0.0", + "resolved": "https://npm.corp.kuaishou.com/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha1-hO0BwKe6OAr+CdkKjBgNzZ0DBDs=" }, "picocolors": { - "version": "1.0.0" + "version": "1.0.0", + "resolved": "https://npm.corp.kuaishou.com/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha1-y1vcdP8/UYkiNur3nWi8RFZKuBw=" }, "picomatch": { - "version": "2.3.1" + "version": "2.3.1", + "resolved": "https://npm.corp.kuaishou.com/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" }, "pify": { - "version": "2.3.0" + "version": "2.3.0", + "resolved": "https://npm.corp.kuaishou.com/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==" }, "postcss": { "version": "8.4.18", + "resolved": "https://npm.corp.kuaishou.com/postcss/-/postcss-8.4.18.tgz", + "integrity": "sha512-Wi8mWhncLJm11GATDaQKobXSNEYGUHeQLiQqDFG1qQ5UTDPTEvKw0Xt5NsTpktGTwLps3ByrWsBrG0rB8YQ9oA==", "requires": { "nanoid": "^3.3.4", "picocolors": "^1.0.0", @@ -9585,12 +18348,16 @@ }, "postcss-csso": { "version": "6.0.1", + "resolved": "https://npm.corp.kuaishou.com/postcss-csso/-/postcss-csso-6.0.1.tgz", + "integrity": "sha512-ZV4yEziMrx6CEiqabGLrDva0pMD7Fbw7yP+LzJvaynM4OJgTssGN6dHiMsJMJdpmNaLJltXVLsrb/5sxbFa8sA==", "requires": { "csso": "^5.0.5" } }, "postcss-loader": { "version": "7.0.1", + "resolved": "https://npm.corp.kuaishou.com/postcss-loader/-/postcss-loader-7.0.1.tgz", + "integrity": "sha512-VRviFEyYlLjctSM93gAZtcJJ/iSkPZ79zWbN/1fSH+NisBByEiVLqpdVDrPLVSi8DX0oJo12kL/GppTBdKVXiQ==", "requires": { "cosmiconfig": "^7.0.0", "klona": "^2.0.5", @@ -9599,10 +18366,14 @@ }, "postcss-modules-extract-imports": { "version": "3.0.0", + "resolved": "https://npm.corp.kuaishou.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", + "integrity": "sha1-zaHwR8CugMl9vijD52pDuIAldB0=", "requires": {} }, "postcss-modules-local-by-default": { "version": "4.0.0", + "resolved": "https://npm.corp.kuaishou.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz", + "integrity": "sha1-67tU+uFZjuz99pGgKz/zs5ClpRw=", "requires": { "icss-utils": "^5.0.0", "postcss-selector-parser": "^6.0.2", @@ -9611,44 +18382,62 @@ }, "postcss-modules-scope": { "version": "3.0.0", + "resolved": "https://npm.corp.kuaishou.com/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz", + "integrity": "sha1-nvMVFFbTu/oSDKRImN/Kby+gHwY=", "requires": { "postcss-selector-parser": "^6.0.4" } }, "postcss-modules-values": { "version": "4.0.0", + "resolved": "https://npm.corp.kuaishou.com/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", "requires": { "icss-utils": "^5.0.0" } }, "postcss-selector-parser": { "version": "6.0.10", + "resolved": "https://npm.corp.kuaishou.com/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz", + "integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==", "requires": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" } }, "postcss-value-parser": { - "version": "4.2.0" + "version": "4.2.0", + "resolved": "https://npm.corp.kuaishou.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" }, "pretty-error": { "version": "4.0.0", + "resolved": "https://npm.corp.kuaishou.com/pretty-error/-/pretty-error-4.0.0.tgz", + "integrity": "sha1-kKcD9G3XI0rbRtD4SCPp0cuPENY=", "requires": { "lodash": "^4.17.20", "renderkid": "^3.0.0" } }, "prismjs": { - "version": "1.29.0" + "version": "1.29.0", + "resolved": "https://npm.corp.kuaishou.com/prismjs/-/prismjs-1.29.0.tgz", + "integrity": "sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==" }, "process-nextick-args": { - "version": "2.0.1" + "version": "2.0.1", + "resolved": "https://npm.corp.kuaishou.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" }, "promise-timeout": { - "version": "1.3.0" + "version": "1.3.0", + "resolved": "https://npm.corp.kuaishou.com/promise-timeout/-/promise-timeout-1.3.0.tgz", + "integrity": "sha1-0ceN1QpgfV8KUgdBAlKjoJFOEBQ=" }, "protobufjs": { "version": "5.0.3", + "resolved": "https://npm.corp.kuaishou.com/protobufjs/-/protobufjs-5.0.3.tgz", + "integrity": "sha1-5N/p+2fJCyYw0VhoJJvMSWFGehc=", "requires": { "ascli": "~1", "bytebuffer": "~5", @@ -9658,42 +18447,60 @@ }, "proxy-addr": { "version": "2.0.7", + "resolved": "https://npm.corp.kuaishou.com/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", "requires": { "forwarded": "0.2.0", "ipaddr.js": "1.9.1" }, "dependencies": { "ipaddr.js": { - "version": "1.9.1" + "version": "1.9.1", + "resolved": "https://npm.corp.kuaishou.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha1-v/OFQ+64mEglB5/zoqjmy9RngbM=" } } }, "punycode": { - "version": "2.1.1" + "version": "2.1.1", + "resolved": "https://npm.corp.kuaishou.com/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" }, "qs": { "version": "6.11.0", + "resolved": "https://npm.corp.kuaishou.com/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", "requires": { "side-channel": "^1.0.4" } }, "queue-microtask": { - "version": "1.2.3" + "version": "1.2.3", + "resolved": "https://npm.corp.kuaishou.com/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==" }, "quick-lru": { - "version": "5.1.1" + "version": "5.1.1", + "resolved": "https://npm.corp.kuaishou.com/quick-lru/-/quick-lru-5.1.1.tgz", + "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==" }, "randombytes": { "version": "2.1.0", + "resolved": "https://npm.corp.kuaishou.com/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha1-32+ENy8CcNxlzfYpE0mrekc9Tyo=", "requires": { "safe-buffer": "^5.1.0" } }, "range-parser": { - "version": "1.2.1" + "version": "1.2.1", + "resolved": "https://npm.corp.kuaishou.com/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" }, "raw-body": { "version": "2.5.1", + "resolved": "https://npm.corp.kuaishou.com/raw-body/-/raw-body-2.5.1.tgz", + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", "requires": { "bytes": "3.1.2", "http-errors": "2.0.0", @@ -9703,12 +18510,16 @@ }, "read-cache": { "version": "1.0.0", + "resolved": "https://npm.corp.kuaishou.com/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha1-5mTvMRYRZsl1HNvo28+GtftY93Q=", "requires": { "pify": "^2.3.0" } }, "readable-stream": { "version": "3.6.0", + "resolved": "https://npm.corp.kuaishou.com/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", "requires": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", @@ -9717,18 +18528,26 @@ }, "readdirp": { "version": "3.6.0", + "resolved": "https://npm.corp.kuaishou.com/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha1-dKNwvYVxFuJFspzJc0DNQxoCpsc=", "requires": { "picomatch": "^2.2.1" } }, "regenerator-runtime": { - "version": "0.13.10" + "version": "0.13.10", + "resolved": "https://npm.corp.kuaishou.com/regenerator-runtime/-/regenerator-runtime-0.13.10.tgz", + "integrity": "sha512-KepLsg4dU12hryUO7bp/axHAKvwGOCV0sGloQtpagJ12ai+ojVDqkeGSiRX1zlq+kjIMZ1t7gpze+26QqtdGqw==" }, "relateurl": { - "version": "0.2.7" + "version": "0.2.7", + "resolved": "https://npm.corp.kuaishou.com/relateurl/-/relateurl-0.2.7.tgz", + "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==" }, "renderkid": { "version": "3.0.0", + "resolved": "https://npm.corp.kuaishou.com/renderkid/-/renderkid-3.0.0.tgz", + "integrity": "sha1-X9gj5NaVHTc1jsyaWLHwaDa2Joo=", "requires": { "css-select": "^4.1.3", "dom-converter": "^0.2.0", @@ -9738,10 +18557,14 @@ }, "dependencies": { "ansi-regex": { - "version": "5.0.1" + "version": "5.0.1", + "resolved": "https://npm.corp.kuaishou.com/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha1-CCyyyJyf6GWaMRpTvWpNxTAdswQ=" }, "strip-ansi": { "version": "6.0.1", + "resolved": "https://npm.corp.kuaishou.com/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha1-nibGPTD1NEPpSJSVshBdN7Z6hdk=", "requires": { "ansi-regex": "^5.0.1" } @@ -9749,13 +18572,19 @@ } }, "require-from-string": { - "version": "2.0.2" + "version": "2.0.2", + "resolved": "https://npm.corp.kuaishou.com/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==" }, "requires-port": { - "version": "1.0.0" + "version": "1.0.0", + "resolved": "https://npm.corp.kuaishou.com/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=" }, "resolve": { "version": "1.22.1", + "resolved": "https://npm.corp.kuaishou.com/resolve/-/resolve-1.22.1.tgz", + "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", "requires": { "is-core-module": "^2.9.0", "path-parse": "^1.0.7", @@ -9763,47 +18592,67 @@ } }, "resolve-from": { - "version": "4.0.0" + "version": "4.0.0", + "resolved": "https://npm.corp.kuaishou.com/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha1-SrzYUq0y3Xuqv+m0DgCjbbXzkuY=" }, "restore-cursor": { "version": "4.0.0", + "resolved": "https://npm.corp.kuaishou.com/restore-cursor/-/restore-cursor-4.0.0.tgz", + "integrity": "sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==", "requires": { "onetime": "^5.1.0", "signal-exit": "^3.0.2" } }, "retry": { - "version": "0.13.1" + "version": "0.13.1", + "resolved": "https://npm.corp.kuaishou.com/retry/-/retry-0.13.1.tgz", + "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==" }, "reusify": { - "version": "1.0.4" + "version": "1.0.4", + "resolved": "https://npm.corp.kuaishou.com/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha1-kNo4Kx4SbvwCFG6QhFqI2xKSXXY=" }, "rimraf": { "version": "3.0.2", + "resolved": "https://npm.corp.kuaishou.com/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha1-8aVAK6YiCtUswSgrrBrjqkn9Bho=", "requires": { "glob": "^7.1.3" } }, "rollup": { "version": "2.79.1", + "resolved": "https://npm.corp.kuaishou.com/rollup/-/rollup-2.79.1.tgz", + "integrity": "sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==", "requires": { "fsevents": "~2.3.2" } }, "run-parallel": { "version": "1.2.0", + "resolved": "https://npm.corp.kuaishou.com/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha1-ZtE2jae9+SHrnZW9GpIp5/IaQ+4=", "requires": { "queue-microtask": "^1.2.2" } }, "safe-buffer": { - "version": "5.2.1" + "version": "5.2.1", + "resolved": "https://npm.corp.kuaishou.com/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha1-Hq+fqb2x/dTsdfWPnNtOa3gn7sY=" }, "safer-buffer": { - "version": "2.1.2" + "version": "2.1.2", + "resolved": "https://npm.corp.kuaishou.com/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" }, "sass": { "version": "1.56.0", + "resolved": "https://npm.corp.kuaishou.com/sass/-/sass-1.56.0.tgz", + "integrity": "sha512-WFJ9XrpkcnqZcYuLRJh5qiV6ibQOR4AezleeEjTjMsCocYW59dEG19U3fwTTXxzi2Ed3yjPBp727hbbj53pHFw==", "requires": { "chokidar": ">=3.0.0 <4.0.0", "immutable": "^4.0.0", @@ -9812,6 +18661,8 @@ }, "schema-utils": { "version": "4.0.0", + "resolved": "https://npm.corp.kuaishou.com/schema-utils/-/schema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", "requires": { "@types/json-schema": "^7.0.9", "ajv": "^8.8.0", @@ -9821,28 +18672,38 @@ }, "section-matter": { "version": "1.0.0", + "resolved": "https://npm.corp.kuaishou.com/section-matter/-/section-matter-1.0.0.tgz", + "integrity": "sha1-6QQZU1BngOwB1Z8pKhnHuFC4QWc=", "requires": { "extend-shallow": "^2.0.1", "kind-of": "^6.0.0" } }, "select-hose": { - "version": "2.0.0" + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/select-hose/-/select-hose-2.0.0.tgz", + "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==" }, "selfsigned": { "version": "2.1.1", + "resolved": "https://npm.corp.kuaishou.com/selfsigned/-/selfsigned-2.1.1.tgz", + "integrity": "sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==", "requires": { "node-forge": "^1" } }, "semver": { "version": "7.3.8", + "resolved": "https://npm.corp.kuaishou.com/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", "requires": { "lru-cache": "^6.0.0" } }, "send": { "version": "0.18.0", + "resolved": "https://npm.corp.kuaishou.com/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", "requires": { "debug": "2.6.9", "depd": "2.0.0", @@ -9861,12 +18722,16 @@ }, "serialize-javascript": { "version": "6.0.0", + "resolved": "https://npm.corp.kuaishou.com/serialize-javascript/-/serialize-javascript-6.0.0.tgz", + "integrity": "sha1-765diPRdeSQUHai1w6en5mP+/rg=", "requires": { "randombytes": "^2.1.0" } }, "serve-index": { "version": "1.9.1", + "resolved": "https://npm.corp.kuaishou.com/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=", "requires": { "accepts": "~1.3.4", "batch": "0.6.1", @@ -9878,10 +18743,14 @@ }, "dependencies": { "depd": { - "version": "1.1.2" + "version": "1.1.2", + "resolved": "https://npm.corp.kuaishou.com/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==" }, "http-errors": { "version": "1.6.3", + "resolved": "https://npm.corp.kuaishou.com/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", "requires": { "depd": "~1.1.2", "inherits": "2.0.3", @@ -9890,18 +18759,26 @@ } }, "inherits": { - "version": "2.0.3" + "version": "2.0.3", + "resolved": "https://npm.corp.kuaishou.com/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" }, "setprototypeof": { - "version": "1.1.0" + "version": "1.1.0", + "resolved": "https://npm.corp.kuaishou.com/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" }, "statuses": { - "version": "1.5.0" + "version": "1.5.0", + "resolved": "https://npm.corp.kuaishou.com/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=" } } }, "serve-static": { "version": "1.15.0", + "resolved": "https://npm.corp.kuaishou.com/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", "requires": { "encodeurl": "~1.0.2", "escape-html": "~1.0.3", @@ -9910,25 +18787,45 @@ } }, "setprototypeof": { - "version": "1.2.0" + "version": "1.2.0", + "resolved": "https://npm.corp.kuaishou.com/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" }, "shallow-clone": { "version": "3.0.1", + "resolved": "https://npm.corp.kuaishou.com/shallow-clone/-/shallow-clone-3.0.1.tgz", + "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", "requires": { "kind-of": "^6.0.2" } }, "shebang-command": { "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha1-zNCvT4g1+9wmW4JGGq8MNmY/NOo=", "requires": { "shebang-regex": "^3.0.0" } }, "shebang-regex": { - "version": "3.0.0" + "version": "3.0.0", + "resolved": "https://npm.corp.kuaishou.com/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha1-rhbxZE2HPsrYQ7AwexQzYtTEIXI=" + }, + "shiki": { + "version": "0.9.15", + "resolved": "https://npm.corp.kuaishou.com/shiki/-/shiki-0.9.15.tgz", + "integrity": "sha512-/Y0z9IzhJ8nD9nbceORCqu6NgT9X6I8Fk8c3SICHI5NbZRLdZYFaB233gwct9sU0vvSypyaL/qaKvzyQGJBZSw==", + "requires": { + "jsonc-parser": "^3.0.0", + "vscode-oniguruma": "^1.6.1", + "vscode-textmate": "5.2.0" + } }, "side-channel": { "version": "1.0.4", + "resolved": "https://npm.corp.kuaishou.com/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", "requires": { "call-bind": "^1.0.0", "get-intrinsic": "^1.0.2", @@ -9936,16 +18833,24 @@ } }, "signal-exit": { - "version": "3.0.7" + "version": "3.0.7", + "resolved": "https://npm.corp.kuaishou.com/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" }, "slash": { - "version": "4.0.0" + "version": "4.0.0", + "resolved": "https://npm.corp.kuaishou.com/slash/-/slash-4.0.0.tgz", + "integrity": "sha1-JCI3IXbExsWt214q2oha+YSzlqc=" }, "slash2": { - "version": "2.0.0" + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/slash2/-/slash2-2.0.0.tgz", + "integrity": "sha1-9OChFwi4VFuRJpWYHPcJb1LGNIc=" }, "sockjs": { "version": "0.3.24", + "resolved": "https://npm.corp.kuaishou.com/sockjs/-/sockjs-0.3.24.tgz", + "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", "requires": { "faye-websocket": "^0.11.3", "uuid": "^8.3.2", @@ -9953,31 +18858,45 @@ }, "dependencies": { "uuid": { - "version": "8.3.2" + "version": "8.3.2", + "resolved": "https://npm.corp.kuaishou.com/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" } } }, "source-list-map": { - "version": "2.0.1" + "version": "2.0.1", + "resolved": "https://npm.corp.kuaishou.com/source-list-map/-/source-list-map-2.0.1.tgz", + "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==" }, "source-map": { - "version": "0.6.1" + "version": "0.6.1", + "resolved": "https://npm.corp.kuaishou.com/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" }, "source-map-js": { - "version": "1.0.2" + "version": "1.0.2", + "resolved": "https://npm.corp.kuaishou.com/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==" }, "source-map-support": { "version": "0.5.21", + "resolved": "https://npm.corp.kuaishou.com/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha1-BP58f54e0tZiIzwoyys1ufY/bk8=", "requires": { "buffer-from": "^1.0.0", "source-map": "^0.6.0" } }, "sourcemap-codec": { - "version": "1.4.8" + "version": "1.4.8", + "resolved": "https://npm.corp.kuaishou.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", + "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==" }, "spdy": { "version": "4.0.2", + "resolved": "https://npm.corp.kuaishou.com/spdy/-/spdy-4.0.2.tgz", + "integrity": "sha1-t09GYgOj7aRSwCSSuR+56EonZ3s=", "requires": { "debug": "^4.1.0", "handle-thing": "^2.0.0", @@ -9988,17 +18907,23 @@ "dependencies": { "debug": { "version": "4.3.4", + "resolved": "https://npm.corp.kuaishou.com/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "requires": { "ms": "2.1.2" } }, "ms": { - "version": "2.1.2" + "version": "2.1.2", + "resolved": "https://npm.corp.kuaishou.com/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" } } }, "spdy-transport": { "version": "3.0.0", + "resolved": "https://npm.corp.kuaishou.com/spdy-transport/-/spdy-transport-3.0.0.tgz", + "integrity": "sha1-ANSGOmQArXXfkzYaFghgXl3NzzE=", "requires": { "debug": "^4.1.0", "detect-node": "^2.0.4", @@ -10010,32 +18935,46 @@ "dependencies": { "debug": { "version": "4.3.4", + "resolved": "https://npm.corp.kuaishou.com/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "requires": { "ms": "2.1.2" } }, "ms": { - "version": "2.1.2" + "version": "2.1.2", + "resolved": "https://npm.corp.kuaishou.com/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" } } }, "sprintf-js": { - "version": "1.0.3" + "version": "1.0.3", + "resolved": "https://npm.corp.kuaishou.com/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" }, "statuses": { - "version": "2.0.1" + "version": "2.0.1", + "resolved": "https://npm.corp.kuaishou.com/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha1-VcsADM8dSHKL0jxoWgY5mM8aG2M=" }, "storejs": { - "version": "1.1.0" + "version": "1.1.0", + "resolved": "https://npm.corp.kuaishou.com/storejs/-/storejs-1.1.0.tgz", + "integrity": "sha1-9jvkPHR8FL46excBg5KTgJHWRnk=" }, "string_decoder": { "version": "1.3.0", + "resolved": "https://npm.corp.kuaishou.com/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha1-QvEUWUpGzxqOMLCoT1bHjD7awh4=", "requires": { "safe-buffer": "~5.2.0" } }, "string-width": { "version": "1.0.2", + "resolved": "https://npm.corp.kuaishou.com/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==", "requires": { "code-point-at": "^1.0.0", "is-fullwidth-code-point": "^1.0.0", @@ -10044,22 +18983,32 @@ }, "strip-ansi": { "version": "3.0.1", + "resolved": "https://npm.corp.kuaishou.com/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", "requires": { "ansi-regex": "^2.0.0" } }, "strip-bom-string": { - "version": "1.0.0" + "version": "1.0.0", + "resolved": "https://npm.corp.kuaishou.com/strip-bom-string/-/strip-bom-string-1.0.0.tgz", + "integrity": "sha1-5SEekiQ2n7uB1jOi8ABE3IztrZI=" }, "strip-final-newline": { - "version": "3.0.0" + "version": "3.0.0", + "resolved": "https://npm.corp.kuaishou.com/strip-final-newline/-/strip-final-newline-3.0.0.tgz", + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==" }, "style-loader": { "version": "3.3.1", + "resolved": "https://npm.corp.kuaishou.com/style-loader/-/style-loader-3.3.1.tgz", + "integrity": "sha1-BX36az1NfHBkRigw+RE+1BfThXU=", "requires": {} }, "superagent": { "version": "3.8.3", + "resolved": "https://npm.corp.kuaishou.com/superagent/-/superagent-3.8.3.tgz", + "integrity": "sha512-GLQtLMCoEIK4eDv6OGtkOoSMt3D+oq0y3dsxMuYuDvaNUvuT8eFBuLmfR0iYYzHC1e8hpzC6ZsxbuP6DIalMFA==", "requires": { "component-emitter": "^1.2.0", "cookiejar": "^2.1.0", @@ -10075,12 +19024,16 @@ "dependencies": { "debug": { "version": "3.2.7", + "resolved": "https://npm.corp.kuaishou.com/debug/-/debug-3.2.7.tgz", + "integrity": "sha1-clgLfpFF+zm2Z2+cXl+xALk0F5o=", "requires": { "ms": "^2.1.1" } }, "readable-stream": { "version": "2.3.7", + "resolved": "https://npm.corp.kuaishou.com/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", "requires": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", @@ -10092,10 +19045,14 @@ } }, "safe-buffer": { - "version": "5.1.2" + "version": "5.1.2", + "resolved": "https://npm.corp.kuaishou.com/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha1-mR7GnSluAxN0fVm9/St0XDX4go0=" }, "string_decoder": { "version": "1.1.1", + "resolved": "https://npm.corp.kuaishou.com/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha1-nPFhG6YmhdcDCunkujQUnDrwP8g=", "requires": { "safe-buffer": "~5.1.0" } @@ -10104,18 +19061,26 @@ }, "supports-color": { "version": "7.2.0", + "resolved": "https://npm.corp.kuaishou.com/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=", "requires": { "has-flag": "^4.0.0" } }, "supports-preserve-symlinks-flag": { - "version": "1.0.0" + "version": "1.0.0", + "resolved": "https://npm.corp.kuaishou.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" }, "tapable": { - "version": "2.2.1" + "version": "2.2.1", + "resolved": "https://npm.corp.kuaishou.com/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha1-GWenPvQGCoLxKrlq+G1S/bdu7KA=" }, "terser": { "version": "5.15.1", + "resolved": "https://npm.corp.kuaishou.com/terser/-/terser-5.15.1.tgz", + "integrity": "sha512-K1faMUvpm/FBxjBXud0LWVAGxmvoPbZbfTCYbSgaaYQaIXI3/TdI7a7ZGA73Zrou6Q8Zmz3oeUTsp/dj+ag2Xw==", "requires": { "@jridgewell/source-map": "^0.3.2", "acorn": "^8.5.0", @@ -10125,6 +19090,8 @@ }, "terser-webpack-plugin": { "version": "5.3.6", + "resolved": "https://npm.corp.kuaishou.com/terser-webpack-plugin/-/terser-webpack-plugin-5.3.6.tgz", + "integrity": "sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ==", "requires": { "@jridgewell/trace-mapping": "^0.3.14", "jest-worker": "^27.4.5", @@ -10135,6 +19102,8 @@ "dependencies": { "ajv": { "version": "6.12.6", + "resolved": "https://npm.corp.kuaishou.com/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "requires": { "fast-deep-equal": "^3.1.1", "fast-json-stable-stringify": "^2.0.0", @@ -10144,13 +19113,19 @@ }, "ajv-keywords": { "version": "3.5.2", + "resolved": "https://npm.corp.kuaishou.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", "requires": {} }, "json-schema-traverse": { - "version": "0.4.1" + "version": "0.4.1", + "resolved": "https://npm.corp.kuaishou.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" }, "schema-utils": { "version": "3.1.1", + "resolved": "https://npm.corp.kuaishou.com/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", "requires": { "@types/json-schema": "^7.0.8", "ajv": "^6.12.5", @@ -10159,51 +19134,87 @@ } } }, + "theme-vitesse": { + "version": "0.4.10", + "resolved": "https://npm.corp.kuaishou.com/theme-vitesse/-/theme-vitesse-0.4.10.tgz", + "integrity": "sha512-/iUB1ibBBZaJvwD4lgFoRFeY1WWQHEfZs9TLHwKfyXXc00RY7IqBcwPYJeZgkZIKQJ9AedTGCLYG5jHUZRoRmg==" + }, "thunky": { - "version": "1.1.0" + "version": "1.1.0", + "resolved": "https://npm.corp.kuaishou.com/thunky/-/thunky-1.1.0.tgz", + "integrity": "sha1-Wrr3FKlAXbBQRzK7zNLO3Z75U30=" }, "to-fast-properties": { - "version": "2.0.0" + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=" }, "to-regex-range": { "version": "5.0.1", + "resolved": "https://npm.corp.kuaishou.com/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha1-FkjESq58jZiKMmAY7XL1tN0DkuQ=", "requires": { "is-number": "^7.0.0" } }, "toidentifier": { - "version": "1.0.1" + "version": "1.0.1", + "resolved": "https://npm.corp.kuaishou.com/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha1-O+NDIaiKgg7RvYDfqjPkefu43TU=" + }, + "toml": { + "version": "3.0.0", + "resolved": "https://npm.corp.kuaishou.com/toml/-/toml-3.0.0.tgz", + "integrity": "sha1-NCFg8a8ZBOydIE0DpdYSItdixe4=" }, "ts-debounce": { - "version": "4.0.0" + "version": "4.0.0", + "resolved": "https://npm.corp.kuaishou.com/ts-debounce/-/ts-debounce-4.0.0.tgz", + "integrity": "sha1-M0QO9k+rU3k8PVRqjKauU57BWEE=" }, "tslib": { - "version": "2.4.1" + "version": "2.4.1", + "resolved": "https://npm.corp.kuaishou.com/tslib/-/tslib-2.4.1.tgz", + "integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==" }, "type-is": { "version": "1.6.18", + "resolved": "https://npm.corp.kuaishou.com/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha1-TlUs0F3wlGfcvE73Od6J8s83wTE=", "requires": { "media-typer": "0.3.0", "mime-types": "~2.1.24" } }, "uc.micro": { - "version": "1.0.6" + "version": "1.0.6", + "resolved": "https://npm.corp.kuaishou.com/uc.micro/-/uc.micro-1.0.6.tgz", + "integrity": "sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==" }, "underscore": { - "version": "1.13.6" + "version": "1.13.6", + "resolved": "https://npm.corp.kuaishou.com/underscore/-/underscore-1.13.6.tgz", + "integrity": "sha512-+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A==" }, "universalify": { - "version": "2.0.0" + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha1-daSYTv7cSwiXXFrrc/Uw0C3yVxc=" }, "unpipe": { - "version": "1.0.0" + "version": "1.0.0", + "resolved": "https://npm.corp.kuaishou.com/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" }, "upath": { - "version": "2.0.1" + "version": "2.0.1", + "resolved": "https://npm.corp.kuaishou.com/upath/-/upath-2.0.1.tgz", + "integrity": "sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==" }, "update-browserslist-db": { "version": "1.0.10", + "resolved": "https://npm.corp.kuaishou.com/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz", + "integrity": "sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==", "requires": { "escalade": "^3.1.1", "picocolors": "^1.0.0" @@ -10211,24 +19222,36 @@ }, "uri-js": { "version": "4.4.1", + "resolved": "https://npm.corp.kuaishou.com/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", "requires": { "punycode": "^2.1.0" } }, "util-deprecate": { - "version": "1.0.2" + "version": "1.0.2", + "resolved": "https://npm.corp.kuaishou.com/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" }, "utila": { - "version": "0.4.0" + "version": "0.4.0", + "resolved": "https://npm.corp.kuaishou.com/utila/-/utila-0.4.0.tgz", + "integrity": "sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==" }, "utils-merge": { - "version": "1.0.1" + "version": "1.0.1", + "resolved": "https://npm.corp.kuaishou.com/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==" }, "uuid": { - "version": "3.4.0" + "version": "3.4.0", + "resolved": "https://npm.corp.kuaishou.com/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==" }, "valine": { "version": "1.4.18", + "resolved": "https://npm.corp.kuaishou.com/valine/-/valine-1.4.18.tgz", + "integrity": "sha512-7Epks0rMn10qWAbBxmUGCUYPL+bJwasYuzU9QHpa6yNk5vAv6PTh1oPTVYX5AB7OzhVwUxj5HKs/jyUpXLwESQ==", "requires": { "autosize": "^4.0.2", "balajs": "^1.0.7", @@ -10244,10 +19267,14 @@ } }, "vary": { - "version": "1.1.2" + "version": "1.1.2", + "resolved": "https://npm.corp.kuaishou.com/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==" }, "vite": { "version": "3.0.9", + "resolved": "https://npm.corp.kuaishou.com/vite/-/vite-3.0.9.tgz", + "integrity": "sha512-waYABTM+G6DBTCpYAxvevpG50UOlZuynR0ckTK5PawNVt7ebX6X7wNXHaGIO6wYYFXSM7/WcuFuO2QzhBB6aMw==", "requires": { "esbuild": "^0.14.47", "fsevents": "~2.3.2", @@ -10258,14 +19285,28 @@ "dependencies": { "rollup": { "version": "2.77.3", + "resolved": "https://npm.corp.kuaishou.com/rollup/-/rollup-2.77.3.tgz", + "integrity": "sha512-/qxNTG7FbmefJWoeeYJFbHehJ2HNWnjkAFRKzWN/45eNBBF/r8lo992CwcJXEzyVxs5FmfId+vTSTQDb+bxA+g==", "requires": { "fsevents": "~2.3.2" } } } }, + "vscode-oniguruma": { + "version": "1.6.2", + "resolved": "https://npm.corp.kuaishou.com/vscode-oniguruma/-/vscode-oniguruma-1.6.2.tgz", + "integrity": "sha512-KH8+KKov5eS/9WhofZR8M8dMHWN2gTxjMsG4jd04YhpbPR91fUj7rYQ2/XjeHCJWbg7X++ApRIU9NUwM2vTvLA==" + }, + "vscode-textmate": { + "version": "5.2.0", + "resolved": "https://npm.corp.kuaishou.com/vscode-textmate/-/vscode-textmate-5.2.0.tgz", + "integrity": "sha1-AfAXYKOR6CIv5PM/vMvRrXGu104=" + }, "vue": { "version": "3.2.41", + "resolved": "https://npm.corp.kuaishou.com/vue/-/vue-3.2.41.tgz", + "integrity": "sha512-uuuvnrDXEeZ9VUPljgHkqB5IaVO8SxhPpqF2eWOukVrBnRBx2THPSGQBnVRt0GrIG1gvCmFXMGbd7FqcT1ixNQ==", "requires": { "@vue/compiler-dom": "3.2.41", "@vue/compiler-sfc": "3.2.41", @@ -10276,10 +19317,14 @@ }, "vue-demi": { "version": "0.13.11", + "resolved": "https://npm.corp.kuaishou.com/vue-demi/-/vue-demi-0.13.11.tgz", + "integrity": "sha512-IR8HoEEGM65YY3ZJYAjMlKygDQn25D5ajNFNoKh9RSDMQtlzCxtfQjdQgv9jjK+m3377SsJXY8ysq8kLCZL25A==", "requires": {} }, "vue-loader": { "version": "17.0.1", + "resolved": "https://npm.corp.kuaishou.com/vue-loader/-/vue-loader-17.0.1.tgz", + "integrity": "sha512-/OOyugJnImKCkAKrAvdsWMuwoCqGxWT5USLsjohzWbMgOwpA5wQmzQiLMzZd7DjhIfunzAGIApTOgIylz/kwcg==", "requires": { "chalk": "^4.1.0", "hash-sum": "^2.0.0", @@ -10288,6 +19333,8 @@ "dependencies": { "chalk": { "version": "4.1.2", + "resolved": "https://npm.corp.kuaishou.com/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "requires": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" @@ -10295,20 +19342,322 @@ } } }, + "vue-playground": { + "version": "0.1.10", + "resolved": "https://npm.corp.kuaishou.com/vue-playground/-/vue-playground-0.1.10.tgz", + "integrity": "sha512-baONjL5Mx3GJjAXNo83eV/LNW0uz1QJO3UVEmxCYP+unc8Fzp2XCHN08nhqrATtIIo8B0rMuvh24jM/xa9jO0g==", + "requires": { + "@babel/standalone": "^7.17.11", + "@babel/types": "^7.17.10", + "@types/babel__core": "^7.1.19", + "@types/babel__standalone": "^7.1.4", + "@vue/reactivity": "^3.2.33", + "@vue/runtime-core": "^3.2.33", + "@vue/runtime-dom": "^3.2.33", + "@vue/shared": "^3.2.33", + "@vueuse/core": "^8.4.1", + "emmet-monaco-es": "^5.1.0", + "js-base64": "^3.7.2", + "theme-vitesse": "^0.4.9", + "vue-demi": "*" + }, + "dependencies": { + "@types/web-bluetooth": { + "version": "0.0.14", + "resolved": "https://npm.corp.kuaishou.com/@types%2fweb-bluetooth/-/web-bluetooth-0.0.14.tgz", + "integrity": "sha512-5d2RhCard1nQUC3aHcq/gHzWYO6K0WJmAbjO7mQJgCQKtZpgXxv1rOM6O/dBDhDYYVutk1sciOgNSe+5YyfM8A==" + }, + "@vueuse/core": { + "version": "8.9.4", + "resolved": "https://npm.corp.kuaishou.com/@vueuse%2fcore/-/core-8.9.4.tgz", + "integrity": "sha512-B/Mdj9TK1peFyWaPof+Zf/mP9XuGAngaJZBwPaXBvU3aCTZlx3ltlrFFFyMV4iGBwsjSCeUCgZrtkEj9dS2Y3Q==", + "requires": { + "@types/web-bluetooth": "^0.0.14", + "@vueuse/metadata": "8.9.4", + "@vueuse/shared": "8.9.4", + "vue-demi": "*" + } + }, + "@vueuse/metadata": { + "version": "8.9.4", + "resolved": "https://npm.corp.kuaishou.com/@vueuse%2fmetadata/-/metadata-8.9.4.tgz", + "integrity": "sha512-IwSfzH80bnJMzqhaapqJl9JRIiyQU0zsRGEgnxN6jhq7992cPUJIRfV+JHRIZXjYqbwt07E1gTEp0R0zPJ1aqw==" + }, + "@vueuse/shared": { + "version": "8.9.4", + "resolved": "https://npm.corp.kuaishou.com/@vueuse%2fshared/-/shared-8.9.4.tgz", + "integrity": "sha512-wt+T30c4K6dGRMVqPddexEVLa28YwxW5OFIPmzUHICjphfAuBFTTdDoyqREZNDOFJZ44ARH1WWQNCUK8koJ+Ag==", + "requires": { + "vue-demi": "*" + } + } + } + }, "vue-router": { "version": "4.1.6", + "resolved": "https://npm.corp.kuaishou.com/vue-router/-/vue-router-4.1.6.tgz", + "integrity": "sha512-DYWYwsG6xNPmLq/FmZn8Ip+qrhFEzA14EI12MsMgVxvHFDYvlr4NXpVF5hrRH1wVcDP8fGi5F4rxuJSl8/r+EQ==", "requires": { "@vue/devtools-api": "^6.4.5" } }, "vuepress": { "version": "2.0.0-beta.51", + "resolved": "https://npm.corp.kuaishou.com/vuepress/-/vuepress-2.0.0-beta.51.tgz", + "integrity": "sha512-IEavO4+9OpyjL9UANVbH8LZ3Cgmj6Amjt41JPM5nZ29U0aDsHJeVWDwyuMVYTlOvZiY+JDHEtIbfM839wFzEcw==", "requires": { "vuepress-vite": "2.0.0-beta.51" } }, + "vuepress-plugin-sandbox": { + "version": "0.1.10", + "resolved": "https://npm.corp.kuaishou.com/vuepress-plugin-sandbox/-/vuepress-plugin-sandbox-0.1.10.tgz", + "integrity": "sha512-UNLyIwcMdnCTlpJt6q2FqklS0sXcMghPXTc649lrBWdq1vmDXdmZ3/GiD5gkVBk4wXx5kreYuX3XoS5W50a5iw==", + "requires": { + "@types/markdown-it-container": "^2.0.5", + "@vue/shared": "^3.2.33", + "@vuepress/client": "2.0.0-beta.45", + "@vuepress/core": "2.0.0-beta.45", + "@vuepress/markdown": "2.0.0-beta.45", + "@vueuse/core": "^8.4.1", + "markdown-it": "^13.0.1", + "markdown-it-container": "^3.0.0", + "monaco-editor": "^0.33.0", + "vue": "^3.2.31", + "vue-demi": "*", + "vue-playground": "0.1.10" + }, + "dependencies": { + "@types/web-bluetooth": { + "version": "0.0.14", + "resolved": "https://npm.corp.kuaishou.com/@types%2fweb-bluetooth/-/web-bluetooth-0.0.14.tgz", + "integrity": "sha512-5d2RhCard1nQUC3aHcq/gHzWYO6K0WJmAbjO7mQJgCQKtZpgXxv1rOM6O/dBDhDYYVutk1sciOgNSe+5YyfM8A==" + }, + "@vuepress/client": { + "version": "2.0.0-beta.45", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fclient/-/client-2.0.0-beta.45.tgz", + "integrity": "sha512-4oK77LI5FpHvF6bZxREfLdWfOgAZroDkyy46moRopasg72UeXjfvOTb/6tIKaNQP6e/Kn2ubRxVeLe7DR5d9Ng==", + "requires": { + "@vue/devtools-api": "^6.1.4", + "@vuepress/shared": "2.0.0-beta.45", + "vue": "^3.2.33", + "vue-router": "^4.0.15" + } + }, + "@vuepress/core": { + "version": "2.0.0-beta.45", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fcore/-/core-2.0.0-beta.45.tgz", + "integrity": "sha512-SeTzsNKc+E41b0p5nNiWRqMIxXM0Pu59MAaSkd1SFqEa8vtxDQZvgdM2xIbmCEejVSnKqLJwyyN+F2vEvPF9WA==", + "requires": { + "@vuepress/client": "2.0.0-beta.45", + "@vuepress/markdown": "2.0.0-beta.45", + "@vuepress/shared": "2.0.0-beta.45", + "@vuepress/utils": "2.0.0-beta.45", + "gray-matter": "^4.0.3", + "toml": "^3.0.0", + "vue": "^3.2.33" + } + }, + "@vuepress/markdown": { + "version": "2.0.0-beta.45", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fmarkdown/-/markdown-2.0.0-beta.45.tgz", + "integrity": "sha512-wm9NsJ17G5Cw7idj+ChZVrdKkcTkx+1DwAZDgJcQESdvDTmggQYonZa8vSY1rLxw50VmHU2v8WsiaYTTn91slA==", + "requires": { + "@types/markdown-it": "^12.2.3", + "@vuepress/shared": "2.0.0-beta.45", + "@vuepress/utils": "2.0.0-beta.45", + "markdown-it": "^13.0.1", + "markdown-it-anchor": "^8.6.3", + "markdown-it-emoji": "^2.0.2", + "mdurl": "^1.0.1" + } + }, + "@vuepress/shared": { + "version": "2.0.0-beta.45", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2fshared/-/shared-2.0.0-beta.45.tgz", + "integrity": "sha512-lYj+rgMtQ6liWjvzVy7jGux/Eix5ExbUy8b2uFAAsSE4v5wrdGeVgcFunVb40VPK3Mu0uyW4AvhCsPteLRUp1A==", + "requires": { + "@vue/shared": "^3.2.33" + } + }, + "@vuepress/utils": { + "version": "2.0.0-beta.45", + "resolved": "https://npm.corp.kuaishou.com/@vuepress%2futils/-/utils-2.0.0-beta.45.tgz", + "integrity": "sha512-vdhRs+Q3tuJiznQ3Vlckumpciv7uKm6kTcqkAInZJdtpa/vS+SAeeS3q8ThERC0I7z1mnW/s/CGkVlLKhrfjKA==", + "requires": { + "@types/debug": "^4.1.7", + "@types/fs-extra": "^9.0.13", + "@vuepress/shared": "2.0.0-beta.45", + "chalk": "^4.1.2", + "debug": "^4.3.4", + "fs-extra": "^10.1.0", + "globby": "^11.0.4", + "hash-sum": "^2.0.0", + "ora": "^5.4.1", + "upath": "^2.0.1" + } + }, + "@vueuse/core": { + "version": "8.9.4", + "resolved": "https://npm.corp.kuaishou.com/@vueuse%2fcore/-/core-8.9.4.tgz", + "integrity": "sha512-B/Mdj9TK1peFyWaPof+Zf/mP9XuGAngaJZBwPaXBvU3aCTZlx3ltlrFFFyMV4iGBwsjSCeUCgZrtkEj9dS2Y3Q==", + "requires": { + "@types/web-bluetooth": "^0.0.14", + "@vueuse/metadata": "8.9.4", + "@vueuse/shared": "8.9.4", + "vue-demi": "*" + }, + "dependencies": { + "@vueuse/shared": { + "version": "8.9.4", + "resolved": "https://npm.corp.kuaishou.com/@vueuse%2fshared/-/shared-8.9.4.tgz", + "integrity": "sha512-wt+T30c4K6dGRMVqPddexEVLa28YwxW5OFIPmzUHICjphfAuBFTTdDoyqREZNDOFJZ44ARH1WWQNCUK8koJ+Ag==", + "requires": { + "vue-demi": "*" + } + } + } + }, + "@vueuse/metadata": { + "version": "8.9.4", + "resolved": "https://npm.corp.kuaishou.com/@vueuse%2fmetadata/-/metadata-8.9.4.tgz", + "integrity": "sha512-IwSfzH80bnJMzqhaapqJl9JRIiyQU0zsRGEgnxN6jhq7992cPUJIRfV+JHRIZXjYqbwt07E1gTEp0R0zPJ1aqw==" + }, + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://npm.corp.kuaishou.com/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha1-CCyyyJyf6GWaMRpTvWpNxTAdswQ=" + }, + "bl": { + "version": "4.1.0", + "resolved": "https://npm.corp.kuaishou.com/bl/-/bl-4.1.0.tgz", + "integrity": "sha1-RRU1JkGCvsL7vIOmKrmM8R2fezo=", + "requires": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "buffer": { + "version": "5.7.1", + "resolved": "https://npm.corp.kuaishou.com/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://npm.corp.kuaishou.com/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "cli-cursor": { + "version": "3.1.0", + "resolved": "https://npm.corp.kuaishou.com/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha1-JkMFp65JDR0Dvwybp8kl0XU68wc=", + "requires": { + "restore-cursor": "^3.1.0" + } + }, + "debug": { + "version": "4.3.4", + "resolved": "https://npm.corp.kuaishou.com/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "requires": { + "ms": "2.1.2" + } + }, + "globby": { + "version": "11.1.0", + "resolved": "https://npm.corp.kuaishou.com/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "requires": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + } + }, + "is-interactive": { + "version": "1.0.0", + "resolved": "https://npm.corp.kuaishou.com/is-interactive/-/is-interactive-1.0.0.tgz", + "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==" + }, + "is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://npm.corp.kuaishou.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==" + }, + "log-symbols": { + "version": "4.1.0", + "resolved": "https://npm.corp.kuaishou.com/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha1-P727lbRoOsn8eFER55LlWNSr1QM=", + "requires": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + } + }, + "monaco-editor": { + "version": "0.33.0", + "resolved": "https://npm.corp.kuaishou.com/monaco-editor/-/monaco-editor-0.33.0.tgz", + "integrity": "sha512-VcRWPSLIUEgQJQIE0pVT8FcGBIgFoxz7jtqctE+IiCxWugD0DwgyQBcZBhdSrdMC84eumoqMZsGl2GTreOzwqw==" + }, + "ms": { + "version": "2.1.2", + "resolved": "https://npm.corp.kuaishou.com/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "ora": { + "version": "5.4.1", + "resolved": "https://npm.corp.kuaishou.com/ora/-/ora-5.4.1.tgz", + "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", + "requires": { + "bl": "^4.1.0", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.5.0", + "is-interactive": "^1.0.0", + "is-unicode-supported": "^0.1.0", + "log-symbols": "^4.1.0", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" + } + }, + "restore-cursor": { + "version": "3.1.0", + "resolved": "https://npm.corp.kuaishou.com/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "requires": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + } + }, + "slash": { + "version": "3.0.0", + "resolved": "https://npm.corp.kuaishou.com/slash/-/slash-3.0.0.tgz", + "integrity": "sha1-ZTm+hwwWWtvVJAIg2+Nh8bxNRjQ=" + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://npm.corp.kuaishou.com/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha1-nibGPTD1NEPpSJSVshBdN7Z6hdk=", + "requires": { + "ansi-regex": "^5.0.1" + } + } + } + }, "vuepress-theme-reco": { "version": "2.0.0-beta.41", + "resolved": "https://npm.corp.kuaishou.com/vuepress-theme-reco/-/vuepress-theme-reco-2.0.0-beta.41.tgz", + "integrity": "sha512-WLeqjqLT9i4H6gtvgLhwnp7EpRHSahctzRVMmwPtwTwzuwjO3lNWC8zxRSGvzaqZIHMCUsxLyx0UttQCXvNyvA==", "requires": { "@vicons/fa": "^0.12.0", "@vicons/tabler": "^0.12.0", @@ -10347,6 +19696,8 @@ "dependencies": { "autoprefixer": { "version": "10.4.7", + "resolved": "https://npm.corp.kuaishou.com/autoprefixer/-/autoprefixer-10.4.7.tgz", + "integrity": "sha512-ypHju4Y2Oav95SipEcCcI5J7CGPuvz8oat7sUtYj3ClK44bldfvtvcxK6IEK++7rqB7YchDGzweZIBG+SD0ZAA==", "requires": { "browserslist": "^4.20.3", "caniuse-lite": "^1.0.30001335", @@ -10358,12 +19709,16 @@ }, "glob-parent": { "version": "6.0.2", + "resolved": "https://npm.corp.kuaishou.com/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", "requires": { "is-glob": "^4.0.3" } }, "postcss": { "version": "8.4.14", + "resolved": "https://npm.corp.kuaishou.com/postcss/-/postcss-8.4.14.tgz", + "integrity": "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==", "requires": { "nanoid": "^3.3.4", "picocolors": "^1.0.0", @@ -10372,12 +19727,16 @@ }, "postcss-each": { "version": "1.1.0", + "resolved": "https://npm.corp.kuaishou.com/postcss-each/-/postcss-each-1.1.0.tgz", + "integrity": "sha512-YfTPHHAPFVRgEJfLg9RM4R9WYEHVU9Rf1R8QgZfnObwV2dgNqzTLzTl0w5tF71ApFcYLiJAXiTpHAoqJFYcZVw==", "requires": { "postcss-simple-vars": "^6.0.0" } }, "postcss-import": { "version": "14.0.2", + "resolved": "https://npm.corp.kuaishou.com/postcss-import/-/postcss-import-14.0.2.tgz", + "integrity": "sha1-YO/3fmvpLntn/kaex5fZQkyuGqE=", "requires": { "postcss-value-parser": "^4.0.0", "read-cache": "^1.0.0", @@ -10386,10 +19745,14 @@ }, "postcss-simple-vars": { "version": "6.0.3", + "resolved": "https://npm.corp.kuaishou.com/postcss-simple-vars/-/postcss-simple-vars-6.0.3.tgz", + "integrity": "sha1-5mUWx/6YDaNJj0qK1AC5xThhgGw=", "requires": {} }, "tailwindcss": { "version": "3.1.6", + "resolved": "https://npm.corp.kuaishou.com/tailwindcss/-/tailwindcss-3.1.6.tgz", + "integrity": "sha512-7skAOY56erZAFQssT1xkpk+kWt2NrO45kORlxFPXUt3CiGsVPhH1smuH5XoDH6sGPXLyBv+zgCKA2HWBsgCytg==", "requires": { "arg": "^5.0.2", "chokidar": "^3.5.3", @@ -10417,6 +19780,8 @@ "dependencies": { "postcss": { "version": "8.4.18", + "resolved": "https://npm.corp.kuaishou.com/postcss/-/postcss-8.4.18.tgz", + "integrity": "sha512-Wi8mWhncLJm11GATDaQKobXSNEYGUHeQLiQqDFG1qQ5UTDPTEvKw0Xt5NsTpktGTwLps3ByrWsBrG0rB8YQ9oA==", "requires": { "nanoid": "^3.3.4", "picocolors": "^1.0.0", @@ -10425,6 +19790,8 @@ }, "postcss-import": { "version": "14.1.0", + "resolved": "https://npm.corp.kuaishou.com/postcss-import/-/postcss-import-14.1.0.tgz", + "integrity": "sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==", "requires": { "postcss-value-parser": "^4.0.0", "read-cache": "^1.0.0", @@ -10433,12 +19800,16 @@ }, "postcss-js": { "version": "4.0.0", + "resolved": "https://npm.corp.kuaishou.com/postcss-js/-/postcss-js-4.0.0.tgz", + "integrity": "sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ==", "requires": { "camelcase-css": "^2.0.1" } }, "postcss-load-config": { "version": "3.1.4", + "resolved": "https://npm.corp.kuaishou.com/postcss-load-config/-/postcss-load-config-3.1.4.tgz", + "integrity": "sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==", "requires": { "lilconfig": "^2.0.5", "yaml": "^1.10.2" @@ -10446,6 +19817,8 @@ }, "postcss-nested": { "version": "5.0.6", + "resolved": "https://npm.corp.kuaishou.com/postcss-nested/-/postcss-nested-5.0.6.tgz", + "integrity": "sha1-RmND9/yNPUavPn26P81H0FKpRbw=", "requires": { "postcss-selector-parser": "^6.0.6" } @@ -10456,6 +19829,8 @@ }, "vuepress-vite": { "version": "2.0.0-beta.51", + "resolved": "https://npm.corp.kuaishou.com/vuepress-vite/-/vuepress-vite-2.0.0-beta.51.tgz", + "integrity": "sha512-EfvIBwmgRmj5xO6a3hZxRB5PRNkNK3f6RWunBEgRB31sDpGz9ZAEOTRZZ8lIPM/H1wSH39JkHUDm7fVgeuCCDg==", "requires": { "@vuepress/bundler-vite": "2.0.0-beta.51", "@vuepress/cli": "2.0.0-beta.51", @@ -10465,6 +19840,8 @@ }, "watchpack": { "version": "2.4.0", + "resolved": "https://npm.corp.kuaishou.com/watchpack/-/watchpack-2.4.0.tgz", + "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", "requires": { "glob-to-regexp": "^0.4.1", "graceful-fs": "^4.1.2" @@ -10472,18 +19849,24 @@ }, "wbuf": { "version": "1.7.3", + "resolved": "https://npm.corp.kuaishou.com/wbuf/-/wbuf-1.7.3.tgz", + "integrity": "sha1-wdjRSTFtPqhShIiVy2oL/oh7h98=", "requires": { "minimalistic-assert": "^1.0.0" } }, "wcwidth": { "version": "1.0.1", + "resolved": "https://npm.corp.kuaishou.com/wcwidth/-/wcwidth-1.0.1.tgz", + "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", "requires": { "defaults": "^1.0.3" } }, "webpack": { "version": "5.74.0", + "resolved": "https://npm.corp.kuaishou.com/webpack/-/webpack-5.74.0.tgz", + "integrity": "sha512-A2InDwnhhGN4LYctJj6M1JEaGL7Luj6LOmyBHjcI8529cm5p6VXiTIW2sn6ffvEAKmveLzvu4jrihwXtPojlAA==", "requires": { "@types/eslint-scope": "^3.7.3", "@types/estree": "^0.0.51", @@ -10512,10 +19895,14 @@ }, "dependencies": { "@types/estree": { - "version": "0.0.51" + "version": "0.0.51", + "resolved": "https://npm.corp.kuaishou.com/@types%2festree/-/estree-0.0.51.tgz", + "integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==" }, "ajv": { "version": "6.12.6", + "resolved": "https://npm.corp.kuaishou.com/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "requires": { "fast-deep-equal": "^3.1.1", "fast-json-stable-stringify": "^2.0.0", @@ -10525,13 +19912,19 @@ }, "ajv-keywords": { "version": "3.5.2", + "resolved": "https://npm.corp.kuaishou.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", "requires": {} }, "json-schema-traverse": { - "version": "0.4.1" + "version": "0.4.1", + "resolved": "https://npm.corp.kuaishou.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" }, "schema-utils": { "version": "3.1.1", + "resolved": "https://npm.corp.kuaishou.com/schema-utils/-/schema-utils-3.1.1.tgz", + "integrity": "sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==", "requires": { "@types/json-schema": "^7.0.8", "ajv": "^6.12.5", @@ -10539,12 +19932,16 @@ } }, "webpack-sources": { - "version": "3.2.3" + "version": "3.2.3", + "resolved": "https://npm.corp.kuaishou.com/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==" } } }, "webpack-chain": { "version": "6.5.1", + "resolved": "https://npm.corp.kuaishou.com/webpack-chain/-/webpack-chain-6.5.1.tgz", + "integrity": "sha1-TycoTLu2N+PI+970Pu9YjU2GEgY=", "requires": { "deepmerge": "^1.5.2", "javascript-stringify": "^2.0.1" @@ -10552,6 +19949,8 @@ }, "webpack-dev-middleware": { "version": "5.3.3", + "resolved": "https://npm.corp.kuaishou.com/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz", + "integrity": "sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==", "requires": { "colorette": "^2.0.10", "memfs": "^3.4.3", @@ -10562,6 +19961,8 @@ }, "webpack-dev-server": { "version": "4.11.1", + "resolved": "https://npm.corp.kuaishou.com/webpack-dev-server/-/webpack-dev-server-4.11.1.tgz", + "integrity": "sha512-lILVz9tAUy1zGFwieuaQtYiadImb5M3d+H+L1zDYalYoDl0cksAB1UNyuE5MMWJrG6zR1tXkCP2fitl7yoUJiw==", "requires": { "@types/bonjour": "^3.5.9", "@types/connect-history-api-fallback": "^1.3.5", @@ -10596,6 +19997,8 @@ }, "webpack-merge": { "version": "5.8.0", + "resolved": "https://npm.corp.kuaishou.com/webpack-merge/-/webpack-merge-5.8.0.tgz", + "integrity": "sha1-Kznb8ir4d3atdEw5AiNzHTCmj2E=", "requires": { "clone-deep": "^4.0.1", "wildcard": "^2.0.0" @@ -10603,6 +20006,8 @@ }, "webpack-sources": { "version": "2.3.1", + "resolved": "https://npm.corp.kuaishou.com/webpack-sources/-/webpack-sources-2.3.1.tgz", + "integrity": "sha512-y9EI9AO42JjEcrTJFOYmVywVZdKVUfOvDUPsJea5GIr1JOEGFVqwlY2K098fFoIjOkDzHn2AjRvM8dsBZu+gCA==", "requires": { "source-list-map": "^2.0.1", "source-map": "^0.6.1" @@ -10610,6 +20015,8 @@ }, "websocket-driver": { "version": "0.7.4", + "resolved": "https://npm.corp.kuaishou.com/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", "requires": { "http-parser-js": ">=0.5.1", "safe-buffer": ">=5.1.0", @@ -10617,55 +20024,81 @@ } }, "websocket-extensions": { - "version": "0.1.4" + "version": "0.1.4", + "resolved": "https://npm.corp.kuaishou.com/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==" }, "which": { "version": "2.0.2", + "resolved": "https://npm.corp.kuaishou.com/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", "requires": { "isexe": "^2.0.0" } }, "wildcard": { - "version": "2.0.0" + "version": "2.0.0", + "resolved": "https://npm.corp.kuaishou.com/wildcard/-/wildcard-2.0.0.tgz", + "integrity": "sha1-p30g5SAMb6qsl55LOq3Hs91/j+w=" }, "window-size": { - "version": "0.1.4" + "version": "0.1.4", + "resolved": "https://npm.corp.kuaishou.com/window-size/-/window-size-0.1.4.tgz", + "integrity": "sha1-+OGqHuWlPsW/FR/6CXQqatdpeHY=" }, "wrap-ansi": { "version": "2.1.0", + "resolved": "https://npm.corp.kuaishou.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz", + "integrity": "sha512-vAaEaDM946gbNpH5pLVNR+vX2ht6n0Bt3GXwVB1AuAqZosOvHNF3P7wDnh8KLkSqgUh0uh77le7Owgoz+Z9XBw==", "requires": { "string-width": "^1.0.1", "strip-ansi": "^3.0.1" } }, "wrappy": { - "version": "1.0.2" + "version": "1.0.2", + "resolved": "https://npm.corp.kuaishou.com/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" }, "ws": { "version": "8.11.0", + "resolved": "https://npm.corp.kuaishou.com/ws/-/ws-8.11.0.tgz", + "integrity": "sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==", "requires": {} }, "xss": { "version": "1.0.14", + "resolved": "https://npm.corp.kuaishou.com/xss/-/xss-1.0.14.tgz", + "integrity": "sha512-og7TEJhXvn1a7kzZGQ7ETjdQVS2UfZyTlsEdDOqvQF7GoxNfY+0YLCzBy1kPdsDDx4QuNAonQPddpsn6Xl/7sw==", "requires": { "commander": "^2.20.3", "cssfilter": "0.0.10" } }, "xtend": { - "version": "4.0.2" + "version": "4.0.2", + "resolved": "https://npm.corp.kuaishou.com/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" }, "y18n": { - "version": "3.2.2" + "version": "3.2.2", + "resolved": "https://npm.corp.kuaishou.com/y18n/-/y18n-3.2.2.tgz", + "integrity": "sha1-hckBvWRwznH8S7cjrSCbcPfyhpY=" }, "yallist": { - "version": "4.0.0" + "version": "4.0.0", + "resolved": "https://npm.corp.kuaishou.com/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha1-m7knkNnA7/7GO+c1GeEaNQGaOnI=" }, "yaml": { - "version": "1.10.2" + "version": "1.10.2", + "resolved": "https://npm.corp.kuaishou.com/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==" }, "yargs": { "version": "3.32.0", + "resolved": "https://npm.corp.kuaishou.com/yargs/-/yargs-3.32.0.tgz", + "integrity": "sha512-ONJZiimStfZzhKamYvR/xvmgW3uEkAUFSP91y2caTEPhzF6uP2JfPiVZcq66b/YR0C3uitxSV7+T1x8p5bkmMg==", "requires": { "camelcase": "^2.0.1", "cliui": "^3.0.3", diff --git a/vuepress/package.json b/vuepress/package.json index 0f1b10c..037df44 100644 --- a/vuepress/package.json +++ b/vuepress/package.json @@ -12,8 +12,13 @@ }, "dependencies": { "@type-challenges/utils": "^0.1.1", + "@vuepress/plugin-google-analytics": "^1.9.7", + "@vuepress/plugin-shiki": "^2.0.0-beta.5", + "install": "^0.13.0", "monaco-editor": "^0.34.1", + "npm": "^8.19.3", "vuepress": "2.0.0-beta.51", + "vuepress-plugin-sandbox": "^0.1.10", "vuepress-theme-reco": "2.0.0-beta.41" } } diff --git a/vuepress/yarn.lock b/vuepress/yarn.lock index 18dd81c..a4540d2 100644 --- a/vuepress/yarn.lock +++ b/vuepress/yarn.lock @@ -4,7 +4,7 @@ "@ampproject/remapping@^2.1.0": version "2.2.0" - resolved "https://npm.corp.kuaishou.com/@ampproject%2fremapping/-/remapping-2.2.0.tgz#56c133824780de3174aed5ab6834f3026790154d" + resolved "https://npm.corp.kuaishou.com/@ampproject%2fremapping/-/remapping-2.2.0.tgz" integrity sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w== dependencies: "@jridgewell/gen-mapping" "^0.1.0" @@ -12,19 +12,19 @@ "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.18.6": version "7.18.6" - resolved "https://npm.corp.kuaishou.com/@babel%2fcode-frame/-/code-frame-7.18.6.tgz#3b25d38c89600baa2dcc219edfa88a74eb2c427a" + resolved "https://npm.corp.kuaishou.com/@babel%2fcode-frame/-/code-frame-7.18.6.tgz" integrity sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q== dependencies: "@babel/highlight" "^7.18.6" "@babel/compat-data@^7.20.0": version "7.20.1" - resolved "https://npm.corp.kuaishou.com/@babel%2fcompat-data/-/compat-data-7.20.1.tgz#f2e6ef7790d8c8dbf03d379502dcc246dcce0b30" + resolved "https://npm.corp.kuaishou.com/@babel%2fcompat-data/-/compat-data-7.20.1.tgz" integrity sha512-EWZ4mE2diW3QALKvDMiXnbZpRvlj+nayZ112nK93SnhqOtpdsbVD4W+2tEoT3YNBAG9RBR0ISY758ZkOgsn6pQ== -"@babel/core@^7.16.12": +"@babel/core@^7.1.0", "@babel/core@^7.16.12": version "7.20.2" - resolved "https://npm.corp.kuaishou.com/@babel%2fcore/-/core-7.20.2.tgz#8dc9b1620a673f92d3624bd926dc49a52cf25b92" + resolved "https://npm.corp.kuaishou.com/@babel%2fcore/-/core-7.20.2.tgz" integrity sha512-w7DbG8DtMrJcFOi4VrLm+8QM4az8Mo+PuLBKLp2zrYRCow8W/f9xiXm5sN53C8HksCyDQwCKha9JiDoIyPjT2g== dependencies: "@ampproject/remapping" "^2.1.0" @@ -45,7 +45,7 @@ "@babel/generator@^7.20.1", "@babel/generator@^7.20.2": version "7.20.3" - resolved "https://npm.corp.kuaishou.com/@babel%2fgenerator/-/generator-7.20.3.tgz#e58c9ae2f7bf7fdf4899160cf1e04400a82cd641" + resolved "https://npm.corp.kuaishou.com/@babel%2fgenerator/-/generator-7.20.3.tgz" integrity sha512-Wl5ilw2UD1+ZYprHVprxHZJCFeBWlzZYOovE4SDYLZnqCOD11j+0QzNeEWKLLTWM7nixrZEh7vNIyb76MyJg3A== dependencies: "@babel/types" "^7.20.2" @@ -54,7 +54,7 @@ "@babel/helper-compilation-targets@^7.20.0": version "7.20.0" - resolved "https://npm.corp.kuaishou.com/@babel%2fhelper-compilation-targets/-/helper-compilation-targets-7.20.0.tgz#6bf5374d424e1b3922822f1d9bdaa43b1a139d0a" + resolved "https://npm.corp.kuaishou.com/@babel%2fhelper-compilation-targets/-/helper-compilation-targets-7.20.0.tgz" integrity sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ== dependencies: "@babel/compat-data" "^7.20.0" @@ -64,12 +64,12 @@ "@babel/helper-environment-visitor@^7.18.9": version "7.18.9" - resolved "https://npm.corp.kuaishou.com/@babel%2fhelper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz#0c0cee9b35d2ca190478756865bb3528422f51be" + resolved "https://npm.corp.kuaishou.com/@babel%2fhelper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz" integrity sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg== "@babel/helper-function-name@^7.19.0": version "7.19.0" - resolved "https://npm.corp.kuaishou.com/@babel%2fhelper-function-name/-/helper-function-name-7.19.0.tgz#941574ed5390682e872e52d3f38ce9d1bef4648c" + resolved "https://npm.corp.kuaishou.com/@babel%2fhelper-function-name/-/helper-function-name-7.19.0.tgz" integrity sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w== dependencies: "@babel/template" "^7.18.10" @@ -77,21 +77,21 @@ "@babel/helper-hoist-variables@^7.18.6": version "7.18.6" - resolved "https://npm.corp.kuaishou.com/@babel%2fhelper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz#d4d2c8fb4baeaa5c68b99cc8245c56554f926678" + resolved "https://npm.corp.kuaishou.com/@babel%2fhelper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz" integrity sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q== dependencies: "@babel/types" "^7.18.6" "@babel/helper-module-imports@^7.18.6": version "7.18.6" - resolved "https://npm.corp.kuaishou.com/@babel%2fhelper-module-imports/-/helper-module-imports-7.18.6.tgz#1e3ebdbbd08aad1437b428c50204db13c5a3ca6e" + resolved "https://npm.corp.kuaishou.com/@babel%2fhelper-module-imports/-/helper-module-imports-7.18.6.tgz" integrity sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA== dependencies: "@babel/types" "^7.18.6" "@babel/helper-module-transforms@^7.20.2": version "7.20.2" - resolved "https://npm.corp.kuaishou.com/@babel%2fhelper-module-transforms/-/helper-module-transforms-7.20.2.tgz#ac53da669501edd37e658602a21ba14c08748712" + resolved "https://npm.corp.kuaishou.com/@babel%2fhelper-module-transforms/-/helper-module-transforms-7.20.2.tgz" integrity sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA== dependencies: "@babel/helper-environment-visitor" "^7.18.9" @@ -105,41 +105,41 @@ "@babel/helper-plugin-utils@^7.18.6": version "7.20.2" - resolved "https://npm.corp.kuaishou.com/@babel%2fhelper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz#d1b9000752b18d0877cff85a5c376ce5c3121629" + resolved "https://npm.corp.kuaishou.com/@babel%2fhelper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz" integrity sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ== "@babel/helper-simple-access@^7.20.2": version "7.20.2" - resolved "https://npm.corp.kuaishou.com/@babel%2fhelper-simple-access/-/helper-simple-access-7.20.2.tgz#0ab452687fe0c2cfb1e2b9e0015de07fc2d62dd9" + resolved "https://npm.corp.kuaishou.com/@babel%2fhelper-simple-access/-/helper-simple-access-7.20.2.tgz" integrity sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA== dependencies: "@babel/types" "^7.20.2" "@babel/helper-split-export-declaration@^7.18.6": version "7.18.6" - resolved "https://npm.corp.kuaishou.com/@babel%2fhelper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz#7367949bc75b20c6d5a5d4a97bba2824ae8ef075" + resolved "https://npm.corp.kuaishou.com/@babel%2fhelper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz" integrity sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA== dependencies: "@babel/types" "^7.18.6" "@babel/helper-string-parser@^7.19.4": version "7.19.4" - resolved "https://npm.corp.kuaishou.com/@babel%2fhelper-string-parser/-/helper-string-parser-7.19.4.tgz#38d3acb654b4701a9b77fb0615a96f775c3a9e63" + resolved "https://npm.corp.kuaishou.com/@babel%2fhelper-string-parser/-/helper-string-parser-7.19.4.tgz" integrity sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw== "@babel/helper-validator-identifier@^7.18.6", "@babel/helper-validator-identifier@^7.19.1": version "7.19.1" - resolved "https://npm.corp.kuaishou.com/@babel%2fhelper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2" + resolved "https://npm.corp.kuaishou.com/@babel%2fhelper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz" integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w== "@babel/helper-validator-option@^7.18.6": version "7.18.6" - resolved "https://npm.corp.kuaishou.com/@babel%2fhelper-validator-option/-/helper-validator-option-7.18.6.tgz#bf0d2b5a509b1f336099e4ff36e1a63aa5db4db8" + resolved "https://npm.corp.kuaishou.com/@babel%2fhelper-validator-option/-/helper-validator-option-7.18.6.tgz" integrity sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw== "@babel/helpers@^7.20.1": version "7.20.1" - resolved "https://npm.corp.kuaishou.com/@babel%2fhelpers/-/helpers-7.20.1.tgz#2ab7a0fcb0a03b5bf76629196ed63c2d7311f4c9" + resolved "https://npm.corp.kuaishou.com/@babel%2fhelpers/-/helpers-7.20.1.tgz" integrity sha512-J77mUVaDTUJFZ5BpP6mMn6OIl3rEWymk2ZxDBQJUG3P+PbmyMcF3bYWvz0ma69Af1oobDqT/iAsvzhB58xhQUg== dependencies: "@babel/template" "^7.18.10" @@ -148,35 +148,40 @@ "@babel/highlight@^7.18.6": version "7.18.6" - resolved "https://npm.corp.kuaishou.com/@babel%2fhighlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf" + resolved "https://npm.corp.kuaishou.com/@babel%2fhighlight/-/highlight-7.18.6.tgz" integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g== dependencies: "@babel/helper-validator-identifier" "^7.18.6" chalk "^2.0.0" js-tokens "^4.0.0" -"@babel/parser@^7.16.4", "@babel/parser@^7.18.10", "@babel/parser@^7.20.1", "@babel/parser@^7.20.2": +"@babel/parser@^7.1.0", "@babel/parser@^7.16.4", "@babel/parser@^7.18.10", "@babel/parser@^7.20.1", "@babel/parser@^7.20.2": version "7.20.3" - resolved "https://npm.corp.kuaishou.com/@babel%2fparser/-/parser-7.20.3.tgz#5358cf62e380cf69efcb87a7bb922ff88bfac6e2" + resolved "https://npm.corp.kuaishou.com/@babel%2fparser/-/parser-7.20.3.tgz" integrity sha512-OP/s5a94frIPXwjzEcv5S/tpQfc6XhxYUnmWpgdqMWGgYCuErA3SzozaRAMQgSZWKeTJxht9aWAkUY+0UzvOFg== "@babel/plugin-syntax-jsx@^7.16.7": version "7.18.6" - resolved "https://npm.corp.kuaishou.com/@babel%2fplugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz#a8feef63b010150abd97f1649ec296e849943ca0" + resolved "https://npm.corp.kuaishou.com/@babel%2fplugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz" integrity sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q== dependencies: "@babel/helper-plugin-utils" "^7.18.6" "@babel/runtime@^7.10.2": version "7.20.1" - resolved "https://npm.corp.kuaishou.com/@babel%2fruntime/-/runtime-7.20.1.tgz#1148bb33ab252b165a06698fde7576092a78b4a9" + resolved "https://npm.corp.kuaishou.com/@babel%2fruntime/-/runtime-7.20.1.tgz" integrity sha512-mrzLkl6U9YLF8qpqI7TB82PESyEGjm/0Ly91jG575eVxMMlb8fYfOXFZIJ8XfLrJZQbm7dlKry2bJmXBUEkdFg== dependencies: regenerator-runtime "^0.13.10" +"@babel/standalone@^7.17.11": + version "7.20.4" + resolved "https://npm.corp.kuaishou.com/@babel%2fstandalone/-/standalone-7.20.4.tgz" + integrity sha512-27bv4h47jbaFZ7+e7gT1VEo9PNL1ynxqUX6/BERLz1qxm/5gzpbcHX+47VnSeYHyEyGZkRznpSOd8zPBhiz6tw== + "@babel/template@^7.18.10": version "7.18.10" - resolved "https://npm.corp.kuaishou.com/@babel%2ftemplate/-/template-7.18.10.tgz#6f9134835970d1dbf0835c0d100c9f38de0c5e71" + resolved "https://npm.corp.kuaishou.com/@babel%2ftemplate/-/template-7.18.10.tgz" integrity sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA== dependencies: "@babel/code-frame" "^7.18.6" @@ -185,7 +190,7 @@ "@babel/traverse@^7.16.10", "@babel/traverse@^7.20.1": version "7.20.1" - resolved "https://npm.corp.kuaishou.com/@babel%2ftraverse/-/traverse-7.20.1.tgz#9b15ccbf882f6d107eeeecf263fbcdd208777ec8" + resolved "https://npm.corp.kuaishou.com/@babel%2ftraverse/-/traverse-7.20.1.tgz" integrity sha512-d3tN8fkVJwFLkHkBN479SOsw4DMZnz8cdbL/gvuDuzy3TS6Nfw80HuQqhw1pITbIruHyh7d1fMA47kWzmcUEGA== dependencies: "@babel/code-frame" "^7.18.6" @@ -199,15 +204,39 @@ debug "^4.1.0" globals "^11.1.0" -"@babel/types@^7.16.8", "@babel/types@^7.18.10", "@babel/types@^7.18.6", "@babel/types@^7.19.0", "@babel/types@^7.20.0", "@babel/types@^7.20.2": +"@babel/types@^7.0.0", "@babel/types@^7.16.8", "@babel/types@^7.17.10", "@babel/types@^7.18.10", "@babel/types@^7.18.6", "@babel/types@^7.19.0", "@babel/types@^7.20.0", "@babel/types@^7.20.2", "@babel/types@^7.3.0": version "7.20.2" - resolved "https://npm.corp.kuaishou.com/@babel%2ftypes/-/types-7.20.2.tgz#67ac09266606190f496322dbaff360fdaa5e7842" + resolved "https://npm.corp.kuaishou.com/@babel%2ftypes/-/types-7.20.2.tgz" integrity sha512-FnnvsNWgZCr232sqtXggapvlkk/tuwR/qhGzcmxI0GXLCjmPYQPzio2FbdlWuY6y1sHFfQKk+rRbUZ9VStQMog== dependencies: "@babel/helper-string-parser" "^7.19.4" "@babel/helper-validator-identifier" "^7.19.1" to-fast-properties "^2.0.0" +"@colors/colors@1.5.0": + version "1.5.0" + resolved "https://npm.corp.kuaishou.com/@colors%2fcolors/-/colors-1.5.0.tgz" + integrity sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ== + +"@emmetio/abbreviation@^2.2.3": + version "2.2.3" + resolved "https://npm.corp.kuaishou.com/@emmetio%2fabbreviation/-/abbreviation-2.2.3.tgz" + integrity sha512-87pltuCPt99aL+y9xS6GPZ+Wmmyhll2WXH73gG/xpGcQ84DRnptBsI2r0BeIQ0EB/SQTOe2ANPqFqj3Rj5FOGA== + dependencies: + "@emmetio/scanner" "^1.0.0" + +"@emmetio/css-abbreviation@^2.1.4": + version "2.1.4" + resolved "https://npm.corp.kuaishou.com/@emmetio%2fcss-abbreviation/-/css-abbreviation-2.1.4.tgz" + integrity sha1-kDYuihEizjt29sMVeQfTAYL1P1Q= + dependencies: + "@emmetio/scanner" "^1.0.0" + +"@emmetio/scanner@^1.0.0": + version "1.0.0" + resolved "https://npm.corp.kuaishou.com/@emmetio%2fscanner/-/scanner-1.0.0.tgz" + integrity sha1-Blsq9iM/50dNRII+PeuJckr0K18= + "@esbuild/android-arm@0.15.13": version "0.15.13" resolved "https://npm.corp.kuaishou.com/@esbuild%2fandroid-arm/-/android-arm-0.15.13.tgz#ce11237a13ee76d5eae3908e47ba4ddd380af86a" @@ -223,9 +252,19 @@ resolved "https://npm.corp.kuaishou.com/@esbuild%2flinux-loong64/-/linux-loong64-0.15.13.tgz#64e8825bf0ce769dac94ee39d92ebe6272020dfc" integrity sha512-+BoyIm4I8uJmH/QDIH0fu7MG0AEx9OXEDXnqptXCwKOlOqZiS4iraH1Nr7/ObLMokW3sOCeBNyD68ATcV9b9Ag== +"@gar/promisify@^1.1.3": + version "1.1.3" + resolved "https://npm.corp.kuaishou.com/@gar%2fpromisify/-/promisify-1.1.3.tgz" + integrity sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw== + +"@isaacs/string-locale-compare@^1.1.0": + version "1.1.0" + resolved "https://npm.corp.kuaishou.com/@isaacs%2fstring-locale-compare/-/string-locale-compare-1.1.0.tgz" + integrity sha1-KRwifpP9QHqW7NWYeaNYCRIOQys= + "@jridgewell/gen-mapping@^0.1.0": version "0.1.1" - resolved "https://npm.corp.kuaishou.com/@jridgewell%2fgen-mapping/-/gen-mapping-0.1.1.tgz#e5d2e450306a9491e3bd77e323e38d7aff315996" + resolved "https://npm.corp.kuaishou.com/@jridgewell%2fgen-mapping/-/gen-mapping-0.1.1.tgz" integrity sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w== dependencies: "@jridgewell/set-array" "^1.0.0" @@ -233,7 +272,7 @@ "@jridgewell/gen-mapping@^0.3.0", "@jridgewell/gen-mapping@^0.3.2": version "0.3.2" - resolved "https://npm.corp.kuaishou.com/@jridgewell%2fgen-mapping/-/gen-mapping-0.3.2.tgz#c1aedc61e853f2bb9f5dfe6d4442d3b565b253b9" + resolved "https://npm.corp.kuaishou.com/@jridgewell%2fgen-mapping/-/gen-mapping-0.3.2.tgz" integrity sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A== dependencies: "@jridgewell/set-array" "^1.0.1" @@ -242,17 +281,17 @@ "@jridgewell/resolve-uri@3.1.0": version "3.1.0" - resolved "https://npm.corp.kuaishou.com/@jridgewell%2fresolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" + resolved "https://npm.corp.kuaishou.com/@jridgewell%2fresolve-uri/-/resolve-uri-3.1.0.tgz" integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== "@jridgewell/set-array@^1.0.0", "@jridgewell/set-array@^1.0.1": version "1.1.2" - resolved "https://npm.corp.kuaishou.com/@jridgewell%2fset-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" + resolved "https://npm.corp.kuaishou.com/@jridgewell%2fset-array/-/set-array-1.1.2.tgz" integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== "@jridgewell/source-map@^0.3.2": version "0.3.2" - resolved "https://npm.corp.kuaishou.com/@jridgewell%2fsource-map/-/source-map-0.3.2.tgz#f45351aaed4527a298512ec72f81040c998580fb" + resolved "https://npm.corp.kuaishou.com/@jridgewell%2fsource-map/-/source-map-0.3.2.tgz" integrity sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw== dependencies: "@jridgewell/gen-mapping" "^0.3.0" @@ -260,12 +299,12 @@ "@jridgewell/sourcemap-codec@1.4.14", "@jridgewell/sourcemap-codec@^1.4.10": version "1.4.14" - resolved "https://npm.corp.kuaishou.com/@jridgewell%2fsourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24" + resolved "https://npm.corp.kuaishou.com/@jridgewell%2fsourcemap-codec/-/sourcemap-codec-1.4.14.tgz" integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== "@jridgewell/trace-mapping@^0.3.14", "@jridgewell/trace-mapping@^0.3.9": version "0.3.17" - resolved "https://npm.corp.kuaishou.com/@jridgewell%2ftrace-mapping/-/trace-mapping-0.3.17.tgz#793041277af9073b0951a7fe0f0d8c4c98c36985" + resolved "https://npm.corp.kuaishou.com/@jridgewell%2ftrace-mapping/-/trace-mapping-0.3.17.tgz" integrity sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g== dependencies: "@jridgewell/resolve-uri" "3.1.0" @@ -273,22 +312,22 @@ "@leancloud/adapter-types@^3.0.0": version "3.0.0" - resolved "https://npm.corp.kuaishou.com/@leancloud%2fadapter-types/-/adapter-types-3.0.0.tgz#71c5e8e37065bea4914650848b55a6262d658577" + resolved "https://npm.corp.kuaishou.com/@leancloud%2fadapter-types/-/adapter-types-3.0.0.tgz" integrity sha1-ccXo43BlvqSRRlCEi1WmJi1lhXc= "@leancloud/adapter-types@^5.0.0": version "5.0.0" - resolved "https://npm.corp.kuaishou.com/@leancloud%2fadapter-types/-/adapter-types-5.0.0.tgz#38febab5232efee70744c09daa04ff053ebef70d" + resolved "https://npm.corp.kuaishou.com/@leancloud%2fadapter-types/-/adapter-types-5.0.0.tgz" integrity sha1-OP66tSMu/ucHRMCdqgT/BT6+9w0= "@leancloud/adapter-utils@^1.2.2": version "1.2.2" - resolved "https://npm.corp.kuaishou.com/@leancloud%2fadapter-utils/-/adapter-utils-1.2.2.tgz#e7e57b6a2d7ea949aa9889f33dec95ca94416a5d" + resolved "https://npm.corp.kuaishou.com/@leancloud%2fadapter-utils/-/adapter-utils-1.2.2.tgz" integrity sha1-5+V7ai1+qUmqmInzPeyVypRBal0= "@leancloud/adapters-superagent@^1.4.3": version "1.4.3" - resolved "https://npm.corp.kuaishou.com/@leancloud%2fadapters-superagent/-/adapters-superagent-1.4.3.tgz#aa093f480ce44a8c4aad3dfadff7dfe317970020" + resolved "https://npm.corp.kuaishou.com/@leancloud%2fadapters-superagent/-/adapters-superagent-1.4.3.tgz" integrity sha512-zWfYEFUXahcZH+RgaRCgf/YCWdPr0svztXdLazrn22pCStGEu0qdt2rUV9dqiw9gMh3zdkHUt6ZxlmxQyO7uXw== dependencies: "@leancloud/adapter-types" "^5.0.0" @@ -298,7 +337,7 @@ "@leancloud/platform-adapters-browser@^1.1.0": version "1.5.3" - resolved "https://npm.corp.kuaishou.com/@leancloud%2fplatform-adapters-browser/-/platform-adapters-browser-1.5.3.tgz#117ffb81fcd2b825cbded93da9f37e65c9d56b38" + resolved "https://npm.corp.kuaishou.com/@leancloud%2fplatform-adapters-browser/-/platform-adapters-browser-1.5.3.tgz" integrity sha512-60atgNek/mdOEMyawYfCClllezS4grO8JY3a83zv2ZDJ0h58cLobsNK8FSkQHn9q8zLbCpeT0drB426g/pEhTw== dependencies: "@leancloud/adapter-types" "^5.0.0" @@ -306,7 +345,7 @@ "@leancloud/platform-adapters-node@^1.1.0": version "1.5.3" - resolved "https://npm.corp.kuaishou.com/@leancloud%2fplatform-adapters-node/-/platform-adapters-node-1.5.3.tgz#951b65b02b788b7d72c6ca4835bd4210008f1102" + resolved "https://npm.corp.kuaishou.com/@leancloud%2fplatform-adapters-node/-/platform-adapters-node-1.5.3.tgz" integrity sha512-IHsNTfoDVn1P+/jAwGBn9b6AL4urWVMXOivQe9R+E3l6xFVov/YhCMQzsFllmwzQFoqoHqPb7PkB+6nTKJSKSg== dependencies: "@leancloud/adapter-types" "^5.0.0" @@ -317,7 +356,7 @@ "@leancloud/platform-adapters-weapp@^1.2.0": version "1.6.2" - resolved "https://npm.corp.kuaishou.com/@leancloud%2fplatform-adapters-weapp/-/platform-adapters-weapp-1.6.2.tgz#56d8c32d924000f943fa6c8cf0755683961a748e" + resolved "https://npm.corp.kuaishou.com/@leancloud%2fplatform-adapters-weapp/-/platform-adapters-weapp-1.6.2.tgz" integrity sha512-xMe8r3w0G/vOKy/Wnc9SZeb+cU/RzHkTK0s9aVgGS01wxOBAVlgbUEC8K67D1IeI15LxODL9e6wXXPgleR58FQ== dependencies: "@leancloud/adapter-types" "^5.0.0" @@ -327,12 +366,12 @@ "@leichtgewicht/ip-codec@^2.0.1": version "2.0.4" - resolved "https://npm.corp.kuaishou.com/@leichtgewicht%2fip-codec/-/ip-codec-2.0.4.tgz#b2ac626d6cb9c8718ab459166d4bb405b8ffa78b" + resolved "https://npm.corp.kuaishou.com/@leichtgewicht%2fip-codec/-/ip-codec-2.0.4.tgz" integrity sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A== "@mdit-vue/plugin-component@^0.10.0": version "0.10.0" - resolved "https://npm.corp.kuaishou.com/@mdit-vue%2fplugin-component/-/plugin-component-0.10.0.tgz#9eb834771c7f0cce1cc03b2afa91564ef4f43eb4" + resolved "https://npm.corp.kuaishou.com/@mdit-vue%2fplugin-component/-/plugin-component-0.10.0.tgz" integrity sha512-cfxmPVcp6880TRUgpT3eUjem1gCkg3vsBHOcjOoiD2gAu3hWg48d3woz5+F9WVrAhv8P6wpDYBzFqt29D6D4MQ== dependencies: "@types/markdown-it" "^12.2.3" @@ -340,7 +379,7 @@ "@mdit-vue/plugin-frontmatter@^0.10.0": version "0.10.0" - resolved "https://npm.corp.kuaishou.com/@mdit-vue%2fplugin-frontmatter/-/plugin-frontmatter-0.10.0.tgz#0f8bbf819ac8501dedfa3ba3d74e12dcc7cc0445" + resolved "https://npm.corp.kuaishou.com/@mdit-vue%2fplugin-frontmatter/-/plugin-frontmatter-0.10.0.tgz" integrity sha512-rJa4QM04YKRH9Edpr07BZvOjzOH2BwkPkalIa8YFIsZkCXLmrPpLsQteXbRLTkLGHLXnniW4V4tn5Y7bf7J74g== dependencies: "@mdit-vue/types" "0.10.0" @@ -350,7 +389,7 @@ "@mdit-vue/plugin-headers@^0.10.0": version "0.10.0" - resolved "https://npm.corp.kuaishou.com/@mdit-vue%2fplugin-headers/-/plugin-headers-0.10.0.tgz#832d3cde3e3bdfd15e92524535aa38cffb4b4b7c" + resolved "https://npm.corp.kuaishou.com/@mdit-vue%2fplugin-headers/-/plugin-headers-0.10.0.tgz" integrity sha512-DPrQyv83jVxX3FwmCnemVeBsSdtH4Hz+geDMwbzATtaqzaYDDpuAxoeiLGpTg41EpLe2SPDk94N3OOh0cdV0Lw== dependencies: "@mdit-vue/shared" "0.10.0" @@ -360,7 +399,7 @@ "@mdit-vue/plugin-sfc@^0.10.0": version "0.10.0" - resolved "https://npm.corp.kuaishou.com/@mdit-vue%2fplugin-sfc/-/plugin-sfc-0.10.0.tgz#ed2e0affc8b0ae6a6ee1fb7be88b11450526a6b7" + resolved "https://npm.corp.kuaishou.com/@mdit-vue%2fplugin-sfc/-/plugin-sfc-0.10.0.tgz" integrity sha512-MoKnA8rApIyNeiIXbEUbQ+LAYr51YOWnNzJnum/ttX7kHmfh0+iMDAM1MnvmgVZWqhAzwdkEFOPTb9EVUI1dng== dependencies: "@mdit-vue/types" "0.10.0" @@ -369,7 +408,7 @@ "@mdit-vue/plugin-title@^0.10.0": version "0.10.0" - resolved "https://npm.corp.kuaishou.com/@mdit-vue%2fplugin-title/-/plugin-title-0.10.0.tgz#3fa7061d15be8052489e18991f0f34492ae3f5f1" + resolved "https://npm.corp.kuaishou.com/@mdit-vue%2fplugin-title/-/plugin-title-0.10.0.tgz" integrity sha512-odJ9vIazAHiomjCEEFwHNuPnmDtx/FGOYrf9xUfi3tjG9r/JZW+G++AABxvevTozwpGlpU+wkpJ7mTr+rNtBrw== dependencies: "@mdit-vue/shared" "0.10.0" @@ -379,7 +418,7 @@ "@mdit-vue/plugin-toc@^0.10.0": version "0.10.0" - resolved "https://npm.corp.kuaishou.com/@mdit-vue%2fplugin-toc/-/plugin-toc-0.10.0.tgz#86486988ce52bed1e9c139dcdeec8cdb5b8e9d9a" + resolved "https://npm.corp.kuaishou.com/@mdit-vue%2fplugin-toc/-/plugin-toc-0.10.0.tgz" integrity sha512-P9aNy4jtqfjI08wUYGT/HVd5x/IpTjgSnNdJ3lU52qAO5AeFsW3v4gt+NmW0lO8We0S2YDEONRHBuBN6r40y6A== dependencies: "@mdit-vue/shared" "0.10.0" @@ -389,7 +428,7 @@ "@mdit-vue/shared@0.10.0", "@mdit-vue/shared@^0.10.0": version "0.10.0" - resolved "https://npm.corp.kuaishou.com/@mdit-vue%2fshared/-/shared-0.10.0.tgz#09160e0c8ab37cf7edb3f829f5a244b4b22a3be9" + resolved "https://npm.corp.kuaishou.com/@mdit-vue%2fshared/-/shared-0.10.0.tgz" integrity sha512-rUyu0NVNbaEg4DUiQenh/fam1MLdkItdzEVScN7vP0UzDWOwmGaKwkhlMmkSTW80H63ZlKst0fPe9LaGHImSZg== dependencies: "@mdit-vue/types" "0.10.0" @@ -398,12 +437,12 @@ "@mdit-vue/types@0.10.0", "@mdit-vue/types@^0.10.0": version "0.10.0" - resolved "https://npm.corp.kuaishou.com/@mdit-vue%2ftypes/-/types-0.10.0.tgz#ce595129bb26183832343a7157a754287fae58d9" + resolved "https://npm.corp.kuaishou.com/@mdit-vue%2ftypes/-/types-0.10.0.tgz" integrity sha512-ROz5zVKt3COpuWUYFnpJh5kIXit9SQeMtimGBlwKJL1xEBNPG3QKD3VZzez5Ng/dBCApianCQhNVZGCza82Myw== "@nodelib/fs.scandir@2.1.5": version "2.1.5" - resolved "https://npm.corp.kuaishou.com/@nodelib%2ffs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" + resolved "https://npm.corp.kuaishou.com/@nodelib%2ffs.scandir/-/fs.scandir-2.1.5.tgz" integrity sha1-dhnC6yGyVIP20WdUi0z9WnSIw9U= dependencies: "@nodelib/fs.stat" "2.0.5" @@ -411,25 +450,242 @@ "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": version "2.0.5" - resolved "https://npm.corp.kuaishou.com/@nodelib%2ffs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" + resolved "https://npm.corp.kuaishou.com/@nodelib%2ffs.stat/-/fs.stat-2.0.5.tgz" integrity sha1-W9Jir5Tp0lvR5xsF3u1Eh2oiLos= "@nodelib/fs.walk@^1.2.3": version "1.2.8" - resolved "https://npm.corp.kuaishou.com/@nodelib%2ffs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" + resolved "https://npm.corp.kuaishou.com/@nodelib%2ffs.walk/-/fs.walk-1.2.8.tgz" integrity sha1-6Vc36LtnRt3t9pxVaVNJTxlv5po= dependencies: "@nodelib/fs.scandir" "2.1.5" fastq "^1.6.0" +"@npmcli/arborist@^5.6.3": + version "5.6.3" + resolved "https://npm.corp.kuaishou.com/@npmcli%2farborist/-/arborist-5.6.3.tgz" + integrity sha512-/7hbqEM6YuRjwTcQXkK1+xKslEblY5kFQe0tZ7jKyMlIR6x4iOmhLErIkBBGtTKvYxRKdpcxnFXjCobg3UqmsA== + dependencies: + "@isaacs/string-locale-compare" "^1.1.0" + "@npmcli/installed-package-contents" "^1.0.7" + "@npmcli/map-workspaces" "^2.0.3" + "@npmcli/metavuln-calculator" "^3.0.1" + "@npmcli/move-file" "^2.0.0" + "@npmcli/name-from-folder" "^1.0.1" + "@npmcli/node-gyp" "^2.0.0" + "@npmcli/package-json" "^2.0.0" + "@npmcli/query" "^1.2.0" + "@npmcli/run-script" "^4.1.3" + bin-links "^3.0.3" + cacache "^16.1.3" + common-ancestor-path "^1.0.1" + hosted-git-info "^5.2.1" + json-parse-even-better-errors "^2.3.1" + json-stringify-nice "^1.1.4" + minimatch "^5.1.0" + mkdirp "^1.0.4" + mkdirp-infer-owner "^2.0.0" + nopt "^6.0.0" + npm-install-checks "^5.0.0" + npm-package-arg "^9.0.0" + npm-pick-manifest "^7.0.2" + npm-registry-fetch "^13.0.0" + npmlog "^6.0.2" + pacote "^13.6.1" + parse-conflict-json "^2.0.1" + proc-log "^2.0.0" + promise-all-reject-late "^1.0.0" + promise-call-limit "^1.0.1" + read-package-json-fast "^2.0.2" + readdir-scoped-modules "^1.1.0" + rimraf "^3.0.2" + semver "^7.3.7" + ssri "^9.0.0" + treeverse "^2.0.0" + walk-up-path "^1.0.0" + +"@npmcli/ci-detect@^2.0.0": + version "2.0.0" + resolved "https://npm.corp.kuaishou.com/@npmcli%2fci-detect/-/ci-detect-2.0.0.tgz" + integrity sha512-8yQtQ9ArHh/TzdUDKQwEvwCgpDuhSWTDAbiKMl3854PcT+Dk4UmWaiawuFTLy9n5twzXOBXVflWe+90/ffXQrA== + +"@npmcli/config@^4.2.1": + version "4.2.2" + resolved "https://npm.corp.kuaishou.com/@npmcli%2fconfig/-/config-4.2.2.tgz" + integrity sha512-5GNcLd+0c4bYBnFop53+26CO5GQP0R9YcxlernohpHDWdIgzUg9I0+GEMk3sNHnLntATVU39d283A4OO+W402w== + dependencies: + "@npmcli/map-workspaces" "^2.0.2" + ini "^3.0.0" + mkdirp-infer-owner "^2.0.0" + nopt "^6.0.0" + proc-log "^2.0.0" + read-package-json-fast "^2.0.3" + semver "^7.3.5" + walk-up-path "^1.0.0" + +"@npmcli/disparity-colors@^2.0.0": + version "2.0.0" + resolved "https://npm.corp.kuaishou.com/@npmcli%2fdisparity-colors/-/disparity-colors-2.0.0.tgz" + integrity sha512-FFXGrIjhvd2qSZ8iS0yDvbI7nbjdyT2VNO7wotosjYZM2p2r8PN3B7Om3M5NO9KqW/OVzfzLB3L0V5Vo5QXC7A== + dependencies: + ansi-styles "^4.3.0" + +"@npmcli/fs@^2.1.0", "@npmcli/fs@^2.1.1": + version "2.1.2" + resolved "https://npm.corp.kuaishou.com/@npmcli%2ffs/-/fs-2.1.2.tgz" + integrity sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ== + dependencies: + "@gar/promisify" "^1.1.3" + semver "^7.3.5" + +"@npmcli/git@^3.0.0": + version "3.0.2" + resolved "https://npm.corp.kuaishou.com/@npmcli%2fgit/-/git-3.0.2.tgz" + integrity sha512-CAcd08y3DWBJqJDpfuVL0uijlq5oaXaOJEKHKc4wqrjd00gkvTZB+nFuLn+doOOKddaQS9JfqtNoFCO2LCvA3w== + dependencies: + "@npmcli/promise-spawn" "^3.0.0" + lru-cache "^7.4.4" + mkdirp "^1.0.4" + npm-pick-manifest "^7.0.0" + proc-log "^2.0.0" + promise-inflight "^1.0.1" + promise-retry "^2.0.1" + semver "^7.3.5" + which "^2.0.2" + +"@npmcli/installed-package-contents@^1.0.7": + version "1.0.7" + resolved "https://npm.corp.kuaishou.com/@npmcli%2finstalled-package-contents/-/installed-package-contents-1.0.7.tgz" + integrity sha1-q3QIxhR5EblwqKviYc5RIjKj9Po= + dependencies: + npm-bundled "^1.1.1" + npm-normalize-package-bin "^1.0.1" + +"@npmcli/map-workspaces@^2.0.2", "@npmcli/map-workspaces@^2.0.3": + version "2.0.4" + resolved "https://npm.corp.kuaishou.com/@npmcli%2fmap-workspaces/-/map-workspaces-2.0.4.tgz" + integrity sha512-bMo0aAfwhVwqoVM5UzX1DJnlvVvzDCHae821jv48L1EsrYwfOZChlqWYXEtto/+BkBXetPbEWgau++/brh4oVg== + dependencies: + "@npmcli/name-from-folder" "^1.0.1" + glob "^8.0.1" + minimatch "^5.0.1" + read-package-json-fast "^2.0.3" + +"@npmcli/metavuln-calculator@^3.0.1": + version "3.1.1" + resolved "https://npm.corp.kuaishou.com/@npmcli%2fmetavuln-calculator/-/metavuln-calculator-3.1.1.tgz" + integrity sha512-n69ygIaqAedecLeVH3KnO39M6ZHiJ2dEv5A7DGvcqCB8q17BGUgW8QaanIkbWUo2aYGZqJaOORTLAlIvKjNDKA== + dependencies: + cacache "^16.0.0" + json-parse-even-better-errors "^2.3.1" + pacote "^13.0.3" + semver "^7.3.5" + +"@npmcli/move-file@^2.0.0": + version "2.0.1" + resolved "https://npm.corp.kuaishou.com/@npmcli%2fmove-file/-/move-file-2.0.1.tgz" + integrity sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ== + dependencies: + mkdirp "^1.0.4" + rimraf "^3.0.2" + +"@npmcli/name-from-folder@^1.0.1": + version "1.0.1" + resolved "https://npm.corp.kuaishou.com/@npmcli%2fname-from-folder/-/name-from-folder-1.0.1.tgz" + integrity sha1-d+zQpPy3crpv6Sfi4uFV++wuaxo= + +"@npmcli/node-gyp@^2.0.0": + version "2.0.0" + resolved "https://npm.corp.kuaishou.com/@npmcli%2fnode-gyp/-/node-gyp-2.0.0.tgz" + integrity sha512-doNI35wIe3bBaEgrlPfdJPaCpUR89pJWep4Hq3aRdh6gKazIVWfs0jHttvSSoq47ZXgC7h73kDsUl8AoIQUB+A== + +"@npmcli/package-json@^2.0.0": + version "2.0.0" + resolved "https://npm.corp.kuaishou.com/@npmcli%2fpackage-json/-/package-json-2.0.0.tgz" + integrity sha512-42jnZ6yl16GzjWSH7vtrmWyJDGVa/LXPdpN2rcUWolFjc9ON2N3uz0qdBbQACfmhuJZ2lbKYtmK5qx68ZPLHMA== + dependencies: + json-parse-even-better-errors "^2.3.1" + +"@npmcli/promise-spawn@^3.0.0": + version "3.0.0" + resolved "https://npm.corp.kuaishou.com/@npmcli%2fpromise-spawn/-/promise-spawn-3.0.0.tgz" + integrity sha512-s9SgS+p3a9Eohe68cSI3fi+hpcZUmXq5P7w0kMlAsWVtR7XbK3ptkZqKT2cK1zLDObJ3sR+8P59sJE0w/KTL1g== + dependencies: + infer-owner "^1.0.4" + +"@npmcli/query@^1.2.0": + version "1.2.0" + resolved "https://npm.corp.kuaishou.com/@npmcli%2fquery/-/query-1.2.0.tgz" + integrity sha512-uWglsUM3PjBLgTSmZ3/vygeGdvWEIZ3wTUnzGFbprC/RtvQSaT+GAXu1DXmSFj2bD3oOZdcRm1xdzsV2z1YWdw== + dependencies: + npm-package-arg "^9.1.0" + postcss-selector-parser "^6.0.10" + semver "^7.3.7" + +"@npmcli/run-script@^4.1.0", "@npmcli/run-script@^4.1.3", "@npmcli/run-script@^4.2.0", "@npmcli/run-script@^4.2.1": + version "4.2.1" + resolved "https://npm.corp.kuaishou.com/@npmcli%2frun-script/-/run-script-4.2.1.tgz" + integrity sha512-7dqywvVudPSrRCW5nTHpHgeWnbBtz8cFkOuKrecm6ih+oO9ciydhWt6OF7HlqupRRmB8Q/gECVdB9LMfToJbRg== + dependencies: + "@npmcli/node-gyp" "^2.0.0" + "@npmcli/promise-spawn" "^3.0.0" + node-gyp "^9.0.0" + read-package-json-fast "^2.0.3" + which "^2.0.2" + +"@tootallnate/once@2": + version "2.0.0" + resolved "https://npm.corp.kuaishou.com/@tootallnate%2fonce/-/once-2.0.0.tgz" + integrity sha1-9UShSNOrNYAcH2M6dEH9h8LkhL8= + "@type-challenges/utils@^0.1.1": version "0.1.1" - resolved "https://npm.corp.kuaishou.com/@type-challenges%2futils/-/utils-0.1.1.tgz#18ce289fb84caf1c13eee211226dbf2bc6195ed3" + resolved "https://npm.corp.kuaishou.com/@type-challenges%2futils/-/utils-0.1.1.tgz" integrity sha1-GM4on7hMrxwT7uIRIm2/K8YZXtM= +"@types/babel__core@^7.1.19": + version "7.1.20" + resolved "https://npm.corp.kuaishou.com/@types%2fbabel__core/-/babel__core-7.1.20.tgz" + integrity sha512-PVb6Bg2QuscZ30FvOU7z4guG6c926D9YRvOxEaelzndpMsvP+YM74Q/dAFASpg2l6+XLalxSGxcq/lrgYWZtyQ== + dependencies: + "@babel/parser" "^7.1.0" + "@babel/types" "^7.0.0" + "@types/babel__generator" "*" + "@types/babel__template" "*" + "@types/babel__traverse" "*" + +"@types/babel__generator@*": + version "7.6.4" + resolved "https://npm.corp.kuaishou.com/@types%2fbabel__generator/-/babel__generator-7.6.4.tgz" + integrity sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg== + dependencies: + "@babel/types" "^7.0.0" + +"@types/babel__standalone@^7.1.4": + version "7.1.4" + resolved "https://npm.corp.kuaishou.com/@types%2fbabel__standalone/-/babel__standalone-7.1.4.tgz" + integrity sha512-HijIDmcNl3Wmo0guqjYkQvMzyRCM6zMCkYcdG8f+2X7mPBNa9ikSeaQlWs2Yg18KN1klOJzyupX5BPOf+7ahaw== + dependencies: + "@babel/core" "^7.1.0" + +"@types/babel__template@*": + version "7.4.1" + resolved "https://npm.corp.kuaishou.com/@types%2fbabel__template/-/babel__template-7.4.1.tgz" + integrity sha1-PRpI/Z1sDt/Vby/1eNrtSPNsiWk= + dependencies: + "@babel/parser" "^7.1.0" + "@babel/types" "^7.0.0" + +"@types/babel__traverse@*": + version "7.18.2" + resolved "https://npm.corp.kuaishou.com/@types%2fbabel__traverse/-/babel__traverse-7.18.2.tgz" + integrity sha512-FcFaxOr2V5KZCviw1TnutEMVUVsGt4D2hP1TAfXZAMKuHYW3xQhe3jTxNPWutgCJ3/X1c5yX8ZoGVEItxKbwBg== + dependencies: + "@babel/types" "^7.3.0" + "@types/body-parser@*": version "1.19.2" - resolved "https://npm.corp.kuaishou.com/@types%2fbody-parser/-/body-parser-1.19.2.tgz#aea2059e28b7658639081347ac4fab3de166e6f0" + resolved "https://npm.corp.kuaishou.com/@types%2fbody-parser/-/body-parser-1.19.2.tgz" integrity sha1-rqIFnii3ZYY5CBNHrE+rPeFm5vA= dependencies: "@types/connect" "*" @@ -437,14 +693,14 @@ "@types/bonjour@^3.5.9": version "3.5.10" - resolved "https://npm.corp.kuaishou.com/@types%2fbonjour/-/bonjour-3.5.10.tgz#0f6aadfe00ea414edc86f5d106357cda9701e275" + resolved "https://npm.corp.kuaishou.com/@types%2fbonjour/-/bonjour-3.5.10.tgz" integrity sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw== dependencies: "@types/node" "*" -"@types/connect-history-api-fallback@^1.3.5": +"@types/connect-history-api-fallback@*", "@types/connect-history-api-fallback@^1.3.5": version "1.3.5" - resolved "https://npm.corp.kuaishou.com/@types%2fconnect-history-api-fallback/-/connect-history-api-fallback-1.3.5.tgz#d1f7a8a09d0ed5a57aee5ae9c18ab9b803205dae" + resolved "https://npm.corp.kuaishou.com/@types%2fconnect-history-api-fallback/-/connect-history-api-fallback-1.3.5.tgz" integrity sha1-0feooJ0O1aV67lrpwYq5uAMgXa4= dependencies: "@types/express-serve-static-core" "*" @@ -452,26 +708,26 @@ "@types/connect@*": version "3.4.35" - resolved "https://npm.corp.kuaishou.com/@types%2fconnect/-/connect-3.4.35.tgz#5fcf6ae445e4021d1fc2219a4873cc73a3bb2ad1" + resolved "https://npm.corp.kuaishou.com/@types%2fconnect/-/connect-3.4.35.tgz" integrity sha1-X89q5EXkAh0fwiGaSHPMc6O7KtE= dependencies: "@types/node" "*" "@types/cookiejar@*": version "2.1.2" - resolved "https://npm.corp.kuaishou.com/@types%2fcookiejar/-/cookiejar-2.1.2.tgz#66ad9331f63fe8a3d3d9d8c6e3906dd10f6446e8" + resolved "https://npm.corp.kuaishou.com/@types%2fcookiejar/-/cookiejar-2.1.2.tgz" integrity sha512-t73xJJrvdTjXrn4jLS9VSGRbz0nUY3cl2DMGDU48lKl+HR9dbbjW2A9r3g40VA++mQpy6uuHg33gy7du2BKpog== -"@types/debug@^4.1.7": +"@types/debug@^4.1.5", "@types/debug@^4.1.7": version "4.1.7" - resolved "https://npm.corp.kuaishou.com/@types%2fdebug/-/debug-4.1.7.tgz#7cc0ea761509124709b8b2d1090d8f6c17aadb82" + resolved "https://npm.corp.kuaishou.com/@types%2fdebug/-/debug-4.1.7.tgz" integrity sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg== dependencies: "@types/ms" "*" "@types/eslint-scope@^3.7.3": version "3.7.4" - resolved "https://npm.corp.kuaishou.com/@types%2feslint-scope/-/eslint-scope-3.7.4.tgz#37fc1223f0786c39627068a12e94d6e6fc61de16" + resolved "https://npm.corp.kuaishou.com/@types%2feslint-scope/-/eslint-scope-3.7.4.tgz" integrity sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA== dependencies: "@types/eslint" "*" @@ -479,7 +735,7 @@ "@types/eslint@*": version "8.4.10" - resolved "https://npm.corp.kuaishou.com/@types%2feslint/-/eslint-8.4.10.tgz#19731b9685c19ed1552da7052b6f668ed7eb64bb" + resolved "https://npm.corp.kuaishou.com/@types%2feslint/-/eslint-8.4.10.tgz" integrity sha512-Sl/HOqN8NKPmhWo2VBEPm0nvHnu2LL3v9vKo8MEq0EtbJ4eVzGPl41VNPvn5E1i5poMk4/XD8UriLHpJvEP/Nw== dependencies: "@types/estree" "*" @@ -487,17 +743,17 @@ "@types/estree@*": version "1.0.0" - resolved "https://npm.corp.kuaishou.com/@types%2festree/-/estree-1.0.0.tgz#5fb2e536c1ae9bf35366eed879e827fa59ca41c2" + resolved "https://npm.corp.kuaishou.com/@types%2festree/-/estree-1.0.0.tgz" integrity sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ== "@types/estree@^0.0.51": version "0.0.51" - resolved "https://npm.corp.kuaishou.com/@types%2festree/-/estree-0.0.51.tgz#cfd70924a25a3fd32b218e5e420e6897e1ac4f40" + resolved "https://npm.corp.kuaishou.com/@types%2festree/-/estree-0.0.51.tgz" integrity sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ== "@types/express-serve-static-core@*", "@types/express-serve-static-core@^4.17.18": version "4.17.31" - resolved "https://npm.corp.kuaishou.com/@types%2fexpress-serve-static-core/-/express-serve-static-core-4.17.31.tgz#a1139efeab4e7323834bb0226e62ac019f474b2f" + resolved "https://npm.corp.kuaishou.com/@types%2fexpress-serve-static-core/-/express-serve-static-core-4.17.31.tgz" integrity sha512-DxMhY+NAsTwMMFHBTtJFNp5qiHKJ7TeqOo23zVEM9alT1Ml27Q3xcTH0xwxn7Q0BbMcVEJOs/7aQtUWupUQN3Q== dependencies: "@types/node" "*" @@ -506,7 +762,7 @@ "@types/express@*", "@types/express@^4.17.13": version "4.17.14" - resolved "https://npm.corp.kuaishou.com/@types%2fexpress/-/express-4.17.14.tgz#143ea0557249bc1b3b54f15db4c81c3d4eb3569c" + resolved "https://npm.corp.kuaishou.com/@types%2fexpress/-/express-4.17.14.tgz" integrity sha512-TEbt+vaPFQ+xpxFLFssxUDXj5cWCxZJjIcB7Yg0k0GMHGtgtQgpvx/MUQUeAkNbA9AAGrwkAsoeItdTgS7FMyg== dependencies: "@types/body-parser" "*" @@ -514,105 +770,127 @@ "@types/qs" "*" "@types/serve-static" "*" -"@types/fs-extra@^9.0.13": +"@types/fs-extra@^9.0.13", "@types/fs-extra@^9.0.8": version "9.0.13" - resolved "https://npm.corp.kuaishou.com/@types%2ffs-extra/-/fs-extra-9.0.13.tgz#7594fbae04fe7f1918ce8b3d213f74ff44ac1f45" + resolved "https://npm.corp.kuaishou.com/@types%2ffs-extra/-/fs-extra-9.0.13.tgz" integrity sha1-dZT7rgT+fxkYzos9IT90/0SsH0U= dependencies: "@types/node" "*" "@types/hash-sum@^1.0.0": version "1.0.0" - resolved "https://npm.corp.kuaishou.com/@types%2fhash-sum/-/hash-sum-1.0.0.tgz#838f4e8627887d42b162d05f3d96ca636c2bc504" + resolved "https://npm.corp.kuaishou.com/@types%2fhash-sum/-/hash-sum-1.0.0.tgz" integrity sha1-g49OhieIfUKxYtBfPZbKY2wrxQQ= +"@types/highlight.js@^9.7.0": + version "9.12.4" + resolved "https://npm.corp.kuaishou.com/@types%2fhighlight.js/-/highlight.js-9.12.4.tgz" + integrity sha1-jDSWvRtQzASu79aRFAqlcdTb+jQ= + "@types/html-minifier-terser@^6.0.0": version "6.1.0" - resolved "https://npm.corp.kuaishou.com/@types%2fhtml-minifier-terser/-/html-minifier-terser-6.1.0.tgz#4fc33a00c1d0c16987b1a20cf92d20614c55ac35" + resolved "https://npm.corp.kuaishou.com/@types%2fhtml-minifier-terser/-/html-minifier-terser-6.1.0.tgz" integrity sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg== -"@types/http-proxy@^1.17.8": +"@types/http-proxy@^1.17.5", "@types/http-proxy@^1.17.8": version "1.17.9" - resolved "https://npm.corp.kuaishou.com/@types%2fhttp-proxy/-/http-proxy-1.17.9.tgz#7f0e7931343761efde1e2bf48c40f02f3f75705a" + resolved "https://npm.corp.kuaishou.com/@types%2fhttp-proxy/-/http-proxy-1.17.9.tgz" integrity sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw== dependencies: "@types/node" "*" "@types/json-schema@*", "@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9": version "7.0.11" - resolved "https://npm.corp.kuaishou.com/@types%2fjson-schema/-/json-schema-7.0.11.tgz#d421b6c527a3037f7c84433fd2c4229e016863d3" + resolved "https://npm.corp.kuaishou.com/@types%2fjson-schema/-/json-schema-7.0.11.tgz" integrity sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ== "@types/linkify-it@*": version "3.0.2" - resolved "https://npm.corp.kuaishou.com/@types%2flinkify-it/-/linkify-it-3.0.2.tgz#fd2cd2edbaa7eaac7e7f3c1748b52a19143846c9" + resolved "https://npm.corp.kuaishou.com/@types%2flinkify-it/-/linkify-it-3.0.2.tgz" integrity sha1-/SzS7bqn6qx+fzwXSLUqGRQ4Rsk= +"@types/markdown-it-container@^2.0.5": + version "2.0.5" + resolved "https://npm.corp.kuaishou.com/@types%2fmarkdown-it-container/-/markdown-it-container-2.0.5.tgz" + integrity sha512-8v5jIC5gcCUv+JcD0DExwNBkoKC0kLB4acensF0NoNlTIcXmQxF3RDjzAdIW82sXSoR+n772ePguxIWlq2ELvA== + dependencies: + "@types/markdown-it" "*" + "@types/markdown-it-emoji@^2.0.2": version "2.0.2" - resolved "https://npm.corp.kuaishou.com/@types%2fmarkdown-it-emoji/-/markdown-it-emoji-2.0.2.tgz#f12a97df2758f38b4b38f277b468780459faff14" + resolved "https://npm.corp.kuaishou.com/@types%2fmarkdown-it-emoji/-/markdown-it-emoji-2.0.2.tgz" integrity sha1-8SqX3ydY84tLOPJ3tGh4BFn6/xQ= dependencies: "@types/markdown-it" "*" -"@types/markdown-it@*", "@types/markdown-it@^12.2.3": +"@types/markdown-it@*", "@types/markdown-it@^12.0.1", "@types/markdown-it@^12.2.3": version "12.2.3" - resolved "https://npm.corp.kuaishou.com/@types%2fmarkdown-it/-/markdown-it-12.2.3.tgz#0d6f6e5e413f8daaa26522904597be3d6cd93b51" + resolved "https://npm.corp.kuaishou.com/@types%2fmarkdown-it/-/markdown-it-12.2.3.tgz" integrity sha1-DW9uXkE/jaqiZSKQRZe+PWzZO1E= dependencies: "@types/linkify-it" "*" "@types/mdurl" "*" +"@types/markdown-it@^10.0.0": + version "10.0.3" + resolved "https://npm.corp.kuaishou.com/@types%2fmarkdown-it/-/markdown-it-10.0.3.tgz" + integrity sha1-qYANFLESwX8d527DPv+GSkgV7sc= + dependencies: + "@types/highlight.js" "^9.7.0" + "@types/linkify-it" "*" + "@types/mdurl" "*" + highlight.js "^9.7.0" + "@types/mdurl@*": version "1.0.2" - resolved "https://npm.corp.kuaishou.com/@types%2fmdurl/-/mdurl-1.0.2.tgz#e2ce9d83a613bacf284c7be7d491945e39e1f8e9" + resolved "https://npm.corp.kuaishou.com/@types%2fmdurl/-/mdurl-1.0.2.tgz" integrity sha1-4s6dg6YTus8oTHvn1JGUXjnh+Ok= "@types/mime@*": version "3.0.1" - resolved "https://npm.corp.kuaishou.com/@types%2fmime/-/mime-3.0.1.tgz#5f8f2bca0a5863cb69bc0b0acd88c96cb1d4ae10" + resolved "https://npm.corp.kuaishou.com/@types%2fmime/-/mime-3.0.1.tgz" integrity sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA== "@types/ms@*": version "0.7.31" - resolved "https://npm.corp.kuaishou.com/@types%2fms/-/ms-0.7.31.tgz#31b7ca6407128a3d2bbc27fe2d21b345397f6197" + resolved "https://npm.corp.kuaishou.com/@types%2fms/-/ms-0.7.31.tgz" integrity sha1-MbfKZAcSij0rvCf+LSGzRTl/YZc= "@types/node@*": version "18.11.9" - resolved "https://npm.corp.kuaishou.com/@types%2fnode/-/node-18.11.9.tgz#02d013de7058cea16d36168ef2fc653464cfbad4" + resolved "https://npm.corp.kuaishou.com/@types%2fnode/-/node-18.11.9.tgz" integrity sha512-CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg== "@types/parse-json@^4.0.0": version "4.0.0" - resolved "https://npm.corp.kuaishou.com/@types%2fparse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0" + resolved "https://npm.corp.kuaishou.com/@types%2fparse-json/-/parse-json-4.0.0.tgz" integrity sha1-L4u0QUNNFjs1+4/9zNcTiSf/uMA= "@types/qs@*": version "6.9.7" - resolved "https://npm.corp.kuaishou.com/@types%2fqs/-/qs-6.9.7.tgz#63bb7d067db107cc1e457c303bc25d511febf6cb" + resolved "https://npm.corp.kuaishou.com/@types%2fqs/-/qs-6.9.7.tgz" integrity sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw== "@types/range-parser@*": version "1.2.4" - resolved "https://npm.corp.kuaishou.com/@types%2frange-parser/-/range-parser-1.2.4.tgz#cd667bcfdd025213aafb7ca5915a932590acdcdc" + resolved "https://npm.corp.kuaishou.com/@types%2frange-parser/-/range-parser-1.2.4.tgz" integrity sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw== "@types/retry@0.12.0": version "0.12.0" - resolved "https://npm.corp.kuaishou.com/@types%2fretry/-/retry-0.12.0.tgz#2b35eccfcee7d38cd72ad99232fbd58bffb3c84d" + resolved "https://npm.corp.kuaishou.com/@types%2fretry/-/retry-0.12.0.tgz" integrity sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA== "@types/serve-index@^1.9.1": version "1.9.1" - resolved "https://npm.corp.kuaishou.com/@types%2fserve-index/-/serve-index-1.9.1.tgz#1b5e85370a192c01ec6cec4735cf2917337a6278" + resolved "https://npm.corp.kuaishou.com/@types%2fserve-index/-/serve-index-1.9.1.tgz" integrity sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg== dependencies: "@types/express" "*" "@types/serve-static@*", "@types/serve-static@^1.13.10": version "1.15.0" - resolved "https://npm.corp.kuaishou.com/@types%2fserve-static/-/serve-static-1.15.0.tgz#c7930ff61afb334e121a9da780aac0d9b8f34155" + resolved "https://npm.corp.kuaishou.com/@types%2fserve-static/-/serve-static-1.15.0.tgz" integrity sha512-z5xyF6uh8CbjAu9760KDKsH2FcDxZ2tFCsA4HIMWE6IkiYMXfVoa+4f9KX+FN0ZLsaMw1WNG2ETLA6N+/YA+cg== dependencies: "@types/mime" "*" @@ -620,61 +898,115 @@ "@types/sockjs@^0.3.33": version "0.3.33" - resolved "https://npm.corp.kuaishou.com/@types%2fsockjs/-/sockjs-0.3.33.tgz#570d3a0b99ac995360e3136fd6045113b1bd236f" + resolved "https://npm.corp.kuaishou.com/@types%2fsockjs/-/sockjs-0.3.33.tgz" integrity sha1-Vw06C5msmVNg4xNv1gRRE7G9I28= dependencies: "@types/node" "*" +"@types/source-list-map@*": + version "0.1.2" + resolved "https://npm.corp.kuaishou.com/@types%2fsource-list-map/-/source-list-map-0.1.2.tgz" + integrity sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA== + "@types/superagent@^4.1.7": version "4.1.14" - resolved "https://npm.corp.kuaishou.com/@types%2fsuperagent/-/superagent-4.1.14.tgz#ca2eed4fad671e704d3d0f33aaf099edb4a5b857" + resolved "https://npm.corp.kuaishou.com/@types%2fsuperagent/-/superagent-4.1.14.tgz" integrity sha512-iiXaOL2wSbnSY4qg0mFPWJHL9iwyEsoNYwaHF2w58/fsVAQJlj+KUfFAFZu+nzbz+b7dUprJEAc+O9vhHHhQTA== dependencies: "@types/cookiejar" "*" "@types/node" "*" +"@types/tapable@^1": + version "1.0.8" + resolved "https://npm.corp.kuaishou.com/@types%2ftapable/-/tapable-1.0.8.tgz" + integrity sha1-uUpDkchWZse3Mpn9OtedT6pDUxA= + +"@types/uglify-js@*": + version "3.17.1" + resolved "https://npm.corp.kuaishou.com/@types%2fuglify-js/-/uglify-js-3.17.1.tgz" + integrity sha512-GkewRA4i5oXacU/n4MA9+bLgt5/L3F1mKrYvFGm7r2ouLXhRKjuWwo9XHNnbx6WF3vlGW21S3fCvgqxvxXXc5g== + dependencies: + source-map "^0.6.1" + +"@types/web-bluetooth@^0.0.14": + version "0.0.14" + resolved "https://npm.corp.kuaishou.com/@types%2fweb-bluetooth/-/web-bluetooth-0.0.14.tgz" + integrity sha512-5d2RhCard1nQUC3aHcq/gHzWYO6K0WJmAbjO7mQJgCQKtZpgXxv1rOM6O/dBDhDYYVutk1sciOgNSe+5YyfM8A== + "@types/web-bluetooth@^0.0.16": version "0.0.16" - resolved "https://npm.corp.kuaishou.com/@types%2fweb-bluetooth/-/web-bluetooth-0.0.16.tgz#1d12873a8e49567371f2a75fe3e7f7edca6662d8" + resolved "https://npm.corp.kuaishou.com/@types%2fweb-bluetooth/-/web-bluetooth-0.0.16.tgz" integrity sha512-oh8q2Zc32S6gd/j50GowEjKLoOVOwHP/bWVjKJInBwQqdOYMdPrf1oVlelTlyfFK3CKxL1uahMDAr+vy8T7yMQ== +"@types/webpack-dev-server@^3": + version "3.11.6" + resolved "https://npm.corp.kuaishou.com/@types%2fwebpack-dev-server/-/webpack-dev-server-3.11.6.tgz" + integrity sha1-2IiM/S8GMCA+E9PteDOk0RuKNNw= + dependencies: + "@types/connect-history-api-fallback" "*" + "@types/express" "*" + "@types/serve-static" "*" + "@types/webpack" "^4" + http-proxy-middleware "^1.0.0" + "@types/webpack-env@^1.18.0": version "1.18.0" - resolved "https://npm.corp.kuaishou.com/@types%2fwebpack-env/-/webpack-env-1.18.0.tgz#ed6ecaa8e5ed5dfe8b2b3d00181702c9925f13fb" + resolved "https://npm.corp.kuaishou.com/@types%2fwebpack-env/-/webpack-env-1.18.0.tgz" integrity sha512-56/MAlX5WMsPVbOg7tAxnYvNYMMWr/QJiIp6BxVSW3JJXUVzzOn64qW8TzQyMSqSUFM2+PVI4aUHcHOzIz/1tg== +"@types/webpack-sources@*": + version "3.2.0" + resolved "https://npm.corp.kuaishou.com/@types%2fwebpack-sources/-/webpack-sources-3.2.0.tgz" + integrity sha1-FtdZuglsKJA0smVT0t8b9FJI04s= + dependencies: + "@types/node" "*" + "@types/source-list-map" "*" + source-map "^0.7.3" + +"@types/webpack@^4": + version "4.41.33" + resolved "https://npm.corp.kuaishou.com/@types%2fwebpack/-/webpack-4.41.33.tgz" + integrity sha512-PPajH64Ft2vWevkerISMtnZ8rTs4YmRbs+23c402J0INmxDKCrhZNvwZYtzx96gY2wAtXdrK1BS2fiC8MlLr3g== + dependencies: + "@types/node" "*" + "@types/tapable" "^1" + "@types/uglify-js" "*" + "@types/webpack-sources" "*" + anymatch "^3.0.0" + source-map "^0.6.0" + "@types/ws@^7.2.2": version "7.4.7" - resolved "https://npm.corp.kuaishou.com/@types%2fws/-/ws-7.4.7.tgz#f7c390a36f7a0679aa69de2d501319f4f8d9b702" + resolved "https://npm.corp.kuaishou.com/@types%2fws/-/ws-7.4.7.tgz" integrity sha512-JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww== dependencies: "@types/node" "*" "@types/ws@^8.5.1": version "8.5.3" - resolved "https://npm.corp.kuaishou.com/@types%2fws/-/ws-8.5.3.tgz#7d25a1ffbecd3c4f2d35068d0b283c037003274d" + resolved "https://npm.corp.kuaishou.com/@types%2fws/-/ws-8.5.3.tgz" integrity sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w== dependencies: "@types/node" "*" "@vicons/fa@^0.12.0": version "0.12.0" - resolved "https://npm.corp.kuaishou.com/@vicons%2ffa/-/fa-0.12.0.tgz#a5f92db45990f8a47b5eeedcdb9b673f0dababc8" + resolved "https://npm.corp.kuaishou.com/@vicons%2ffa/-/fa-0.12.0.tgz" integrity sha512-g2PIeJLsTHUjt6bK63LxqC0uYQB7iu+xViJOxvp1s8b9/akpXVPVWjDTTsP980/0KYyMMe4U7F/aUo7wY+MsXA== "@vicons/tabler@^0.12.0": version "0.12.0" - resolved "https://npm.corp.kuaishou.com/@vicons%2ftabler/-/tabler-0.12.0.tgz#11924d2288e9346d47b44dd643ac20e72a32e089" + resolved "https://npm.corp.kuaishou.com/@vicons%2ftabler/-/tabler-0.12.0.tgz" integrity sha512-3+wUFuxb7e8OzZ8Wryct1pzfA2vyoF4lwW98O9s27ZrfCGaJGNmqG+q8A7vQ92Mf+COCgxpK+rhNPTtTvaU6qw== "@vitejs/plugin-vue@^3.0.3": version "3.2.0" - resolved "https://npm.corp.kuaishou.com/@vitejs%2fplugin-vue/-/plugin-vue-3.2.0.tgz#a1484089dd85d6528f435743f84cdd0d215bbb54" + resolved "https://npm.corp.kuaishou.com/@vitejs%2fplugin-vue/-/plugin-vue-3.2.0.tgz" integrity sha512-E0tnaL4fr+qkdCNxJ+Xd0yM31UwMkQje76fsDVBBUCoGOUPexu2VDUYHL8P4CwV+zMvWw6nlRw19OnRKmYAJpw== "@vue/compiler-core@3.2.41": version "3.2.41" - resolved "https://npm.corp.kuaishou.com/@vue%2fcompiler-core/-/compiler-core-3.2.41.tgz#fb5b25f23817400f44377d878a0cdead808453ef" + resolved "https://npm.corp.kuaishou.com/@vue%2fcompiler-core/-/compiler-core-3.2.41.tgz" integrity sha512-oA4mH6SA78DT+96/nsi4p9DX97PHcNROxs51lYk7gb9Z4BPKQ3Mh+BLn6CQZBw857Iuhu28BfMSRHAlPvD4vlw== dependencies: "@babel/parser" "^7.16.4" @@ -684,7 +1016,7 @@ "@vue/compiler-dom@3.2.41": version "3.2.41" - resolved "https://npm.corp.kuaishou.com/@vue%2fcompiler-dom/-/compiler-dom-3.2.41.tgz#dc63dcd3ce8ca8a8721f14009d498a7a54380299" + resolved "https://npm.corp.kuaishou.com/@vue%2fcompiler-dom/-/compiler-dom-3.2.41.tgz" integrity sha512-xe5TbbIsonjENxJsYRbDJvthzqxLNk+tb3d/c47zgREDa/PCp6/Y4gC/skM4H6PIuX5DAxm7fFJdbjjUH2QTMw== dependencies: "@vue/compiler-core" "3.2.41" @@ -692,7 +1024,7 @@ "@vue/compiler-sfc@3.2.41", "@vue/compiler-sfc@^3.2.29": version "3.2.41" - resolved "https://npm.corp.kuaishou.com/@vue%2fcompiler-sfc/-/compiler-sfc-3.2.41.tgz#238fb8c48318408c856748f4116aff8cc1dc2a73" + resolved "https://npm.corp.kuaishou.com/@vue%2fcompiler-sfc/-/compiler-sfc-3.2.41.tgz" integrity sha512-+1P2m5kxOeaxVmJNXnBskAn3BenbTmbxBxWOtBq3mQTCokIreuMULFantBUclP0+KnzNCMOvcnKinqQZmiOF8w== dependencies: "@babel/parser" "^7.16.4" @@ -708,20 +1040,20 @@ "@vue/compiler-ssr@3.2.41": version "3.2.41" - resolved "https://npm.corp.kuaishou.com/@vue%2fcompiler-ssr/-/compiler-ssr-3.2.41.tgz#344f564d68584b33367731c04ffc949784611fcb" + resolved "https://npm.corp.kuaishou.com/@vue%2fcompiler-ssr/-/compiler-ssr-3.2.41.tgz" integrity sha512-Y5wPiNIiaMz/sps8+DmhaKfDm1xgj6GrH99z4gq2LQenfVQcYXmHIOBcs5qPwl7jaW3SUQWjkAPKMfQemEQZwQ== dependencies: "@vue/compiler-dom" "3.2.41" "@vue/shared" "3.2.41" -"@vue/devtools-api@^6.2.1", "@vue/devtools-api@^6.4.5": +"@vue/devtools-api@^6.1.4", "@vue/devtools-api@^6.2.1", "@vue/devtools-api@^6.4.5": version "6.4.5" - resolved "https://npm.corp.kuaishou.com/@vue%2fdevtools-api/-/devtools-api-6.4.5.tgz#d54e844c1adbb1e677c81c665ecef1a2b4bb8380" + resolved "https://npm.corp.kuaishou.com/@vue%2fdevtools-api/-/devtools-api-6.4.5.tgz" integrity sha512-JD5fcdIuFxU4fQyXUu3w2KpAJHzTVdN+p4iOX2lMWSHMOoQdMAcpFLZzm9Z/2nmsoZ1a96QEhZ26e50xLBsgOQ== "@vue/reactivity-transform@3.2.41": version "3.2.41" - resolved "https://npm.corp.kuaishou.com/@vue%2freactivity-transform/-/reactivity-transform-3.2.41.tgz#9ff938877600c97f646e09ac1959b5150fb11a0c" + resolved "https://npm.corp.kuaishou.com/@vue%2freactivity-transform/-/reactivity-transform-3.2.41.tgz" integrity sha512-mK5+BNMsL4hHi+IR3Ft/ho6Za+L3FA5j8WvreJ7XzHrqkPq8jtF/SMo7tuc9gHjLDwKZX1nP1JQOKo9IEAn54A== dependencies: "@babel/parser" "^7.16.4" @@ -730,24 +1062,24 @@ estree-walker "^2.0.2" magic-string "^0.25.7" -"@vue/reactivity@3.2.41": +"@vue/reactivity@3.2.41", "@vue/reactivity@^3.2.33": version "3.2.41" - resolved "https://npm.corp.kuaishou.com/@vue%2freactivity/-/reactivity-3.2.41.tgz#0ad3bdf76d76822da1502dc9f394dafd02642963" + resolved "https://npm.corp.kuaishou.com/@vue%2freactivity/-/reactivity-3.2.41.tgz" integrity sha512-9JvCnlj8uc5xRiQGZ28MKGjuCoPhhTwcoAdv3o31+cfGgonwdPNuvqAXLhlzu4zwqavFEG5tvaoINQEfxz+l6g== dependencies: "@vue/shared" "3.2.41" -"@vue/runtime-core@3.2.41": +"@vue/runtime-core@3.2.41", "@vue/runtime-core@^3.2.33": version "3.2.41" - resolved "https://npm.corp.kuaishou.com/@vue%2fruntime-core/-/runtime-core-3.2.41.tgz#775bfc00b3fadbaddab77138f23322aee3517a76" + resolved "https://npm.corp.kuaishou.com/@vue%2fruntime-core/-/runtime-core-3.2.41.tgz" integrity sha512-0LBBRwqnI0p4FgIkO9q2aJBBTKDSjzhnxrxHYengkAF6dMOjeAIZFDADAlcf2h3GDALWnblbeprYYpItiulSVQ== dependencies: "@vue/reactivity" "3.2.41" "@vue/shared" "3.2.41" -"@vue/runtime-dom@3.2.41": +"@vue/runtime-dom@3.2.41", "@vue/runtime-dom@^3.2.33": version "3.2.41" - resolved "https://npm.corp.kuaishou.com/@vue%2fruntime-dom/-/runtime-dom-3.2.41.tgz#cdf86be7410f7b15c29632a96ce879e5b4c9ab92" + resolved "https://npm.corp.kuaishou.com/@vue%2fruntime-dom/-/runtime-dom-3.2.41.tgz" integrity sha512-U7zYuR1NVIP8BL6jmOqmapRAHovEFp7CSw4pR2FacqewXNGqZaRfHoNLQsqQvVQ8yuZNZtxSZy0FFyC70YXPpA== dependencies: "@vue/runtime-core" "3.2.41" @@ -756,20 +1088,20 @@ "@vue/server-renderer@3.2.41": version "3.2.41" - resolved "https://npm.corp.kuaishou.com/@vue%2fserver-renderer/-/server-renderer-3.2.41.tgz#ca64552c05878f94e8d191ac439141c06c0fb2ad" + resolved "https://npm.corp.kuaishou.com/@vue%2fserver-renderer/-/server-renderer-3.2.41.tgz" integrity sha512-7YHLkfJdTlsZTV0ae5sPwl9Gn/EGr2hrlbcS/8naXm2CDpnKUwC68i1wGlrYAfIgYWL7vUZwk2GkYLQH5CvFig== dependencies: "@vue/compiler-ssr" "3.2.41" "@vue/shared" "3.2.41" -"@vue/shared@3.2.41", "@vue/shared@^3.2.37": +"@vue/shared@3.2.41", "@vue/shared@^3.0.7", "@vue/shared@^3.2.33", "@vue/shared@^3.2.37": version "3.2.41" - resolved "https://npm.corp.kuaishou.com/@vue%2fshared/-/shared-3.2.41.tgz#fbc95422df654ea64e8428eced96ba6ad555d2bb" + resolved "https://npm.corp.kuaishou.com/@vue%2fshared/-/shared-3.2.41.tgz" integrity sha512-W9mfWLHmJhkfAmV+7gDjcHeAWALQtgGT3JErxULl0oz6R6+3ug91I7IErs93eCFhPCZPHBs4QJS7YWEV7A3sxw== "@vuepress-reco/shared@2.0.0-beta.41": version "2.0.0-beta.41" - resolved "https://npm.corp.kuaishou.com/@vuepress-reco%2fshared/-/shared-2.0.0-beta.41.tgz#1e5b2586cd583941168aac2c1cdbb2ffefe904f1" + resolved "https://npm.corp.kuaishou.com/@vuepress-reco%2fshared/-/shared-2.0.0-beta.41.tgz" integrity sha512-MRNpPfcL4CluQd7MKxGPhm58VwFA+il4qOr8ttP7E/GQDr0hpFWhxjBH+GLV/A6wia4IvoMt4JyZ47ps8ITTzw== dependencies: "@vuepress-reco/vuepress-plugin-page" "2.0.0-beta.41" @@ -778,12 +1110,12 @@ "@vuepress-reco/tailwindcss-config@2.0.0-beta.41": version "2.0.0-beta.41" - resolved "https://npm.corp.kuaishou.com/@vuepress-reco%2ftailwindcss-config/-/tailwindcss-config-2.0.0-beta.41.tgz#a48f7c7408783d1e81ca008f104afaa6db58d228" + resolved "https://npm.corp.kuaishou.com/@vuepress-reco%2ftailwindcss-config/-/tailwindcss-config-2.0.0-beta.41.tgz" integrity sha512-qcvN2+4Rzg/8cwV7aTNOVkLztymOEGaqa0LIs0UODsxebR2EigSDTGtf6sOM95CKL9IsxoYqOdUi7qf8d5wD5A== "@vuepress-reco/vuepress-plugin-bulletin-popover@2.0.0-beta.41": version "2.0.0-beta.41" - resolved "https://npm.corp.kuaishou.com/@vuepress-reco%2fvuepress-plugin-bulletin-popover/-/vuepress-plugin-bulletin-popover-2.0.0-beta.41.tgz#d86ea1b6a63af565ae2815e733f62d06c05f938e" + resolved "https://npm.corp.kuaishou.com/@vuepress-reco%2fvuepress-plugin-bulletin-popover/-/vuepress-plugin-bulletin-popover-2.0.0-beta.41.tgz" integrity sha512-kj0g0iIfNp4a/YGJ7XS3ySHCHfmSWFcgdi+HfzFMpOWCVgdKUKDpYXTKJNT7n+F2zyn1tDGv9czOUc0NmUSfpQ== dependencies: "@vuepress-reco/tailwindcss-config" "2.0.0-beta.41" @@ -795,7 +1127,7 @@ "@vuepress-reco/vuepress-plugin-code-copy@2.0.0-beta.41": version "2.0.0-beta.41" - resolved "https://npm.corp.kuaishou.com/@vuepress-reco%2fvuepress-plugin-code-copy/-/vuepress-plugin-code-copy-2.0.0-beta.41.tgz#e55e39a049eda323812fb162496f72e8b1f725f3" + resolved "https://npm.corp.kuaishou.com/@vuepress-reco%2fvuepress-plugin-code-copy/-/vuepress-plugin-code-copy-2.0.0-beta.41.tgz" integrity sha512-hTiVbTV5L6Ya/qZsvgji0yRczDYc11L3JW1mRT9spgJ3Th21nUaszol7WoX5bTEWnu/myYjLwqufeKTUTVYKEw== dependencies: "@vuepress/client" "2.0.0-beta.51" @@ -805,7 +1137,7 @@ "@vuepress-reco/vuepress-plugin-comments@2.0.0-beta.41": version "2.0.0-beta.41" - resolved "https://npm.corp.kuaishou.com/@vuepress-reco%2fvuepress-plugin-comments/-/vuepress-plugin-comments-2.0.0-beta.41.tgz#b8afce596c9d3b7ad8bc222ac14e0cbfd89e9e6e" + resolved "https://npm.corp.kuaishou.com/@vuepress-reco%2fvuepress-plugin-comments/-/vuepress-plugin-comments-2.0.0-beta.41.tgz" integrity sha512-EabZjyrO0c1o+dAW/9/MiM3BUXXsJMPeFa+g4yagNcRmROxJxCSO8NW1sRZulWoXVNA3+uLcfzaFoGYI+ra+rg== dependencies: "@vuepress-reco/tailwindcss-config" "2.0.0-beta.41" @@ -820,7 +1152,7 @@ "@vuepress-reco/vuepress-plugin-page@2.0.0-beta.41": version "2.0.0-beta.41" - resolved "https://npm.corp.kuaishou.com/@vuepress-reco%2fvuepress-plugin-page/-/vuepress-plugin-page-2.0.0-beta.41.tgz#09728a24e959b98bb9aa14d7c2128540a149fe20" + resolved "https://npm.corp.kuaishou.com/@vuepress-reco%2fvuepress-plugin-page/-/vuepress-plugin-page-2.0.0-beta.41.tgz" integrity sha512-fQM9hSnveqm7OIKdWoEdk5yHbdE0XEcMApfzwKTZhck0bnx8QK6n42mnFs1HIb/frq9cxnKuJDMVhuF9ry+y+Q== dependencies: "@vuepress-reco/shared" "2.0.0-beta.41" @@ -832,7 +1164,7 @@ "@vuepress-reco/vuepress-plugin-vue-preview@2.0.0-beta.41": version "2.0.0-beta.41" - resolved "https://npm.corp.kuaishou.com/@vuepress-reco%2fvuepress-plugin-vue-preview/-/vuepress-plugin-vue-preview-2.0.0-beta.41.tgz#5b90f69da80f459215ecbaa601e95d911191dcc2" + resolved "https://npm.corp.kuaishou.com/@vuepress-reco%2fvuepress-plugin-vue-preview/-/vuepress-plugin-vue-preview-2.0.0-beta.41.tgz" integrity sha512-ihnzojiFIkS31rGZtdD26I8bNVYz6D8V0DfPk3oS+G7r0tYh8Q7ujGyTkHyWDbardexB5/huo+n+wIpETy3Wqw== dependencies: "@babel/core" "^7.16.12" @@ -849,7 +1181,7 @@ "@vuepress/bundler-vite@2.0.0-beta.51": version "2.0.0-beta.51" - resolved "https://npm.corp.kuaishou.com/@vuepress%2fbundler-vite/-/bundler-vite-2.0.0-beta.51.tgz#0fc1a4a7cd2db18f5bf76d63839e06ce89da7733" + resolved "https://npm.corp.kuaishou.com/@vuepress%2fbundler-vite/-/bundler-vite-2.0.0-beta.51.tgz" integrity sha512-HADQujwuj0KbONq6R0UGSiktMzG0iOFmI2OACgi7r5P4pHAEF06h333g0q4tSH6HQg6VuqelQrVgWwq/0puIfA== dependencies: "@vitejs/plugin-vue" "^3.0.3" @@ -867,7 +1199,7 @@ "@vuepress/bundler-webpack@2.0.0-beta.51": version "2.0.0-beta.51" - resolved "https://npm.corp.kuaishou.com/@vuepress%2fbundler-webpack/-/bundler-webpack-2.0.0-beta.51.tgz#2a7c8132866194623a4101ece90b56b95ab9dcca" + resolved "https://npm.corp.kuaishou.com/@vuepress%2fbundler-webpack/-/bundler-webpack-2.0.0-beta.51.tgz" integrity sha512-ell4t2sNiGxtSZGk0m6ygapmrte5RKGEubW0D7qskYvmmCbwvB/g/orIjIVfU2aZSVA1QbuPspQ/N0KMCIzxPg== dependencies: "@types/express" "^4.17.13" @@ -898,7 +1230,7 @@ "@vuepress/cli@2.0.0-beta.51": version "2.0.0-beta.51" - resolved "https://npm.corp.kuaishou.com/@vuepress%2fcli/-/cli-2.0.0-beta.51.tgz#f66fa3dd842d422064f801444e5134e84f451445" + resolved "https://npm.corp.kuaishou.com/@vuepress%2fcli/-/cli-2.0.0-beta.51.tgz" integrity sha512-NcMNpsGxdlPgrHhIMW+hkRd9l+E+89M8IoN9SnBJFTgokKrUOwLm2BEQPVuucebj4ff94IorG1WQR9iah/qOgQ== dependencies: "@vuepress/core" "2.0.0-beta.51" @@ -909,9 +1241,28 @@ envinfo "^7.8.1" esbuild "^0.15.5" +"@vuepress/client@2.0.0-beta.45": + version "2.0.0-beta.45" + resolved "https://npm.corp.kuaishou.com/@vuepress%2fclient/-/client-2.0.0-beta.45.tgz" + integrity sha512-4oK77LI5FpHvF6bZxREfLdWfOgAZroDkyy46moRopasg72UeXjfvOTb/6tIKaNQP6e/Kn2ubRxVeLe7DR5d9Ng== + dependencies: + "@vue/devtools-api" "^6.1.4" + "@vuepress/shared" "2.0.0-beta.45" + vue "^3.2.33" + vue-router "^4.0.15" + +"@vuepress/client@2.0.0-beta.5": + version "2.0.0-beta.5" + resolved "https://npm.corp.kuaishou.com/@vuepress%2fclient/-/client-2.0.0-beta.5.tgz" + integrity sha1-7XA3Bn9tlaXaYo0LmPqN9WPEY/I= + dependencies: + "@vuepress/shared" "2.0.0-beta.4" + vue "^3.0.7" + vue-router "^4.0.5" + "@vuepress/client@2.0.0-beta.51": version "2.0.0-beta.51" - resolved "https://npm.corp.kuaishou.com/@vuepress%2fclient/-/client-2.0.0-beta.51.tgz#3ec5a013eaf9308acde4ac8fb6c1f25ef75ee1e5" + resolved "https://npm.corp.kuaishou.com/@vuepress%2fclient/-/client-2.0.0-beta.51.tgz" integrity sha512-5iQV765kwR6/eIZPMlV5O34DUvHCMjF7zpr91x5i8BEAg7A0jfHvdrwNavAKWiQEU77f4dIBXtWy6nwX+lgmbw== dependencies: "@vue/devtools-api" "^6.2.1" @@ -919,9 +1270,34 @@ vue "^3.2.37" vue-router "^4.1.4" +"@vuepress/core@2.0.0-beta.45": + version "2.0.0-beta.45" + resolved "https://npm.corp.kuaishou.com/@vuepress%2fcore/-/core-2.0.0-beta.45.tgz" + integrity sha512-SeTzsNKc+E41b0p5nNiWRqMIxXM0Pu59MAaSkd1SFqEa8vtxDQZvgdM2xIbmCEejVSnKqLJwyyN+F2vEvPF9WA== + dependencies: + "@vuepress/client" "2.0.0-beta.45" + "@vuepress/markdown" "2.0.0-beta.45" + "@vuepress/shared" "2.0.0-beta.45" + "@vuepress/utils" "2.0.0-beta.45" + gray-matter "^4.0.3" + toml "^3.0.0" + vue "^3.2.33" + +"@vuepress/core@2.0.0-beta.5": + version "2.0.0-beta.5" + resolved "https://npm.corp.kuaishou.com/@vuepress%2fcore/-/core-2.0.0-beta.5.tgz" + integrity sha1-g+GqN+8MP8pQmFJuIAhTuaouFJo= + dependencies: + "@vuepress/client" "2.0.0-beta.5" + "@vuepress/markdown" "2.0.0-beta.5" + "@vuepress/shared" "2.0.0-beta.4" + "@vuepress/utils" "2.0.0-beta.5" + gray-matter "^4.0.2" + toml "^3.0.0" + "@vuepress/core@2.0.0-beta.51": version "2.0.0-beta.51" - resolved "https://npm.corp.kuaishou.com/@vuepress%2fcore/-/core-2.0.0-beta.51.tgz#e400c38df23b37c9625a9f05232771a81d5b2eff" + resolved "https://npm.corp.kuaishou.com/@vuepress%2fcore/-/core-2.0.0-beta.51.tgz" integrity sha512-j0KI6PBsf0doMZPXa1H4Vi88NSTrpsnSVhMgcr9gw81atgKl+I13SykHpWZRRkugTRCgL1IOpyY68cond58eeA== dependencies: "@vuepress/client" "2.0.0-beta.51" @@ -930,9 +1306,34 @@ "@vuepress/utils" "2.0.0-beta.51" vue "^3.2.37" +"@vuepress/markdown@2.0.0-beta.45": + version "2.0.0-beta.45" + resolved "https://npm.corp.kuaishou.com/@vuepress%2fmarkdown/-/markdown-2.0.0-beta.45.tgz" + integrity sha512-wm9NsJ17G5Cw7idj+ChZVrdKkcTkx+1DwAZDgJcQESdvDTmggQYonZa8vSY1rLxw50VmHU2v8WsiaYTTn91slA== + dependencies: + "@types/markdown-it" "^12.2.3" + "@vuepress/shared" "2.0.0-beta.45" + "@vuepress/utils" "2.0.0-beta.45" + markdown-it "^13.0.1" + markdown-it-anchor "^8.6.3" + markdown-it-emoji "^2.0.2" + mdurl "^1.0.1" + +"@vuepress/markdown@2.0.0-beta.5": + version "2.0.0-beta.5" + resolved "https://npm.corp.kuaishou.com/@vuepress%2fmarkdown/-/markdown-2.0.0-beta.5.tgz" + integrity sha1-YnodCZmJ748EJLBLVy5eISpTOY4= + dependencies: + "@types/markdown-it" "^12.0.1" + "@vuepress/shared" "2.0.0-beta.4" + "@vuepress/utils" "2.0.0-beta.5" + markdown-it "^12.0.4" + markdown-it-anchor "^7.1.0" + markdown-it-emoji "^2.0.0" + "@vuepress/markdown@2.0.0-beta.51": version "2.0.0-beta.51" - resolved "https://npm.corp.kuaishou.com/@vuepress%2fmarkdown/-/markdown-2.0.0-beta.51.tgz#50e8e293e299c07d6929b13f22bf6d0e6be79a87" + resolved "https://npm.corp.kuaishou.com/@vuepress%2fmarkdown/-/markdown-2.0.0-beta.51.tgz" integrity sha512-q11+6j3OAutuV0LkH7BGdhh4jKOMKMiiX8bKD366mzr7JkjHb34xd+WhM394B7zh410CtYYWvAWS+m9RJGQ/5w== dependencies: "@mdit-vue/plugin-component" "^0.10.0" @@ -954,7 +1355,7 @@ "@vuepress/plugin-active-header-links@2.0.0-beta.51": version "2.0.0-beta.51" - resolved "https://npm.corp.kuaishou.com/@vuepress%2fplugin-active-header-links/-/plugin-active-header-links-2.0.0-beta.51.tgz#77ebe7e5e1c63e021e1561f7ffc92c75df27e877" + resolved "https://npm.corp.kuaishou.com/@vuepress%2fplugin-active-header-links/-/plugin-active-header-links-2.0.0-beta.51.tgz" integrity sha512-AV9qLVSD3e9Xnp+2Vu9tegUdzbm9HD2bF6pRC3xEdW8GzRlsHBTfMpFwfsKvkKofk90+4ICkPWY9mY95P4mNSw== dependencies: "@vuepress/client" "2.0.0-beta.51" @@ -966,7 +1367,7 @@ "@vuepress/plugin-back-to-top@2.0.0-beta.51": version "2.0.0-beta.51" - resolved "https://npm.corp.kuaishou.com/@vuepress%2fplugin-back-to-top/-/plugin-back-to-top-2.0.0-beta.51.tgz#69a9a12139f7951942a9dd078c70bf67bca59558" + resolved "https://npm.corp.kuaishou.com/@vuepress%2fplugin-back-to-top/-/plugin-back-to-top-2.0.0-beta.51.tgz" integrity sha512-VwTkJ9iV5vUFz93RURzk/4wnPPgq0OO4KUB4b9WCWlGg+4iD7Yo2zXnqaGe7Gh7hkQjbrysuPbZdtggbmnxMdg== dependencies: "@vuepress/client" "2.0.0-beta.51" @@ -977,7 +1378,7 @@ "@vuepress/plugin-container@2.0.0-beta.51": version "2.0.0-beta.51" - resolved "https://npm.corp.kuaishou.com/@vuepress%2fplugin-container/-/plugin-container-2.0.0-beta.51.tgz#0a51a5398e1f6e632cc199130e2e2e564642c44a" + resolved "https://npm.corp.kuaishou.com/@vuepress%2fplugin-container/-/plugin-container-2.0.0-beta.51.tgz" integrity sha512-81FzcStQs5A0VTReWsS/CSVpaxfcAA5Gj0pzbcc6/QpNTa9Gaj2UywbcWOLIk3wozCrKucCLu8TSL31cj0+LqA== dependencies: "@types/markdown-it" "^12.2.3" @@ -990,7 +1391,7 @@ "@vuepress/plugin-external-link-icon@2.0.0-beta.51": version "2.0.0-beta.51" - resolved "https://npm.corp.kuaishou.com/@vuepress%2fplugin-external-link-icon/-/plugin-external-link-icon-2.0.0-beta.51.tgz#a34731452211617cdb7e98a3145edcd417e45ea9" + resolved "https://npm.corp.kuaishou.com/@vuepress%2fplugin-external-link-icon/-/plugin-external-link-icon-2.0.0-beta.51.tgz" integrity sha512-6ITMmvD/6DX2MLCCnGOJBXkB+rFbRkVboWzBibCzITHfUORsmFwLMjmrDxnIbZl74F0VZ7533zk/BRJIy4uYLA== dependencies: "@vuepress/client" "2.0.0-beta.51" @@ -1002,16 +1403,23 @@ "@vuepress/plugin-git@2.0.0-beta.51": version "2.0.0-beta.51" - resolved "https://npm.corp.kuaishou.com/@vuepress%2fplugin-git/-/plugin-git-2.0.0-beta.51.tgz#dd3162d8506a03460c9c7627fa303c3bfb84c266" + resolved "https://npm.corp.kuaishou.com/@vuepress%2fplugin-git/-/plugin-git-2.0.0-beta.51.tgz" integrity sha512-lw45Vjg5pI25zNgPOTBcIrBNhNB9jU9o/j+fhb5TnW1j9hX3mwWDeJhdWLLErodSlmnTVdyL3e7qNKJpKo1Wmg== dependencies: "@vuepress/core" "2.0.0-beta.51" "@vuepress/utils" "2.0.0-beta.51" execa "^6.1.0" +"@vuepress/plugin-google-analytics@^1.9.7": + version "1.9.7" + resolved "https://npm.corp.kuaishou.com/@vuepress%2fplugin-google-analytics/-/plugin-google-analytics-1.9.7.tgz" + integrity sha512-ZpsYrk23JdwbcJo9xArVcdqYHt5VyTX9UN9bLqNrLJRgRTV0X2jKUkM63dlKTJMpBf+0K1PQMJbGBXgOO7Yh0Q== + dependencies: + "@vuepress/types" "1.9.7" + "@vuepress/plugin-medium-zoom@2.0.0-beta.51": version "2.0.0-beta.51" - resolved "https://npm.corp.kuaishou.com/@vuepress%2fplugin-medium-zoom/-/plugin-medium-zoom-2.0.0-beta.51.tgz#228307efcc5860dbdf7795c3acdf73d876a564a0" + resolved "https://npm.corp.kuaishou.com/@vuepress%2fplugin-medium-zoom/-/plugin-medium-zoom-2.0.0-beta.51.tgz" integrity sha512-pgsKfsuEazHOLEE0xAWWi2McrygR5shQ1Xi4mZzn1MD9cn5o4JKbJxp2BlUs8q+yG5QMUQ0ugAJ9yRgCkMkUBw== dependencies: "@vuepress/client" "2.0.0-beta.51" @@ -1022,7 +1430,7 @@ "@vuepress/plugin-nprogress@2.0.0-beta.51": version "2.0.0-beta.51" - resolved "https://npm.corp.kuaishou.com/@vuepress%2fplugin-nprogress/-/plugin-nprogress-2.0.0-beta.51.tgz#bc490d562ce69c54291d2c55e4cf373d114a8f45" + resolved "https://npm.corp.kuaishou.com/@vuepress%2fplugin-nprogress/-/plugin-nprogress-2.0.0-beta.51.tgz" integrity sha512-eu3IxuiCS5y+Za9l86xKrNSo13VseoZCnAPSIqZj6I6wvyWI62ffCP5NztdR0Z9izp0g/FL6KBtBlwN1PnkY7A== dependencies: "@vuepress/client" "2.0.0-beta.51" @@ -1033,7 +1441,7 @@ "@vuepress/plugin-palette@2.0.0-beta.51": version "2.0.0-beta.51" - resolved "https://npm.corp.kuaishou.com/@vuepress%2fplugin-palette/-/plugin-palette-2.0.0-beta.51.tgz#eee690215cd296b41f0419891d1f843262eedc73" + resolved "https://npm.corp.kuaishou.com/@vuepress%2fplugin-palette/-/plugin-palette-2.0.0-beta.51.tgz" integrity sha512-Q3uFQxiPC7W3JKlyoAT0Nu1bZy6PXXUadjzwpk8dcHDsh+OmdUQqdNfeU1hc4pPQjHIiGdsBAnnGnb+8dNXqkw== dependencies: "@vuepress/core" "2.0.0-beta.51" @@ -1042,7 +1450,7 @@ "@vuepress/plugin-prismjs@2.0.0-beta.51": version "2.0.0-beta.51" - resolved "https://npm.corp.kuaishou.com/@vuepress%2fplugin-prismjs/-/plugin-prismjs-2.0.0-beta.51.tgz#a2eb681ef9a2214bcbf026c1390e3606c46a0621" + resolved "https://npm.corp.kuaishou.com/@vuepress%2fplugin-prismjs/-/plugin-prismjs-2.0.0-beta.51.tgz" integrity sha512-C1kyhWYlehZVuOQK6H8eyo2Mw8Lj3wAA9Lp3YbX9bt0qNf4kfzviEQL+mTrgzM+j1Jpaijjj6nZS0Ev42mO+kw== dependencies: "@vuepress/core" "2.0.0-beta.51" @@ -1050,7 +1458,7 @@ "@vuepress/plugin-register-components@2.0.0-beta.51": version "2.0.0-beta.51" - resolved "https://npm.corp.kuaishou.com/@vuepress%2fplugin-register-components/-/plugin-register-components-2.0.0-beta.51.tgz#038bb61bb124d771997b3ba2d7f096a9340723db" + resolved "https://npm.corp.kuaishou.com/@vuepress%2fplugin-register-components/-/plugin-register-components-2.0.0-beta.51.tgz" integrity sha512-9zZgv37gdQlDwpZnif/CChJvKJVeHQ2LSbkw0ab6L5GIjrTegDBc3AHXjoNJBIG80Xo+/fAdR1dWjAlR7YfgKg== dependencies: "@vuepress/core" "2.0.0-beta.51" @@ -1059,7 +1467,7 @@ "@vuepress/plugin-search@2.0.0-beta.51": version "2.0.0-beta.51" - resolved "https://npm.corp.kuaishou.com/@vuepress%2fplugin-search/-/plugin-search-2.0.0-beta.51.tgz#790d12dab85094a7d2a524876ad4409a44fd8a55" + resolved "https://npm.corp.kuaishou.com/@vuepress%2fplugin-search/-/plugin-search-2.0.0-beta.51.tgz" integrity sha512-LUKD1WOhesfbjRmy+3wPz27ZOat5sEL7nRVFrmoZNGjqGoUSuh/AFnd04z2utVEoceeuWWOluVmpoYKhxJVMFQ== dependencies: "@vuepress/client" "2.0.0-beta.51" @@ -1070,9 +1478,17 @@ vue "^3.2.37" vue-router "^4.1.4" +"@vuepress/plugin-shiki@^2.0.0-beta.5": + version "2.0.0-beta.5" + resolved "https://npm.corp.kuaishou.com/@vuepress%2fplugin-shiki/-/plugin-shiki-2.0.0-beta.5.tgz" + integrity sha1-hus6iRMdupx50bPgvQODr55YFII= + dependencies: + "@vuepress/core" "2.0.0-beta.5" + shiki "^0.9.3" + "@vuepress/plugin-theme-data@2.0.0-beta.51": version "2.0.0-beta.51" - resolved "https://npm.corp.kuaishou.com/@vuepress%2fplugin-theme-data/-/plugin-theme-data-2.0.0-beta.51.tgz#d0bfaf8355ca1ed7f606a91a10b2a274845372f8" + resolved "https://npm.corp.kuaishou.com/@vuepress%2fplugin-theme-data/-/plugin-theme-data-2.0.0-beta.51.tgz" integrity sha512-sfsZRhb7zZATqY1+BXkynZZ7HEZnBZEd4iuEyCNpWEnjwa7/qjPSKJyAb/M0a2SLgN2/UcPdM5URMfE1mV/4QQ== dependencies: "@vue/devtools-api" "^6.2.1" @@ -1082,9 +1498,23 @@ "@vuepress/utils" "2.0.0-beta.51" vue "^3.2.37" +"@vuepress/shared@2.0.0-beta.4": + version "2.0.0-beta.4" + resolved "https://npm.corp.kuaishou.com/@vuepress%2fshared/-/shared-2.0.0-beta.4.tgz" + integrity sha1-G+W4fSqDuZzCxr5upwS6RMtQ7FQ= + dependencies: + "@vue/shared" "^3.0.7" + +"@vuepress/shared@2.0.0-beta.45": + version "2.0.0-beta.45" + resolved "https://npm.corp.kuaishou.com/@vuepress%2fshared/-/shared-2.0.0-beta.45.tgz" + integrity sha512-lYj+rgMtQ6liWjvzVy7jGux/Eix5ExbUy8b2uFAAsSE4v5wrdGeVgcFunVb40VPK3Mu0uyW4AvhCsPteLRUp1A== + dependencies: + "@vue/shared" "^3.2.33" + "@vuepress/shared@2.0.0-beta.51": version "2.0.0-beta.51" - resolved "https://npm.corp.kuaishou.com/@vuepress%2fshared/-/shared-2.0.0-beta.51.tgz#e523b085e289163775cca593eead2c0d1934dcf2" + resolved "https://npm.corp.kuaishou.com/@vuepress%2fshared/-/shared-2.0.0-beta.51.tgz" integrity sha512-0dbJp0M+d/schkD+xUI7MwwoyJRtFxH3QEYMcLTKhgkaNFjgzlIEG/coh1QywVIoQGX9cGQSa8PZk8BeMeePug== dependencies: "@mdit-vue/types" "^0.10.0" @@ -1092,7 +1522,7 @@ "@vuepress/theme-default@2.0.0-beta.51": version "2.0.0-beta.51" - resolved "https://npm.corp.kuaishou.com/@vuepress%2ftheme-default/-/theme-default-2.0.0-beta.51.tgz#e1cab410e1fa1f2ad6a9224f2e3d01b2038a910a" + resolved "https://npm.corp.kuaishou.com/@vuepress%2ftheme-default/-/theme-default-2.0.0-beta.51.tgz" integrity sha512-k1hbvsnPgcpqyBZc54OOytBD2UlL2IlThnasiRxvoV5qEibVcS07JzF7Dydk8BmrcylHEkhGTe2oAuUXwVs7Dg== dependencies: "@vuepress/client" "2.0.0-beta.51" @@ -1114,9 +1544,51 @@ vue "^3.2.37" vue-router "^4.1.4" +"@vuepress/types@1.9.7": + version "1.9.7" + resolved "https://npm.corp.kuaishou.com/@vuepress%2ftypes/-/types-1.9.7.tgz" + integrity sha512-moLQzkX3ED2o18dimLemUm7UVDKxhcrJmGt5C0Ng3xxrLPaQu7UqbROtEKB3YnMRt4P/CA91J+Ck+b9LmGabog== + dependencies: + "@types/markdown-it" "^10.0.0" + "@types/webpack-dev-server" "^3" + webpack-chain "^6.0.0" + +"@vuepress/utils@2.0.0-beta.45": + version "2.0.0-beta.45" + resolved "https://npm.corp.kuaishou.com/@vuepress%2futils/-/utils-2.0.0-beta.45.tgz" + integrity sha512-vdhRs+Q3tuJiznQ3Vlckumpciv7uKm6kTcqkAInZJdtpa/vS+SAeeS3q8ThERC0I7z1mnW/s/CGkVlLKhrfjKA== + dependencies: + "@types/debug" "^4.1.7" + "@types/fs-extra" "^9.0.13" + "@vuepress/shared" "2.0.0-beta.45" + chalk "^4.1.2" + debug "^4.3.4" + fs-extra "^10.1.0" + globby "^11.0.4" + hash-sum "^2.0.0" + ora "^5.4.1" + upath "^2.0.1" + +"@vuepress/utils@2.0.0-beta.5": + version "2.0.0-beta.5" + resolved "https://npm.corp.kuaishou.com/@vuepress%2futils/-/utils-2.0.0-beta.5.tgz" + integrity sha1-jxcEqCjYLozVm9tGfGzaOKusqDE= + dependencies: + "@types/debug" "^4.1.5" + "@types/fs-extra" "^9.0.8" + "@types/hash-sum" "^1.0.0" + "@vuepress/shared" "2.0.0-beta.4" + chalk "^4.1.0" + debug "^4.3.1" + fs-extra "^9.1.0" + globby "^11.0.2" + hash-sum "^2.0.0" + ora "^5.4.0" + upath "^2.0.1" + "@vuepress/utils@2.0.0-beta.51": version "2.0.0-beta.51" - resolved "https://npm.corp.kuaishou.com/@vuepress%2futils/-/utils-2.0.0-beta.51.tgz#5df21d50e58c53631dfd58f6bf08b5e9d8dfe4f7" + resolved "https://npm.corp.kuaishou.com/@vuepress%2futils/-/utils-2.0.0-beta.51.tgz" integrity sha512-BtWK38047GNk3CnzAN9dxm8n7XplHqOU/DhW4BYO84Czl6XZh0NExPny3aPf7SL8roy03eAzF0dgPgmug6whIQ== dependencies: "@types/debug" "^4.1.7" @@ -1131,9 +1603,19 @@ ora "^6.1.2" upath "^2.0.1" +"@vueuse/core@^8.4.1": + version "8.9.4" + resolved "https://npm.corp.kuaishou.com/@vueuse%2fcore/-/core-8.9.4.tgz" + integrity sha512-B/Mdj9TK1peFyWaPof+Zf/mP9XuGAngaJZBwPaXBvU3aCTZlx3ltlrFFFyMV4iGBwsjSCeUCgZrtkEj9dS2Y3Q== + dependencies: + "@types/web-bluetooth" "^0.0.14" + "@vueuse/metadata" "8.9.4" + "@vueuse/shared" "8.9.4" + vue-demi "*" + "@vueuse/core@^9.1.0", "@vueuse/core@^9.3.0": version "9.4.0" - resolved "https://npm.corp.kuaishou.com/@vueuse%2fcore/-/core-9.4.0.tgz#afb30f9494b0954e51a489526566b14f1e2c5fb3" + resolved "https://npm.corp.kuaishou.com/@vueuse%2fcore/-/core-9.4.0.tgz" integrity sha512-JzgenGj1ZF2BHOen5rsFiAyyI9sXAv7aKhNLlm9b7SwYQeKTcxTWdhudonURCSP3Egl9NQaRBzes2lv/1JUt/Q== dependencies: "@types/web-bluetooth" "^0.0.16" @@ -1141,21 +1623,33 @@ "@vueuse/shared" "9.4.0" vue-demi "*" +"@vueuse/metadata@8.9.4": + version "8.9.4" + resolved "https://npm.corp.kuaishou.com/@vueuse%2fmetadata/-/metadata-8.9.4.tgz" + integrity sha512-IwSfzH80bnJMzqhaapqJl9JRIiyQU0zsRGEgnxN6jhq7992cPUJIRfV+JHRIZXjYqbwt07E1gTEp0R0zPJ1aqw== + "@vueuse/metadata@9.4.0": version "9.4.0" - resolved "https://npm.corp.kuaishou.com/@vueuse%2fmetadata/-/metadata-9.4.0.tgz#5c8eb105a8ad9eb7b47f78a226ff993560d0bd7f" + resolved "https://npm.corp.kuaishou.com/@vueuse%2fmetadata/-/metadata-9.4.0.tgz" integrity sha512-7GKMdGAsJyQJl35MYOz/RDpP0FxuiZBRDSN79QIPbdqYx4Sd0sVTnIC68KJ6Oln0t0SouvSUMvRHuno216Ud2Q== +"@vueuse/shared@8.9.4": + version "8.9.4" + resolved "https://npm.corp.kuaishou.com/@vueuse%2fshared/-/shared-8.9.4.tgz" + integrity sha512-wt+T30c4K6dGRMVqPddexEVLa28YwxW5OFIPmzUHICjphfAuBFTTdDoyqREZNDOFJZ44ARH1WWQNCUK8koJ+Ag== + dependencies: + vue-demi "*" + "@vueuse/shared@9.4.0": version "9.4.0" - resolved "https://npm.corp.kuaishou.com/@vueuse%2fshared/-/shared-9.4.0.tgz#634022fe42b3d5ece1d81d749724966f5071c8c3" + resolved "https://npm.corp.kuaishou.com/@vueuse%2fshared/-/shared-9.4.0.tgz" integrity sha512-fTuem51KwMCnqUKkI8B57qAIMcFovtGgsCtAeqxIzH3i6nE9VYge+gVfneNHAAy7lj8twbkNfqQSygOPJTm4tQ== dependencies: vue-demi "*" "@waline/client@^2.6.1": version "2.13.0" - resolved "https://npm.corp.kuaishou.com/@waline%2fclient/-/client-2.13.0.tgz#fcf94696aab4acf5564581a55f8d52c248218baa" + resolved "https://npm.corp.kuaishou.com/@waline%2fclient/-/client-2.13.0.tgz" integrity sha512-7NrEVpAaT79PTCjjK06WEBRu8gR+/jDU40kn1D4SOJB3fEfvZg1Ztzf2mj1xqy3r4xdOrJ+KWFD88xvPVU96ZA== dependencies: "@vueuse/core" "^9.3.0" @@ -1165,7 +1659,7 @@ "@webassemblyjs/ast@1.11.1": version "1.11.1" - resolved "https://npm.corp.kuaishou.com/@webassemblyjs%2fast/-/ast-1.11.1.tgz#2bfd767eae1a6996f432ff7e8d7fc75679c0b6a7" + resolved "https://npm.corp.kuaishou.com/@webassemblyjs%2fast/-/ast-1.11.1.tgz" integrity sha1-K/12fq4aaZb0Mv9+jX/HVnnAtqc= dependencies: "@webassemblyjs/helper-numbers" "1.11.1" @@ -1173,22 +1667,22 @@ "@webassemblyjs/floating-point-hex-parser@1.11.1": version "1.11.1" - resolved "https://npm.corp.kuaishou.com/@webassemblyjs%2ffloating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz#f6c61a705f0fd7a6aecaa4e8198f23d9dc179e4f" + resolved "https://npm.corp.kuaishou.com/@webassemblyjs%2ffloating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz" integrity sha1-9sYacF8P16auyqToGY8j2dwXnk8= "@webassemblyjs/helper-api-error@1.11.1": version "1.11.1" - resolved "https://npm.corp.kuaishou.com/@webassemblyjs%2fhelper-api-error/-/helper-api-error-1.11.1.tgz#1a63192d8788e5c012800ba6a7a46c705288fd16" + resolved "https://npm.corp.kuaishou.com/@webassemblyjs%2fhelper-api-error/-/helper-api-error-1.11.1.tgz" integrity sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg== "@webassemblyjs/helper-buffer@1.11.1": version "1.11.1" - resolved "https://npm.corp.kuaishou.com/@webassemblyjs%2fhelper-buffer/-/helper-buffer-1.11.1.tgz#832a900eb444884cde9a7cad467f81500f5e5ab5" + resolved "https://npm.corp.kuaishou.com/@webassemblyjs%2fhelper-buffer/-/helper-buffer-1.11.1.tgz" integrity sha1-gyqQDrREiEzemnytRn+BUA9eWrU= "@webassemblyjs/helper-numbers@1.11.1": version "1.11.1" - resolved "https://npm.corp.kuaishou.com/@webassemblyjs%2fhelper-numbers/-/helper-numbers-1.11.1.tgz#64d81da219fbbba1e3bd1bfc74f6e8c4e10a62ae" + resolved "https://npm.corp.kuaishou.com/@webassemblyjs%2fhelper-numbers/-/helper-numbers-1.11.1.tgz" integrity sha1-ZNgdohn7u6HjvRv8dPboxOEKYq4= dependencies: "@webassemblyjs/floating-point-hex-parser" "1.11.1" @@ -1197,12 +1691,12 @@ "@webassemblyjs/helper-wasm-bytecode@1.11.1": version "1.11.1" - resolved "https://npm.corp.kuaishou.com/@webassemblyjs%2fhelper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz#f328241e41e7b199d0b20c18e88429c4433295e1" + resolved "https://npm.corp.kuaishou.com/@webassemblyjs%2fhelper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz" integrity sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q== "@webassemblyjs/helper-wasm-section@1.11.1": version "1.11.1" - resolved "https://npm.corp.kuaishou.com/@webassemblyjs%2fhelper-wasm-section/-/helper-wasm-section-1.11.1.tgz#21ee065a7b635f319e738f0dd73bfbda281c097a" + resolved "https://npm.corp.kuaishou.com/@webassemblyjs%2fhelper-wasm-section/-/helper-wasm-section-1.11.1.tgz" integrity sha1-Ie4GWntjXzGec48N1zv72igcCXo= dependencies: "@webassemblyjs/ast" "1.11.1" @@ -1212,26 +1706,26 @@ "@webassemblyjs/ieee754@1.11.1": version "1.11.1" - resolved "https://npm.corp.kuaishou.com/@webassemblyjs%2fieee754/-/ieee754-1.11.1.tgz#963929e9bbd05709e7e12243a099180812992614" + resolved "https://npm.corp.kuaishou.com/@webassemblyjs%2fieee754/-/ieee754-1.11.1.tgz" integrity sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ== dependencies: "@xtuc/ieee754" "^1.2.0" "@webassemblyjs/leb128@1.11.1": version "1.11.1" - resolved "https://npm.corp.kuaishou.com/@webassemblyjs%2fleb128/-/leb128-1.11.1.tgz#ce814b45574e93d76bae1fb2644ab9cdd9527aa5" + resolved "https://npm.corp.kuaishou.com/@webassemblyjs%2fleb128/-/leb128-1.11.1.tgz" integrity sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw== dependencies: "@xtuc/long" "4.2.2" "@webassemblyjs/utf8@1.11.1": version "1.11.1" - resolved "https://npm.corp.kuaishou.com/@webassemblyjs%2futf8/-/utf8-1.11.1.tgz#d1f8b764369e7c6e6bae350e854dec9a59f0a3ff" + resolved "https://npm.corp.kuaishou.com/@webassemblyjs%2futf8/-/utf8-1.11.1.tgz" integrity sha1-0fi3ZDaefG5rrjUOhU3smlnwo/8= "@webassemblyjs/wasm-edit@1.11.1": version "1.11.1" - resolved "https://npm.corp.kuaishou.com/@webassemblyjs%2fwasm-edit/-/wasm-edit-1.11.1.tgz#ad206ebf4bf95a058ce9880a8c092c5dec8193d6" + resolved "https://npm.corp.kuaishou.com/@webassemblyjs%2fwasm-edit/-/wasm-edit-1.11.1.tgz" integrity sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA== dependencies: "@webassemblyjs/ast" "1.11.1" @@ -1245,7 +1739,7 @@ "@webassemblyjs/wasm-gen@1.11.1": version "1.11.1" - resolved "https://npm.corp.kuaishou.com/@webassemblyjs%2fwasm-gen/-/wasm-gen-1.11.1.tgz#86c5ea304849759b7d88c47a32f4f039ae3c8f76" + resolved "https://npm.corp.kuaishou.com/@webassemblyjs%2fwasm-gen/-/wasm-gen-1.11.1.tgz" integrity sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA== dependencies: "@webassemblyjs/ast" "1.11.1" @@ -1256,7 +1750,7 @@ "@webassemblyjs/wasm-opt@1.11.1": version "1.11.1" - resolved "https://npm.corp.kuaishou.com/@webassemblyjs%2fwasm-opt/-/wasm-opt-1.11.1.tgz#657b4c2202f4cf3b345f8a4c6461c8c2418985f2" + resolved "https://npm.corp.kuaishou.com/@webassemblyjs%2fwasm-opt/-/wasm-opt-1.11.1.tgz" integrity sha1-ZXtMIgL0zzs0X4pMZGHIwkGJhfI= dependencies: "@webassemblyjs/ast" "1.11.1" @@ -1266,7 +1760,7 @@ "@webassemblyjs/wasm-parser@1.11.1": version "1.11.1" - resolved "https://npm.corp.kuaishou.com/@webassemblyjs%2fwasm-parser/-/wasm-parser-1.11.1.tgz#86ca734534f417e9bd3c67c7a1c75d8be41fb199" + resolved "https://npm.corp.kuaishou.com/@webassemblyjs%2fwasm-parser/-/wasm-parser-1.11.1.tgz" integrity sha1-hspzRTT0F+m9PGfHocddi+QfsZk= dependencies: "@webassemblyjs/ast" "1.11.1" @@ -1278,7 +1772,7 @@ "@webassemblyjs/wast-printer@1.11.1": version "1.11.1" - resolved "https://npm.corp.kuaishou.com/@webassemblyjs%2fwast-printer/-/wast-printer-1.11.1.tgz#d0c73beda8eec5426f10ae8ef55cee5e7084c2f0" + resolved "https://npm.corp.kuaishou.com/@webassemblyjs%2fwast-printer/-/wast-printer-1.11.1.tgz" integrity sha1-0Mc77ajuxUJvEK6O9VzuXnCEwvA= dependencies: "@webassemblyjs/ast" "1.11.1" @@ -1286,17 +1780,22 @@ "@xtuc/ieee754@^1.2.0": version "1.2.0" - resolved "https://npm.corp.kuaishou.com/@xtuc%2fieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790" + resolved "https://npm.corp.kuaishou.com/@xtuc%2fieee754/-/ieee754-1.2.0.tgz" integrity sha1-7vAUoxRa5Hehy8AM0eVSM23Ot5A= "@xtuc/long@4.2.2": version "4.2.2" - resolved "https://npm.corp.kuaishou.com/@xtuc%2flong/-/long-4.2.2.tgz#d291c6a4e97989b5c61d9acf396ae4fe133a718d" + resolved "https://npm.corp.kuaishou.com/@xtuc%2flong/-/long-4.2.2.tgz" integrity sha1-0pHGpOl5ibXGHZrPOWrk/hM6cY0= +abbrev@^1.0.0, abbrev@~1.1.1: + version "1.1.1" + resolved "https://npm.corp.kuaishou.com/abbrev/-/abbrev-1.1.1.tgz" + integrity sha1-+PLIh60Qv2f2NPAFtph/7TF5qsg= + accepts@~1.3.4, accepts@~1.3.5, accepts@~1.3.8: version "1.3.8" - resolved "https://npm.corp.kuaishou.com/accepts/-/accepts-1.3.8.tgz#0bf0be125b67014adcb0b0921e62db7bffe16b2e" + resolved "https://npm.corp.kuaishou.com/accepts/-/accepts-1.3.8.tgz" integrity sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw== dependencies: mime-types "~2.1.34" @@ -1304,12 +1803,12 @@ accepts@~1.3.4, accepts@~1.3.5, accepts@~1.3.8: acorn-import-assertions@^1.7.6: version "1.8.0" - resolved "https://npm.corp.kuaishou.com/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz#ba2b5939ce62c238db6d93d81c9b111b29b855e9" + resolved "https://npm.corp.kuaishou.com/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz" integrity sha1-uitZOc5iwjjbbZPYHJsRGym4Vek= acorn-node@^1.8.2: version "1.8.2" - resolved "https://npm.corp.kuaishou.com/acorn-node/-/acorn-node-1.8.2.tgz#114c95d64539e53dede23de8b9d96df7c7ae2af8" + resolved "https://npm.corp.kuaishou.com/acorn-node/-/acorn-node-1.8.2.tgz" integrity sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A== dependencies: acorn "^7.0.0" @@ -1318,41 +1817,65 @@ acorn-node@^1.8.2: acorn-walk@^7.0.0: version "7.2.0" - resolved "https://npm.corp.kuaishou.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc" + resolved "https://npm.corp.kuaishou.com/acorn-walk/-/acorn-walk-7.2.0.tgz" integrity sha1-DeiJpgEgOQmw++B7iTjcIdLpZ7w= acorn@^7.0.0: version "7.4.1" - resolved "https://npm.corp.kuaishou.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" + resolved "https://npm.corp.kuaishou.com/acorn/-/acorn-7.4.1.tgz" integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== acorn@^8.5.0, acorn@^8.7.1: version "8.8.1" - resolved "https://npm.corp.kuaishou.com/acorn/-/acorn-8.8.1.tgz#0a3f9cbecc4ec3bea6f0a80b66ae8dd2da250b73" + resolved "https://npm.corp.kuaishou.com/acorn/-/acorn-8.8.1.tgz" integrity sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA== +agent-base@6, agent-base@^6.0.2: + version "6.0.2" + resolved "https://npm.corp.kuaishou.com/agent-base/-/agent-base-6.0.2.tgz" + integrity sha1-Sf/1hXfP7j83F2/qtMIuAPhtf3c= + dependencies: + debug "4" + +agentkeepalive@^4.2.1: + version "4.2.1" + resolved "https://npm.corp.kuaishou.com/agentkeepalive/-/agentkeepalive-4.2.1.tgz" + integrity sha512-Zn4cw2NEqd+9fiSVWMscnjyQ1a8Yfoc5oBajLeo5w+YBHgDUcEBY2hS4YpTz6iN5f/2zQiktcuM6tS8x1p9dpA== + dependencies: + debug "^4.1.0" + depd "^1.1.2" + humanize-ms "^1.2.1" + +aggregate-error@^3.0.0: + version "3.1.0" + resolved "https://npm.corp.kuaishou.com/aggregate-error/-/aggregate-error-3.1.0.tgz" + integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== + dependencies: + clean-stack "^2.0.0" + indent-string "^4.0.0" + ajv-formats@^2.1.1: version "2.1.1" - resolved "https://npm.corp.kuaishou.com/ajv-formats/-/ajv-formats-2.1.1.tgz#6e669400659eb74973bbf2e33327180a0996b520" + resolved "https://npm.corp.kuaishou.com/ajv-formats/-/ajv-formats-2.1.1.tgz" integrity sha1-bmaUAGWet0lzu/LjMycYCgmWtSA= dependencies: ajv "^8.0.0" ajv-keywords@^3.5.2: version "3.5.2" - resolved "https://npm.corp.kuaishou.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d" + resolved "https://npm.corp.kuaishou.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz" integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ== ajv-keywords@^5.0.0: version "5.1.0" - resolved "https://npm.corp.kuaishou.com/ajv-keywords/-/ajv-keywords-5.1.0.tgz#69d4d385a4733cdbeab44964a1170a88f87f0e16" + resolved "https://npm.corp.kuaishou.com/ajv-keywords/-/ajv-keywords-5.1.0.tgz" integrity sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw== dependencies: fast-deep-equal "^3.1.3" ajv@^6.12.5: version "6.12.6" - resolved "https://npm.corp.kuaishou.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" + resolved "https://npm.corp.kuaishou.com/ajv/-/ajv-6.12.6.tgz" integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== dependencies: fast-deep-equal "^3.1.1" @@ -1362,7 +1885,7 @@ ajv@^6.12.5: ajv@^8.0.0, ajv@^8.8.0: version "8.11.0" - resolved "https://npm.corp.kuaishou.com/ajv/-/ajv-8.11.0.tgz#977e91dd96ca669f54a11e23e378e33b884a565f" + resolved "https://npm.corp.kuaishou.com/ajv/-/ajv-8.11.0.tgz" integrity sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg== dependencies: fast-deep-equal "^3.1.1" @@ -1372,76 +1895,104 @@ ajv@^8.0.0, ajv@^8.8.0: ansi-html-community@^0.0.8: version "0.0.8" - resolved "https://npm.corp.kuaishou.com/ansi-html-community/-/ansi-html-community-0.0.8.tgz#69fbc4d6ccbe383f9736934ae34c3f8290f1bf41" + resolved "https://npm.corp.kuaishou.com/ansi-html-community/-/ansi-html-community-0.0.8.tgz" integrity sha1-afvE1sy+OD+XNpNK40w/gpDxv0E= ansi-regex@^2.0.0: version "2.1.1" - resolved "https://npm.corp.kuaishou.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" + resolved "https://npm.corp.kuaishou.com/ansi-regex/-/ansi-regex-2.1.1.tgz" integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= ansi-regex@^5.0.1: version "5.0.1" - resolved "https://npm.corp.kuaishou.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" + resolved "https://npm.corp.kuaishou.com/ansi-regex/-/ansi-regex-5.0.1.tgz" integrity sha1-CCyyyJyf6GWaMRpTvWpNxTAdswQ= ansi-regex@^6.0.1: version "6.0.1" - resolved "https://npm.corp.kuaishou.com/ansi-regex/-/ansi-regex-6.0.1.tgz#3183e38fae9a65d7cb5e53945cd5897d0260a06a" + resolved "https://npm.corp.kuaishou.com/ansi-regex/-/ansi-regex-6.0.1.tgz" integrity sha1-MYPjj66aZdfLXlOUXNWJfQJgoGo= ansi-styles@^3.2.1: version "3.2.1" - resolved "https://npm.corp.kuaishou.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + resolved "https://npm.corp.kuaishou.com/ansi-styles/-/ansi-styles-3.2.1.tgz" integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== dependencies: color-convert "^1.9.0" -ansi-styles@^4.1.0: +ansi-styles@^4.1.0, ansi-styles@^4.3.0: version "4.3.0" - resolved "https://npm.corp.kuaishou.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" + resolved "https://npm.corp.kuaishou.com/ansi-styles/-/ansi-styles-4.3.0.tgz" integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== dependencies: color-convert "^2.0.1" -anymatch@~3.1.2: +anymatch@^3.0.0, anymatch@~3.1.2: version "3.1.2" - resolved "https://npm.corp.kuaishou.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" + resolved "https://npm.corp.kuaishou.com/anymatch/-/anymatch-3.1.2.tgz" integrity sha1-wFV8CWrzLxBhmPT04qODU343hxY= dependencies: normalize-path "^3.0.0" picomatch "^2.0.4" +"aproba@^1.0.3 || ^2.0.0", aproba@^2.0.0: + version "2.0.0" + resolved "https://npm.corp.kuaishou.com/aproba/-/aproba-2.0.0.tgz" + integrity sha1-UlILiuW1aSFbNU78DKo/4eRaitw= + +archy@~1.0.0: + version "1.0.0" + resolved "https://npm.corp.kuaishou.com/archy/-/archy-1.0.0.tgz" + integrity sha1-+cjBN1fMHde8N5rHeyxipcKGjEA= + +are-we-there-yet@^3.0.0: + version "3.0.1" + resolved "https://npm.corp.kuaishou.com/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz" + integrity sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg== + dependencies: + delegates "^1.0.0" + readable-stream "^3.6.0" + arg@^5.0.2: version "5.0.2" - resolved "https://npm.corp.kuaishou.com/arg/-/arg-5.0.2.tgz#c81433cc427c92c4dcf4865142dbca6f15acd59c" + resolved "https://npm.corp.kuaishou.com/arg/-/arg-5.0.2.tgz" integrity sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg== argparse@^1.0.7: version "1.0.10" - resolved "https://npm.corp.kuaishou.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" + resolved "https://npm.corp.kuaishou.com/argparse/-/argparse-1.0.10.tgz" integrity sha1-vNZ5HqWuCXJeF+WtmIE0zUCz2RE= dependencies: sprintf-js "~1.0.2" argparse@^2.0.1: version "2.0.1" - resolved "https://npm.corp.kuaishou.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" + resolved "https://npm.corp.kuaishou.com/argparse/-/argparse-2.0.1.tgz" integrity sha1-JG9Q88p4oyQPbJl+ipvR6sSeSzg= array-flatten@1.1.1: version "1.1.1" - resolved "https://npm.corp.kuaishou.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" + resolved "https://npm.corp.kuaishou.com/array-flatten/-/array-flatten-1.1.1.tgz" integrity sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg== array-flatten@^2.1.2: version "2.1.2" - resolved "https://npm.corp.kuaishou.com/array-flatten/-/array-flatten-2.1.2.tgz#24ef80a28c1a893617e2149b0c6d0d788293b099" + resolved "https://npm.corp.kuaishou.com/array-flatten/-/array-flatten-2.1.2.tgz" integrity sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ== +array-union@^2.1.0: + version "2.1.0" + resolved "https://npm.corp.kuaishou.com/array-union/-/array-union-2.1.0.tgz" + integrity sha1-t5hCCtvrHego2ErNii4j0+/oXo0= + +asap@^2.0.0: + version "2.0.6" + resolved "https://npm.corp.kuaishou.com/asap/-/asap-2.0.6.tgz" + integrity sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA== + ascli@~1: version "1.0.1" - resolved "https://npm.corp.kuaishou.com/ascli/-/ascli-1.0.1.tgz#bcfa5974a62f18e81cabaeb49732ab4a88f906bc" + resolved "https://npm.corp.kuaishou.com/ascli/-/ascli-1.0.1.tgz" integrity sha512-JGQaNxpaCJz9Bd1JvVaFIHuWn9S+l3xhN17R0V/vmUDiGE0QngNMXhjlqpwqV+91plWz9Fg+Lt28Lj7p5vjs8A== dependencies: colour "~0.7.1" @@ -1449,22 +2000,27 @@ ascli@~1: assignment@2.0.0: version "2.0.0" - resolved "https://npm.corp.kuaishou.com/assignment/-/assignment-2.0.0.tgz#ffd17b21bf5d6b22e777b989681a815456a3dd3e" + resolved "https://npm.corp.kuaishou.com/assignment/-/assignment-2.0.0.tgz" integrity sha1-/9F7Ib9dayLnd7mJaBqBVFaj3T4= async-limiter@~1.0.0: version "1.0.1" - resolved "https://npm.corp.kuaishou.com/async-limiter/-/async-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd" + resolved "https://npm.corp.kuaishou.com/async-limiter/-/async-limiter-1.0.1.tgz" integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ== asynckit@^0.4.0: version "0.4.0" - resolved "https://npm.corp.kuaishou.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" + resolved "https://npm.corp.kuaishou.com/asynckit/-/asynckit-0.4.0.tgz" integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== +at-least-node@^1.0.0: + version "1.0.0" + resolved "https://npm.corp.kuaishou.com/at-least-node/-/at-least-node-1.0.0.tgz" + integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg== + autoprefixer@10.4.7: version "10.4.7" - resolved "https://npm.corp.kuaishou.com/autoprefixer/-/autoprefixer-10.4.7.tgz#1db8d195f41a52ca5069b7593be167618edbbedf" + resolved "https://npm.corp.kuaishou.com/autoprefixer/-/autoprefixer-10.4.7.tgz" integrity sha512-ypHju4Y2Oav95SipEcCcI5J7CGPuvz8oat7sUtYj3ClK44bldfvtvcxK6IEK++7rqB7YchDGzweZIBG+SD0ZAA== dependencies: browserslist "^4.20.3" @@ -1476,7 +2032,7 @@ autoprefixer@10.4.7: autoprefixer@^10.4.8: version "10.4.13" - resolved "https://npm.corp.kuaishou.com/autoprefixer/-/autoprefixer-10.4.13.tgz#b5136b59930209a321e9fa3dca2e7c4d223e83a8" + resolved "https://npm.corp.kuaishou.com/autoprefixer/-/autoprefixer-10.4.13.tgz" integrity sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg== dependencies: browserslist "^4.21.4" @@ -1488,57 +2044,78 @@ autoprefixer@^10.4.8: autosize@^4.0.2: version "4.0.4" - resolved "https://npm.corp.kuaishou.com/autosize/-/autosize-4.0.4.tgz#924f13853a466b633b9309330833936d8bccce03" + resolved "https://npm.corp.kuaishou.com/autosize/-/autosize-4.0.4.tgz" integrity sha1-kk8ThTpGa2M7kwkzCDOTbYvMzgM= autosize@^5.0.1: version "5.0.1" - resolved "https://npm.corp.kuaishou.com/autosize/-/autosize-5.0.1.tgz#ed269b0fa9b7eb47627048a1bb3299e99e003a0f" + resolved "https://npm.corp.kuaishou.com/autosize/-/autosize-5.0.1.tgz" integrity sha1-7SabD6m360dicEihuzKZ6Z4AOg8= balajs@^1.0.7: version "1.0.10" - resolved "https://npm.corp.kuaishou.com/balajs/-/balajs-1.0.10.tgz#6420df1e24fc72af5b5e9589cafe12852556d04b" + resolved "https://npm.corp.kuaishou.com/balajs/-/balajs-1.0.10.tgz" integrity sha1-ZCDfHiT8cq9bXpWJyv4ShSVW0Es= balalaika@^1.0.1: version "1.0.1" - resolved "https://npm.corp.kuaishou.com/balalaika/-/balalaika-1.0.1.tgz#0664147a257ea2ad4ae66451711e5266830d51d9" + resolved "https://npm.corp.kuaishou.com/balalaika/-/balalaika-1.0.1.tgz" integrity sha1-BmQUeiV+oq1K5mRRcR5SZoMNUdk= balanced-match@^1.0.0: version "1.0.2" - resolved "https://npm.corp.kuaishou.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" + resolved "https://npm.corp.kuaishou.com/balanced-match/-/balanced-match-1.0.2.tgz" integrity sha1-6D46fj8wCzTLnYf2FfoMvzV2kO4= base64-arraybuffer@^0.1.5: version "0.1.5" - resolved "https://npm.corp.kuaishou.com/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz#73926771923b5a19747ad666aa5cd4bf9c6e9ce8" + resolved "https://npm.corp.kuaishou.com/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz" integrity sha1-c5JncZI7Whl0etZmqlzUv5xunOg= base64-js@^1.3.1: version "1.5.1" - resolved "https://npm.corp.kuaishou.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" + resolved "https://npm.corp.kuaishou.com/base64-js/-/base64-js-1.5.1.tgz" integrity sha1-GxtEAWClv3rUC2UPCVljSBkDkwo= batch@0.6.1: version "0.6.1" - resolved "https://npm.corp.kuaishou.com/batch/-/batch-0.6.1.tgz#dc34314f4e679318093fc760272525f94bf25c16" + resolved "https://npm.corp.kuaishou.com/batch/-/batch-0.6.1.tgz" integrity sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw== big.js@^5.2.2: version "5.2.2" - resolved "https://npm.corp.kuaishou.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328" + resolved "https://npm.corp.kuaishou.com/big.js/-/big.js-5.2.2.tgz" integrity sha1-ZfCvOC9Xi83HQr2cKB6cstd2gyg= -binary-extensions@^2.0.0: +bin-links@^3.0.3: + version "3.0.3" + resolved "https://npm.corp.kuaishou.com/bin-links/-/bin-links-3.0.3.tgz" + integrity sha512-zKdnMPWEdh4F5INR07/eBrodC7QrF5JKvqskjz/ZZRXg5YSAZIbn8zGhbhUrElzHBZ2fvEQdOU59RHcTG3GiwA== + dependencies: + cmd-shim "^5.0.0" + mkdirp-infer-owner "^2.0.0" + npm-normalize-package-bin "^2.0.0" + read-cmd-shim "^3.0.0" + rimraf "^3.0.0" + write-file-atomic "^4.0.0" + +binary-extensions@^2.0.0, binary-extensions@^2.2.0: version "2.2.0" - resolved "https://npm.corp.kuaishou.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" + resolved "https://npm.corp.kuaishou.com/binary-extensions/-/binary-extensions-2.2.0.tgz" integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== +bl@^4.1.0: + version "4.1.0" + resolved "https://npm.corp.kuaishou.com/bl/-/bl-4.1.0.tgz" + integrity sha1-RRU1JkGCvsL7vIOmKrmM8R2fezo= + dependencies: + buffer "^5.5.0" + inherits "^2.0.4" + readable-stream "^3.4.0" + bl@^5.0.0: version "5.1.0" - resolved "https://npm.corp.kuaishou.com/bl/-/bl-5.1.0.tgz#183715f678c7188ecef9fe475d90209400624273" + resolved "https://npm.corp.kuaishou.com/bl/-/bl-5.1.0.tgz" integrity sha512-tv1ZJHLfTDnXE6tMHv73YgSJaWR2AFuPwMntBe7XL/GBFHnT0CLnsHMogfk5+GzCDC5ZWarSCYaIGATZt9dNsQ== dependencies: buffer "^6.0.3" @@ -1547,12 +2124,12 @@ bl@^5.0.0: blueimp-md5@^2.8.0: version "2.19.0" - resolved "https://npm.corp.kuaishou.com/blueimp-md5/-/blueimp-md5-2.19.0.tgz#b53feea5498dcb53dc6ec4b823adb84b729c4af0" + resolved "https://npm.corp.kuaishou.com/blueimp-md5/-/blueimp-md5-2.19.0.tgz" integrity sha512-DRQrD6gJyy8FbiE4s+bDoXS9hiW3Vbx5uCdwvcCf3zLHL+Iv7LtGHLpr+GZV8rHG8tK766FGYBwRbu8pELTt+w== body-parser@1.20.1: version "1.20.1" - resolved "https://npm.corp.kuaishou.com/body-parser/-/body-parser-1.20.1.tgz#b1812a8912c195cd371a3ee5e66faa2338a5c668" + resolved "https://npm.corp.kuaishou.com/body-parser/-/body-parser-1.20.1.tgz" integrity sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw== dependencies: bytes "3.1.2" @@ -1570,7 +2147,7 @@ body-parser@1.20.1: bonjour-service@^1.0.11: version "1.0.14" - resolved "https://npm.corp.kuaishou.com/bonjour-service/-/bonjour-service-1.0.14.tgz#c346f5bc84e87802d08f8d5a60b93f758e514ee7" + resolved "https://npm.corp.kuaishou.com/bonjour-service/-/bonjour-service-1.0.14.tgz" integrity sha512-HIMbgLnk1Vqvs6B4Wq5ep7mxvj9sGz5d1JJyDNSGNIdA/w2MCz6GTjWTdjqOJV1bEPj+6IkxDvWNFKEBxNt4kQ== dependencies: array-flatten "^2.1.2" @@ -1580,27 +2157,34 @@ bonjour-service@^1.0.11: boolbase@^1.0.0: version "1.0.0" - resolved "https://npm.corp.kuaishou.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" + resolved "https://npm.corp.kuaishou.com/boolbase/-/boolbase-1.0.0.tgz" integrity sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww== brace-expansion@^1.1.7: version "1.1.11" - resolved "https://npm.corp.kuaishou.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + resolved "https://npm.corp.kuaishou.com/brace-expansion/-/brace-expansion-1.1.11.tgz" integrity sha1-PH/L9SnYcibz0vUrlm/1Jx60Qd0= dependencies: balanced-match "^1.0.0" concat-map "0.0.1" +brace-expansion@^2.0.1: + version "2.0.1" + resolved "https://npm.corp.kuaishou.com/brace-expansion/-/brace-expansion-2.0.1.tgz" + integrity sha1-HtxFng8MVISG7Pn8mfIiE2S5oK4= + dependencies: + balanced-match "^1.0.0" + braces@^3.0.2, braces@~3.0.2: version "3.0.2" - resolved "https://npm.corp.kuaishou.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" + resolved "https://npm.corp.kuaishou.com/braces/-/braces-3.0.2.tgz" integrity sha1-NFThpGLujVmeI23zNs2epPiv4Qc= dependencies: fill-range "^7.0.1" browserslist@^4.14.5, browserslist@^4.20.3, browserslist@^4.21.3, browserslist@^4.21.4: version "4.21.4" - resolved "https://npm.corp.kuaishou.com/browserslist/-/browserslist-4.21.4.tgz#e7496bbc67b9e39dd0f98565feccdcb0d4ff6987" + resolved "https://npm.corp.kuaishou.com/browserslist/-/browserslist-4.21.4.tgz" integrity sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw== dependencies: caniuse-lite "^1.0.30001400" @@ -1610,42 +2194,81 @@ browserslist@^4.14.5, browserslist@^4.20.3, browserslist@^4.21.3, browserslist@^ buffer-from@^1.0.0: version "1.1.2" - resolved "https://npm.corp.kuaishou.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" + resolved "https://npm.corp.kuaishou.com/buffer-from/-/buffer-from-1.1.2.tgz" integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== +buffer@^5.5.0: + version "5.7.1" + resolved "https://npm.corp.kuaishou.com/buffer/-/buffer-5.7.1.tgz" + integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.1.13" + buffer@^6.0.3: version "6.0.3" - resolved "https://npm.corp.kuaishou.com/buffer/-/buffer-6.0.3.tgz#2ace578459cc8fbe2a70aaa8f52ee63b6a74c6c6" + resolved "https://npm.corp.kuaishou.com/buffer/-/buffer-6.0.3.tgz" integrity sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA== dependencies: base64-js "^1.3.1" ieee754 "^1.2.1" +builtins@^5.0.0: + version "5.0.1" + resolved "https://npm.corp.kuaishou.com/builtins/-/builtins-5.0.1.tgz" + integrity sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ== + dependencies: + semver "^7.0.0" + bytebuffer@~5: version "5.0.1" - resolved "https://npm.corp.kuaishou.com/bytebuffer/-/bytebuffer-5.0.1.tgz#582eea4b1a873b6d020a48d58df85f0bba6cfddd" + resolved "https://npm.corp.kuaishou.com/bytebuffer/-/bytebuffer-5.0.1.tgz" integrity sha1-WC7qSxqHO20CCkjVjfhfC7ps/d0= dependencies: long "~3" bytes@3.0.0: version "3.0.0" - resolved "https://npm.corp.kuaishou.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" + resolved "https://npm.corp.kuaishou.com/bytes/-/bytes-3.0.0.tgz" integrity sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw== bytes@3.1.2: version "3.1.2" - resolved "https://npm.corp.kuaishou.com/bytes/-/bytes-3.1.2.tgz#8b0beeb98605adf1b128fa4386403c009e0221a5" + resolved "https://npm.corp.kuaishou.com/bytes/-/bytes-3.1.2.tgz" integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg== cac@^6.7.12: version "6.7.14" - resolved "https://npm.corp.kuaishou.com/cac/-/cac-6.7.14.tgz#804e1e6f506ee363cb0e3ccbb09cad5dd9870959" + resolved "https://npm.corp.kuaishou.com/cac/-/cac-6.7.14.tgz" integrity sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ== +cacache@^16.0.0, cacache@^16.1.0, cacache@^16.1.3: + version "16.1.3" + resolved "https://npm.corp.kuaishou.com/cacache/-/cacache-16.1.3.tgz" + integrity sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ== + dependencies: + "@npmcli/fs" "^2.1.0" + "@npmcli/move-file" "^2.0.0" + chownr "^2.0.0" + fs-minipass "^2.1.0" + glob "^8.0.1" + infer-owner "^1.0.4" + lru-cache "^7.7.1" + minipass "^3.1.6" + minipass-collect "^1.0.2" + minipass-flush "^1.0.5" + minipass-pipeline "^1.2.4" + mkdirp "^1.0.4" + p-map "^4.0.0" + promise-inflight "^1.0.1" + rimraf "^3.0.2" + ssri "^9.0.0" + tar "^6.1.11" + unique-filename "^2.0.0" + call-bind@^1.0.0: version "1.0.2" - resolved "https://npm.corp.kuaishou.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" + resolved "https://npm.corp.kuaishou.com/call-bind/-/call-bind-1.0.2.tgz" integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== dependencies: function-bind "^1.1.1" @@ -1653,12 +2276,12 @@ call-bind@^1.0.0: callsites@^3.0.0: version "3.1.0" - resolved "https://npm.corp.kuaishou.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" + resolved "https://npm.corp.kuaishou.com/callsites/-/callsites-3.1.0.tgz" integrity sha1-s2MKvYlDQy9Us/BRkjjjPNffL3M= camel-case@^4.1.2: version "4.1.2" - resolved "https://npm.corp.kuaishou.com/camel-case/-/camel-case-4.1.2.tgz#9728072a954f805228225a6deea6b38461e1bd5a" + resolved "https://npm.corp.kuaishou.com/camel-case/-/camel-case-4.1.2.tgz" integrity sha1-lygHKpVPgFIoIlpt7qazhGHhvVo= dependencies: pascal-case "^3.1.2" @@ -1666,31 +2289,31 @@ camel-case@^4.1.2: camelcase-css@^2.0.1: version "2.0.1" - resolved "https://npm.corp.kuaishou.com/camelcase-css/-/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5" + resolved "https://npm.corp.kuaishou.com/camelcase-css/-/camelcase-css-2.0.1.tgz" integrity sha1-7pePaUeRTMMMa0R0G27R338EP9U= camelcase@^2.0.1: version "2.1.1" - resolved "https://npm.corp.kuaishou.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" + resolved "https://npm.corp.kuaishou.com/camelcase/-/camelcase-2.1.1.tgz" integrity sha512-DLIsRzJVBQu72meAKPkWQOLcujdXT32hwdfnkI1frSiSRMK1MofjKHf+MEx0SB6fjEFXL8fBDv1dKymBlOp4Qw== caniuse-lite@^1.0.30001335, caniuse-lite@^1.0.30001400, caniuse-lite@^1.0.30001426: version "1.0.30001431" - resolved "https://npm.corp.kuaishou.com/caniuse-lite/-/caniuse-lite-1.0.30001431.tgz#e7c59bd1bc518fae03a4656be442ce6c4887a795" + resolved "https://npm.corp.kuaishou.com/caniuse-lite/-/caniuse-lite-1.0.30001431.tgz" integrity sha512-zBUoFU0ZcxpvSt9IU66dXVT/3ctO1cy4y9cscs1szkPlcWb6pasYM144GqrUygUbT+k7cmUCW61cvskjcv0enQ== chalk@^2.0.0: version "2.4.2" - resolved "https://npm.corp.kuaishou.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + resolved "https://npm.corp.kuaishou.com/chalk/-/chalk-2.4.2.tgz" integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== dependencies: ansi-styles "^3.2.1" escape-string-regexp "^1.0.5" supports-color "^5.3.0" -chalk@^4.1.0: +chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.2: version "4.1.2" - resolved "https://npm.corp.kuaishou.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" + resolved "https://npm.corp.kuaishou.com/chalk/-/chalk-4.1.2.tgz" integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== dependencies: ansi-styles "^4.1.0" @@ -1698,17 +2321,17 @@ chalk@^4.1.0: chalk@^5.0.0, chalk@^5.0.1: version "5.1.2" - resolved "https://npm.corp.kuaishou.com/chalk/-/chalk-5.1.2.tgz#d957f370038b75ac572471e83be4c5ca9f8e8c45" + resolved "https://npm.corp.kuaishou.com/chalk/-/chalk-5.1.2.tgz" integrity sha512-E5CkT4jWURs1Vy5qGJye+XwCkNj7Od3Af7CP6SujMetSMkLs8Do2RWJK5yx1wamHV/op8Rz+9rltjaTQWDnEFQ== charenc@0.0.2: version "0.0.2" - resolved "https://npm.corp.kuaishou.com/charenc/-/charenc-0.0.2.tgz#c0a1d2f3a7092e03774bfa83f14c0fc5790a8667" + resolved "https://npm.corp.kuaishou.com/charenc/-/charenc-0.0.2.tgz" integrity sha1-wKHS86cJLgN3S/qD8UwPxXkKhmc= "chokidar@>=3.0.0 <4.0.0", chokidar@^3.5.3: version "3.5.3" - resolved "https://npm.corp.kuaishou.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" + resolved "https://npm.corp.kuaishou.com/chokidar/-/chokidar-3.5.3.tgz" integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== dependencies: anymatch "~3.1.2" @@ -1721,33 +2344,74 @@ charenc@0.0.2: optionalDependencies: fsevents "~2.3.2" +chownr@^2.0.0: + version "2.0.0" + resolved "https://npm.corp.kuaishou.com/chownr/-/chownr-2.0.0.tgz" + integrity sha1-Fb++U9LqtM9w8YqM1o6+Wzyx3s4= + chrome-trace-event@^1.0.2: version "1.0.3" - resolved "https://npm.corp.kuaishou.com/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz#1015eced4741e15d06664a957dbbf50d041e26ac" + resolved "https://npm.corp.kuaishou.com/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz" integrity sha1-EBXs7UdB4V0GZkqVfbv1DQQeJqw= +cidr-regex@^3.1.1: + version "3.1.1" + resolved "https://npm.corp.kuaishou.com/cidr-regex/-/cidr-regex-3.1.1.tgz" + integrity sha1-uhlyxXxm9hh18Y/X3Uh0aXcLVx0= + dependencies: + ip-regex "^4.1.0" + clean-css@^5.2.2: version "5.3.1" - resolved "https://npm.corp.kuaishou.com/clean-css/-/clean-css-5.3.1.tgz#d0610b0b90d125196a2894d35366f734e5d7aa32" + resolved "https://npm.corp.kuaishou.com/clean-css/-/clean-css-5.3.1.tgz" integrity sha512-lCr8OHhiWCTw4v8POJovCoh4T7I9U11yVsPjMWWnnMmp9ZowCxyad1Pathle/9HjaDp+fdQKjO9fQydE6RHTZg== dependencies: source-map "~0.6.0" +clean-stack@^2.0.0: + version "2.2.0" + resolved "https://npm.corp.kuaishou.com/clean-stack/-/clean-stack-2.2.0.tgz" + integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== + +cli-columns@^4.0.0: + version "4.0.0" + resolved "https://npm.corp.kuaishou.com/cli-columns/-/cli-columns-4.0.0.tgz" + integrity sha1-n+TWWXUjjVUhjEG9LtKWp/pVVkY= + dependencies: + string-width "^4.2.3" + strip-ansi "^6.0.1" + +cli-cursor@^3.1.0: + version "3.1.0" + resolved "https://npm.corp.kuaishou.com/cli-cursor/-/cli-cursor-3.1.0.tgz" + integrity sha1-JkMFp65JDR0Dvwybp8kl0XU68wc= + dependencies: + restore-cursor "^3.1.0" + cli-cursor@^4.0.0: version "4.0.0" - resolved "https://npm.corp.kuaishou.com/cli-cursor/-/cli-cursor-4.0.0.tgz#3cecfe3734bf4fe02a8361cbdc0f6fe28c6a57ea" + resolved "https://npm.corp.kuaishou.com/cli-cursor/-/cli-cursor-4.0.0.tgz" integrity sha1-POz+NzS/T+Aqg2HL3A9v4oxqV+o= dependencies: restore-cursor "^4.0.0" -cli-spinners@^2.6.1: +cli-spinners@^2.5.0, cli-spinners@^2.6.1: version "2.7.0" - resolved "https://npm.corp.kuaishou.com/cli-spinners/-/cli-spinners-2.7.0.tgz#f815fd30b5f9eaac02db604c7a231ed7cb2f797a" + resolved "https://npm.corp.kuaishou.com/cli-spinners/-/cli-spinners-2.7.0.tgz" integrity sha512-qu3pN8Y3qHNgE2AFweciB1IfMnmZ/fsNTEE+NOFjmGB2F/7rLhnhzppvpCnN4FovtP26k8lHyy9ptEbNwWFLzw== +cli-table3@^0.6.2: + version "0.6.3" + resolved "https://npm.corp.kuaishou.com/cli-table3/-/cli-table3-0.6.3.tgz#61ab765aac156b52f222954ffc607a6f01dbeeb2" + integrity sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg== + dependencies: + string-width "^4.2.0" + optionalDependencies: + "@colors/colors" "1.5.0" + cliui@^3.0.3: version "3.2.0" - resolved "https://npm.corp.kuaishou.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" + resolved "https://npm.corp.kuaishou.com/cliui/-/cliui-3.2.0.tgz" integrity sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0= dependencies: string-width "^1.0.1" @@ -1756,7 +2420,7 @@ cliui@^3.0.3: clone-deep@^4.0.1: version "4.0.1" - resolved "https://npm.corp.kuaishou.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387" + resolved "https://npm.corp.kuaishou.com/clone-deep/-/clone-deep-4.0.1.tgz" integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ== dependencies: is-plain-object "^2.0.4" @@ -1765,85 +2429,110 @@ clone-deep@^4.0.1: clone@^1.0.2: version "1.0.4" - resolved "https://npm.corp.kuaishou.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" + resolved "https://npm.corp.kuaishou.com/clone/-/clone-1.0.4.tgz" integrity sha1-2jCcwmPfFZlMaIypAheco8fNfH4= +cmd-shim@^5.0.0: + version "5.0.0" + resolved "https://npm.corp.kuaishou.com/cmd-shim/-/cmd-shim-5.0.0.tgz" + integrity sha512-qkCtZ59BidfEwHltnJwkyVZn+XQojdAySM1D1gSeh11Z4pW1Kpolkyo53L5noc0nrxmIvyFwTmJRo4xs7FFLPw== + dependencies: + mkdirp-infer-owner "^2.0.0" + code-point-at@^1.0.0: version "1.1.0" - resolved "https://npm.corp.kuaishou.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" + resolved "https://npm.corp.kuaishou.com/code-point-at/-/code-point-at-1.1.0.tgz" integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= color-convert@^1.9.0: version "1.9.3" - resolved "https://npm.corp.kuaishou.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" + resolved "https://npm.corp.kuaishou.com/color-convert/-/color-convert-1.9.3.tgz" integrity sha1-u3GFBpDh8TZWfeYp0tVHHe2kweg= dependencies: color-name "1.1.3" color-convert@^2.0.1: version "2.0.1" - resolved "https://npm.corp.kuaishou.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + resolved "https://npm.corp.kuaishou.com/color-convert/-/color-convert-2.0.1.tgz" integrity sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM= dependencies: color-name "~1.1.4" color-name@1.1.3: version "1.1.3" - resolved "https://npm.corp.kuaishou.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + resolved "https://npm.corp.kuaishou.com/color-name/-/color-name-1.1.3.tgz" integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= color-name@^1.1.4, color-name@~1.1.4: version "1.1.4" - resolved "https://npm.corp.kuaishou.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + resolved "https://npm.corp.kuaishou.com/color-name/-/color-name-1.1.4.tgz" integrity sha1-wqCah6y95pVD3m9j+jmVyCbFNqI= +color-support@^1.1.3: + version "1.1.3" + resolved "https://npm.corp.kuaishou.com/color-support/-/color-support-1.1.3.tgz" + integrity sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg== + colorette@^2.0.10: version "2.0.19" - resolved "https://npm.corp.kuaishou.com/colorette/-/colorette-2.0.19.tgz#cdf044f47ad41a0f4b56b3a0d5b4e6e1a2d5a798" + resolved "https://npm.corp.kuaishou.com/colorette/-/colorette-2.0.19.tgz" integrity sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ== colour@~0.7.1: version "0.7.1" - resolved "https://npm.corp.kuaishou.com/colour/-/colour-0.7.1.tgz#9cb169917ec5d12c0736d3e8685746df1cadf778" + resolved "https://npm.corp.kuaishou.com/colour/-/colour-0.7.1.tgz" integrity sha1-nLFpkX7F0SwHNtPoaFdG3xyt93g= +columnify@^1.6.0: + version "1.6.0" + resolved "https://npm.corp.kuaishou.com/columnify/-/columnify-1.6.0.tgz" + integrity sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q== + dependencies: + strip-ansi "^6.0.1" + wcwidth "^1.0.0" + combined-stream@^1.0.6, combined-stream@^1.0.8: version "1.0.8" - resolved "https://npm.corp.kuaishou.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" + resolved "https://npm.corp.kuaishou.com/combined-stream/-/combined-stream-1.0.8.tgz" integrity sha1-w9RaizT9cwYxoRCoolIGgrMdWn8= dependencies: delayed-stream "~1.0.0" commander@^2.20.0, commander@^2.20.3: version "2.20.3" - resolved "https://npm.corp.kuaishou.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" + resolved "https://npm.corp.kuaishou.com/commander/-/commander-2.20.3.tgz" integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== commander@^8.3.0: version "8.3.0" - resolved "https://npm.corp.kuaishou.com/commander/-/commander-8.3.0.tgz#4837ea1b2da67b9c616a67afbb0fafee567bca66" + resolved "https://npm.corp.kuaishou.com/commander/-/commander-8.3.0.tgz" integrity sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww== comment-regex@^1.0.0: version "1.0.1" - resolved "https://npm.corp.kuaishou.com/comment-regex/-/comment-regex-1.0.1.tgz#e070d2c4db33231955d0979d27c918fcb6f93565" + resolved "https://npm.corp.kuaishou.com/comment-regex/-/comment-regex-1.0.1.tgz" integrity sha1-4HDSxNszIxlV0JedJ8kY/Lb5NWU= +common-ancestor-path@^1.0.1: + version "1.0.1" + resolved "https://npm.corp.kuaishou.com/common-ancestor-path/-/common-ancestor-path-1.0.1.tgz" + integrity sha1-T30tE5TZG3q99Rhxxi9x6tsBgqc= + component-emitter@^1.2.0, component-emitter@^1.3.0: version "1.3.0" - resolved "https://npm.corp.kuaishou.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0" + resolved "https://npm.corp.kuaishou.com/component-emitter/-/component-emitter-1.3.0.tgz" integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg== compressible@~2.0.16: version "2.0.18" - resolved "https://npm.corp.kuaishou.com/compressible/-/compressible-2.0.18.tgz#af53cca6b070d4c3c0750fbd77286a6d7cc46fba" + resolved "https://npm.corp.kuaishou.com/compressible/-/compressible-2.0.18.tgz" integrity sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg== dependencies: mime-db ">= 1.43.0 < 2" compression@^1.7.4: version "1.7.4" - resolved "https://npm.corp.kuaishou.com/compression/-/compression-1.7.4.tgz#95523eff170ca57c29a0ca41e6fe131f41e5bb8f" + resolved "https://npm.corp.kuaishou.com/compression/-/compression-1.7.4.tgz" integrity sha1-lVI+/xcMpXwpoMpB5v4TH0Hlu48= dependencies: accepts "~1.3.5" @@ -1856,49 +2545,54 @@ compression@^1.7.4: concat-map@0.0.1: version "0.0.1" - resolved "https://npm.corp.kuaishou.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + resolved "https://npm.corp.kuaishou.com/concat-map/-/concat-map-0.0.1.tgz" integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== connect-history-api-fallback@^2.0.0: version "2.0.0" - resolved "https://npm.corp.kuaishou.com/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz#647264845251a0daf25b97ce87834cace0f5f1c8" + resolved "https://npm.corp.kuaishou.com/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz" integrity sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA== +console-control-strings@^1.1.0: + version "1.1.0" + resolved "https://npm.corp.kuaishou.com/console-control-strings/-/console-control-strings-1.1.0.tgz" + integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4= + content-disposition@0.5.4: version "0.5.4" - resolved "https://npm.corp.kuaishou.com/content-disposition/-/content-disposition-0.5.4.tgz#8b82b4efac82512a02bb0b1dcec9d2c5e8eb5bfe" + resolved "https://npm.corp.kuaishou.com/content-disposition/-/content-disposition-0.5.4.tgz" integrity sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ== dependencies: safe-buffer "5.2.1" content-type@~1.0.4: version "1.0.4" - resolved "https://npm.corp.kuaishou.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" + resolved "https://npm.corp.kuaishou.com/content-type/-/content-type-1.0.4.tgz" integrity sha1-4TjMdeBAxyexlm/l5fjJruJW/js= convert-source-map@^1.7.0: version "1.9.0" - resolved "https://npm.corp.kuaishou.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f" + resolved "https://npm.corp.kuaishou.com/convert-source-map/-/convert-source-map-1.9.0.tgz" integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== cookie-signature@1.0.6: version "1.0.6" - resolved "https://npm.corp.kuaishou.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" + resolved "https://npm.corp.kuaishou.com/cookie-signature/-/cookie-signature-1.0.6.tgz" integrity sha1-4wOogrNCzD7oylE6eZmXNNqzriw= cookie@0.5.0: version "0.5.0" - resolved "https://npm.corp.kuaishou.com/cookie/-/cookie-0.5.0.tgz#d1f5d71adec6558c58f389987c366aa47e994f8b" + resolved "https://npm.corp.kuaishou.com/cookie/-/cookie-0.5.0.tgz" integrity sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw== cookiejar@^2.1.0, cookiejar@^2.1.2: version "2.1.3" - resolved "https://npm.corp.kuaishou.com/cookiejar/-/cookiejar-2.1.3.tgz#fc7a6216e408e74414b90230050842dacda75acc" + resolved "https://npm.corp.kuaishou.com/cookiejar/-/cookiejar-2.1.3.tgz" integrity sha1-/HpiFuQI50QUuQIwBQhC2s2nWsw= copy-webpack-plugin@^11.0.0: version "11.0.0" - resolved "https://npm.corp.kuaishou.com/copy-webpack-plugin/-/copy-webpack-plugin-11.0.0.tgz#96d4dbdb5f73d02dd72d0528d1958721ab72e04a" + resolved "https://npm.corp.kuaishou.com/copy-webpack-plugin/-/copy-webpack-plugin-11.0.0.tgz" integrity sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ== dependencies: fast-glob "^3.2.11" @@ -1910,12 +2604,12 @@ copy-webpack-plugin@^11.0.0: core-util-is@~1.0.0: version "1.0.3" - resolved "https://npm.corp.kuaishou.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" + resolved "https://npm.corp.kuaishou.com/core-util-is/-/core-util-is-1.0.3.tgz" integrity sha1-pgQtNjTCsn6TKPg3uWX6yDgI24U= cosmiconfig@^7.0.0: version "7.0.1" - resolved "https://npm.corp.kuaishou.com/cosmiconfig/-/cosmiconfig-7.0.1.tgz#714d756522cace867867ccb4474c5d01bbae5d6d" + resolved "https://npm.corp.kuaishou.com/cosmiconfig/-/cosmiconfig-7.0.1.tgz" integrity sha1-cU11ZSLKzoZ4Z8y0R0xdAbuuXW0= dependencies: "@types/parse-json" "^4.0.0" @@ -1926,7 +2620,7 @@ cosmiconfig@^7.0.0: cross-spawn@^7.0.3: version "7.0.3" - resolved "https://npm.corp.kuaishou.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" + resolved "https://npm.corp.kuaishou.com/cross-spawn/-/cross-spawn-7.0.3.tgz" integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== dependencies: path-key "^3.1.0" @@ -1935,12 +2629,12 @@ cross-spawn@^7.0.3: crypt@0.0.2: version "0.0.2" - resolved "https://npm.corp.kuaishou.com/crypt/-/crypt-0.0.2.tgz#88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b" + resolved "https://npm.corp.kuaishou.com/crypt/-/crypt-0.0.2.tgz" integrity sha1-iNf/fsDfuG9xPch7u0LQRNPmxBs= css-loader@^6.7.1: version "6.7.1" - resolved "https://npm.corp.kuaishou.com/css-loader/-/css-loader-6.7.1.tgz#e98106f154f6e1baf3fc3bc455cb9981c1d5fd2e" + resolved "https://npm.corp.kuaishou.com/css-loader/-/css-loader-6.7.1.tgz" integrity sha512-yB5CNFa14MbPJcomwNh3wLThtkZgcNyI2bNMRt8iE5Z8Vwl7f8vQXFAzn2HDOJvtDq2NTZBUGMSUNNyrv3/+cw== dependencies: icss-utils "^5.1.0" @@ -1954,7 +2648,7 @@ css-loader@^6.7.1: css-select@^4.1.3: version "4.3.0" - resolved "https://npm.corp.kuaishou.com/css-select/-/css-select-4.3.0.tgz#db7129b2846662fd8628cfc496abb2b59e41529b" + resolved "https://npm.corp.kuaishou.com/css-select/-/css-select-4.3.0.tgz" integrity sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ== dependencies: boolbase "^1.0.0" @@ -1965,7 +2659,7 @@ css-select@^4.1.3: css-tree@~2.2.0: version "2.2.1" - resolved "https://npm.corp.kuaishou.com/css-tree/-/css-tree-2.2.1.tgz#36115d382d60afd271e377f9c5f67d02bd48c032" + resolved "https://npm.corp.kuaishou.com/css-tree/-/css-tree-2.2.1.tgz" integrity sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA== dependencies: mdn-data "2.0.28" @@ -1973,159 +2667,182 @@ css-tree@~2.2.0: css-what@^6.0.1: version "6.1.0" - resolved "https://npm.corp.kuaishou.com/css-what/-/css-what-6.1.0.tgz#fb5effcf76f1ddea2c81bdfaa4de44e79bac70f4" + resolved "https://npm.corp.kuaishou.com/css-what/-/css-what-6.1.0.tgz" integrity sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw== cssesc@^3.0.0: version "3.0.0" - resolved "https://npm.corp.kuaishou.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" + resolved "https://npm.corp.kuaishou.com/cssesc/-/cssesc-3.0.0.tgz" integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== cssfilter@0.0.10: version "0.0.10" - resolved "https://npm.corp.kuaishou.com/cssfilter/-/cssfilter-0.0.10.tgz#c6d2672632a2e5c83e013e6864a42ce8defd20ae" + resolved "https://npm.corp.kuaishou.com/cssfilter/-/cssfilter-0.0.10.tgz" integrity sha1-xtJnJjKi5cg+AT5oZKQs6N79IK4= csso@^5.0.5: version "5.0.5" - resolved "https://npm.corp.kuaishou.com/csso/-/csso-5.0.5.tgz#f9b7fe6cc6ac0b7d90781bb16d5e9874303e2ca6" + resolved "https://npm.corp.kuaishou.com/csso/-/csso-5.0.5.tgz" integrity sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ== dependencies: css-tree "~2.2.0" csstype@^2.6.8: version "2.6.21" - resolved "https://npm.corp.kuaishou.com/csstype/-/csstype-2.6.21.tgz#2efb85b7cc55c80017c66a5ad7cbd931fda3a90e" + resolved "https://npm.corp.kuaishou.com/csstype/-/csstype-2.6.21.tgz" integrity sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w== debug@2.6.9: version "2.6.9" - resolved "https://npm.corp.kuaishou.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" + resolved "https://npm.corp.kuaishou.com/debug/-/debug-2.6.9.tgz" integrity sha1-XRKFFd8TT/Mn6QpMk/Tgd6U2NB8= dependencies: ms "2.0.0" +debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.3, debug@^4.3.4: + version "4.3.4" + resolved "https://npm.corp.kuaishou.com/debug/-/debug-4.3.4.tgz" + integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== + dependencies: + ms "2.1.2" + debug@^3.1.0: version "3.2.7" - resolved "https://npm.corp.kuaishou.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" + resolved "https://npm.corp.kuaishou.com/debug/-/debug-3.2.7.tgz" integrity sha1-clgLfpFF+zm2Z2+cXl+xALk0F5o= dependencies: ms "^2.1.1" -debug@^4.1.0, debug@^4.1.1, debug@^4.3.4: - version "4.3.4" - resolved "https://npm.corp.kuaishou.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" - integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== - dependencies: - ms "2.1.2" +debuglog@^1.0.1: + version "1.0.1" + resolved "https://npm.corp.kuaishou.com/debuglog/-/debuglog-1.0.1.tgz" + integrity sha1-qiT/uaw9+aI1GDfPstJ5NgzXhJI= decamelize@^1.1.1: version "1.2.0" - resolved "https://npm.corp.kuaishou.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" + resolved "https://npm.corp.kuaishou.com/decamelize/-/decamelize-1.2.0.tgz" integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA== deepmerge@^1.5.2: version "1.5.2" - resolved "https://npm.corp.kuaishou.com/deepmerge/-/deepmerge-1.5.2.tgz#10499d868844cdad4fee0842df8c7f6f0c95a753" + resolved "https://npm.corp.kuaishou.com/deepmerge/-/deepmerge-1.5.2.tgz" integrity sha512-95k0GDqvBjZavkuvzx/YqVLv/6YYa17fz6ILMSf7neqQITCPbnfEnQvEgMPNjH4kgobe7+WIL0yJEHku+H3qtQ== default-gateway@^6.0.3: version "6.0.3" - resolved "https://npm.corp.kuaishou.com/default-gateway/-/default-gateway-6.0.3.tgz#819494c888053bdb743edbf343d6cdf7f2943a71" + resolved "https://npm.corp.kuaishou.com/default-gateway/-/default-gateway-6.0.3.tgz" integrity sha1-gZSUyIgFO9t0PtvzQ9bN9/KUOnE= dependencies: execa "^5.0.0" defaults@^1.0.3: version "1.0.4" - resolved "https://npm.corp.kuaishou.com/defaults/-/defaults-1.0.4.tgz#b0b02062c1e2aa62ff5d9528f0f98baa90978d7a" + resolved "https://npm.corp.kuaishou.com/defaults/-/defaults-1.0.4.tgz" integrity sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A== dependencies: clone "^1.0.2" define-lazy-prop@^2.0.0: version "2.0.0" - resolved "https://npm.corp.kuaishou.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz#3f7ae421129bcaaac9bc74905c98a0009ec9ee7f" + resolved "https://npm.corp.kuaishou.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz" integrity sha1-P3rkIRKbyqrJvHSQXJigAJ7J7n8= defined@^1.0.0: version "1.0.1" - resolved "https://npm.corp.kuaishou.com/defined/-/defined-1.0.1.tgz#c0b9db27bfaffd95d6f61399419b893df0f91ebf" + resolved "https://npm.corp.kuaishou.com/defined/-/defined-1.0.1.tgz" integrity sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q== delayed-stream@~1.0.0: version "1.0.0" - resolved "https://npm.corp.kuaishou.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" + resolved "https://npm.corp.kuaishou.com/delayed-stream/-/delayed-stream-1.0.0.tgz" integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= +delegates@^1.0.0: + version "1.0.0" + resolved "https://npm.corp.kuaishou.com/delegates/-/delegates-1.0.0.tgz" + integrity sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ== + depd@2.0.0: version "2.0.0" - resolved "https://npm.corp.kuaishou.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" + resolved "https://npm.corp.kuaishou.com/depd/-/depd-2.0.0.tgz" integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== -depd@~1.1.2: +depd@^1.1.2, depd@~1.1.2: version "1.1.2" - resolved "https://npm.corp.kuaishou.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" + resolved "https://npm.corp.kuaishou.com/depd/-/depd-1.1.2.tgz" integrity sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ== destroy@1.2.0: version "1.2.0" - resolved "https://npm.corp.kuaishou.com/destroy/-/destroy-1.2.0.tgz#4803735509ad8be552934c67df614f94e66fa015" + resolved "https://npm.corp.kuaishou.com/destroy/-/destroy-1.2.0.tgz" integrity sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg== detect-node@^2.0.4: version "2.1.0" - resolved "https://npm.corp.kuaishou.com/detect-node/-/detect-node-2.1.0.tgz#c9c70775a49c3d03bc2c06d9a73be550f978f8b1" + resolved "https://npm.corp.kuaishou.com/detect-node/-/detect-node-2.1.0.tgz" integrity sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g== detective@^5.2.1: version "5.2.1" - resolved "https://npm.corp.kuaishou.com/detective/-/detective-5.2.1.tgz#6af01eeda11015acb0e73f933242b70f24f91034" + resolved "https://npm.corp.kuaishou.com/detective/-/detective-5.2.1.tgz" integrity sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw== dependencies: acorn-node "^1.8.2" defined "^1.0.0" minimist "^1.2.6" +dezalgo@^1.0.0: + version "1.0.4" + resolved "https://npm.corp.kuaishou.com/dezalgo/-/dezalgo-1.0.4.tgz" + integrity sha512-rXSP0bf+5n0Qonsb+SVVfNfIsimO4HEtmnIpPHY8Q1UCzKlQrDMfdobr8nJOOsRgWCyMRqeSBQzmWUMq7zvVig== + dependencies: + asap "^2.0.0" + wrappy "1" + didyoumean@^1.2.2: version "1.2.2" - resolved "https://npm.corp.kuaishou.com/didyoumean/-/didyoumean-1.2.2.tgz#989346ffe9e839b4555ecf5666edea0d3e8ad037" + resolved "https://npm.corp.kuaishou.com/didyoumean/-/didyoumean-1.2.2.tgz" integrity sha1-mJNG/+noObRVXs9WZu3qDT6K0Dc= +diff@^5.1.0: + version "5.1.0" + resolved "https://npm.corp.kuaishou.com/diff/-/diff-5.1.0.tgz" + integrity sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw== + dir-glob@^3.0.1: version "3.0.1" - resolved "https://npm.corp.kuaishou.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" + resolved "https://npm.corp.kuaishou.com/dir-glob/-/dir-glob-3.0.1.tgz" integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== dependencies: path-type "^4.0.0" dlv@^1.1.3: version "1.1.3" - resolved "https://npm.corp.kuaishou.com/dlv/-/dlv-1.1.3.tgz#5c198a8a11453596e751494d49874bc7732f2e79" + resolved "https://npm.corp.kuaishou.com/dlv/-/dlv-1.1.3.tgz" integrity sha1-XBmKihFFNZbnUUlNSYdLx3MvLnk= dns-equal@^1.0.0: version "1.0.0" - resolved "https://npm.corp.kuaishou.com/dns-equal/-/dns-equal-1.0.0.tgz#b39e7f1da6eb0a75ba9c17324b34753c47e0654d" + resolved "https://npm.corp.kuaishou.com/dns-equal/-/dns-equal-1.0.0.tgz" integrity sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg== dns-packet@^5.2.2: version "5.4.0" - resolved "https://npm.corp.kuaishou.com/dns-packet/-/dns-packet-5.4.0.tgz#1f88477cf9f27e78a213fb6d118ae38e759a879b" + resolved "https://npm.corp.kuaishou.com/dns-packet/-/dns-packet-5.4.0.tgz" integrity sha512-EgqGeaBB8hLiHLZtp/IbaDQTL8pZ0+IvwzSHA6d7VyMDM+B9hgddEMa9xjK5oYnw0ci0JQ6g2XCD7/f6cafU6g== dependencies: "@leichtgewicht/ip-codec" "^2.0.1" dom-converter@^0.2.0: version "0.2.0" - resolved "https://npm.corp.kuaishou.com/dom-converter/-/dom-converter-0.2.0.tgz#6721a9daee2e293682955b6afe416771627bb768" + resolved "https://npm.corp.kuaishou.com/dom-converter/-/dom-converter-0.2.0.tgz" integrity sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA== dependencies: utila "~0.4" dom-serializer@^1.0.1: version "1.4.1" - resolved "https://npm.corp.kuaishou.com/dom-serializer/-/dom-serializer-1.4.1.tgz#de5d41b1aea290215dc45a6dae8adcf1d32e2d30" + resolved "https://npm.corp.kuaishou.com/dom-serializer/-/dom-serializer-1.4.1.tgz" integrity sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag== dependencies: domelementtype "^2.0.1" @@ -2134,19 +2851,19 @@ dom-serializer@^1.0.1: domelementtype@^2.0.1, domelementtype@^2.2.0: version "2.3.0" - resolved "https://npm.corp.kuaishou.com/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d" + resolved "https://npm.corp.kuaishou.com/domelementtype/-/domelementtype-2.3.0.tgz" integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw== domhandler@^4.0.0, domhandler@^4.2.0, domhandler@^4.3.1: version "4.3.1" - resolved "https://npm.corp.kuaishou.com/domhandler/-/domhandler-4.3.1.tgz#8d792033416f59d68bc03a5aa7b018c1ca89279c" + resolved "https://npm.corp.kuaishou.com/domhandler/-/domhandler-4.3.1.tgz" integrity sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ== dependencies: domelementtype "^2.2.0" domutils@^2.5.2, domutils@^2.8.0: version "2.8.0" - resolved "https://npm.corp.kuaishou.com/domutils/-/domutils-2.8.0.tgz#4437def5db6e2d1f5d6ee859bd95ca7d02048135" + resolved "https://npm.corp.kuaishou.com/domutils/-/domutils-2.8.0.tgz" integrity sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A== dependencies: dom-serializer "^1.0.1" @@ -2155,7 +2872,7 @@ domutils@^2.5.2, domutils@^2.8.0: dot-case@^3.0.4: version "3.0.4" - resolved "https://npm.corp.kuaishou.com/dot-case/-/dot-case-3.0.4.tgz#9b2b670d00a431667a8a75ba29cd1b98809ce751" + resolved "https://npm.corp.kuaishou.com/dot-case/-/dot-case-3.0.4.tgz" integrity sha1-mytnDQCkMWZ6inW6Kc0bmICc51E= dependencies: no-case "^3.0.4" @@ -2163,32 +2880,59 @@ dot-case@^3.0.4: ee-first@1.1.1: version "1.1.1" - resolved "https://npm.corp.kuaishou.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" + resolved "https://npm.corp.kuaishou.com/ee-first/-/ee-first-1.1.1.tgz" integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0= electron-to-chromium@^1.4.251: version "1.4.284" - resolved "https://npm.corp.kuaishou.com/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz#61046d1e4cab3a25238f6bf7413795270f125592" + resolved "https://npm.corp.kuaishou.com/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz" integrity sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA== element-closest@^3.0.2: version "3.0.2" - resolved "https://npm.corp.kuaishou.com/element-closest/-/element-closest-3.0.2.tgz#3814a69a84f30e48e63eaf57341f4dbf4227d2aa" + resolved "https://npm.corp.kuaishou.com/element-closest/-/element-closest-3.0.2.tgz" integrity sha1-OBSmmoTzDkjmPq9XNB9Nv0In0qo= +emmet-monaco-es@^5.1.0: + version "5.1.2" + resolved "https://npm.corp.kuaishou.com/emmet-monaco-es/-/emmet-monaco-es-5.1.2.tgz" + integrity sha512-P+GwbRfzCAN9socNCLj7hdlmjV1J535wYZX9uoXERRGbbfkzcmfz4i43ClDecqCVt6IsbP0RK8AgX370ClMcJA== + dependencies: + emmet "^2.3.6" + +emmet@^2.3.6: + version "2.3.6" + resolved "https://npm.corp.kuaishou.com/emmet/-/emmet-2.3.6.tgz" + integrity sha512-pLS4PBPDdxuUAmw7Me7+TcHbykTsBKN/S9XJbUOMFQrNv9MoshzyMFK/R57JBm94/6HSL4vHnDeEmxlC82NQ4A== + dependencies: + "@emmetio/abbreviation" "^2.2.3" + "@emmetio/css-abbreviation" "^2.1.4" + +emoji-regex@^8.0.0: + version "8.0.0" + resolved "https://npm.corp.kuaishou.com/emoji-regex/-/emoji-regex-8.0.0.tgz" + integrity sha1-6Bj9ac5cz8tARZT4QpY79TFkzDc= + emojis-list@^3.0.0: version "3.0.0" - resolved "https://npm.corp.kuaishou.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78" + resolved "https://npm.corp.kuaishou.com/emojis-list/-/emojis-list-3.0.0.tgz" integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q== encodeurl@~1.0.2: version "1.0.2" - resolved "https://npm.corp.kuaishou.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" + resolved "https://npm.corp.kuaishou.com/encodeurl/-/encodeurl-1.0.2.tgz" integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w== +encoding@^0.1.13: + version "0.1.13" + resolved "https://npm.corp.kuaishou.com/encoding/-/encoding-0.1.13.tgz" + integrity sha1-VldK/deR9UqOmyeFwFgqLSYhD6k= + dependencies: + iconv-lite "^0.6.2" + enhanced-resolve@^5.10.0, enhanced-resolve@^5.8.3: version "5.10.0" - resolved "https://npm.corp.kuaishou.com/enhanced-resolve/-/enhanced-resolve-5.10.0.tgz#0dc579c3bb2a1032e357ac45b8f3a6f3ad4fb1e6" + resolved "https://npm.corp.kuaishou.com/enhanced-resolve/-/enhanced-resolve-5.10.0.tgz" integrity sha512-T0yTFjdpldGY8PmuXXR0PyQ1ufZpEGiHVrp7zHKB7jdR4qlmZHhONVM5AQOAWXuF/w3dnHbEQVrNptJgt7F+cQ== dependencies: graceful-fs "^4.2.4" @@ -2196,34 +2940,49 @@ enhanced-resolve@^5.10.0, enhanced-resolve@^5.8.3: entities@^2.0.0: version "2.2.0" - resolved "https://npm.corp.kuaishou.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55" + resolved "https://npm.corp.kuaishou.com/entities/-/entities-2.2.0.tgz" integrity sha1-CY3JDruD2N/6CJ1VJWs1HTTE2lU= +entities@~2.1.0: + version "2.1.0" + resolved "https://npm.corp.kuaishou.com/entities/-/entities-2.1.0.tgz" + integrity sha1-mS0xKc999ocLlsV4WMJJoSD4uLU= + entities@~3.0.1: version "3.0.1" - resolved "https://npm.corp.kuaishou.com/entities/-/entities-3.0.1.tgz#2b887ca62585e96db3903482d336c1006c3001d4" + resolved "https://npm.corp.kuaishou.com/entities/-/entities-3.0.1.tgz" integrity sha1-K4h8piWF6W2zkDSC0zbBAGwwAdQ= +env-paths@^2.2.0: + version "2.2.1" + resolved "https://npm.corp.kuaishou.com/env-paths/-/env-paths-2.2.1.tgz" + integrity sha1-QgOZ1BbOH76bwKB8Yvpo1n/Q+PI= + envinfo@^7.8.1: version "7.8.1" - resolved "https://npm.corp.kuaishou.com/envinfo/-/envinfo-7.8.1.tgz#06377e3e5f4d379fea7ac592d5ad8927e0c4d475" + resolved "https://npm.corp.kuaishou.com/envinfo/-/envinfo-7.8.1.tgz" integrity sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw== +err-code@^2.0.2: + version "2.0.3" + resolved "https://npm.corp.kuaishou.com/err-code/-/err-code-2.0.3.tgz" + integrity sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA== + error-ex@^1.3.1: version "1.3.2" - resolved "https://npm.corp.kuaishou.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" + resolved "https://npm.corp.kuaishou.com/error-ex/-/error-ex-1.3.2.tgz" integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== dependencies: is-arrayish "^0.2.1" es-module-lexer@^0.9.0: version "0.9.3" - resolved "https://npm.corp.kuaishou.com/es-module-lexer/-/es-module-lexer-0.9.3.tgz#6f13db00cc38417137daf74366f535c8eb438f19" + resolved "https://npm.corp.kuaishou.com/es-module-lexer/-/es-module-lexer-0.9.3.tgz" integrity sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ== es6-promise@4.2.3: version "4.2.3" - resolved "https://npm.corp.kuaishou.com/es6-promise/-/es6-promise-4.2.3.tgz#29454b8db21b73fbef1df070c35dc09b7fd606c4" + resolved "https://npm.corp.kuaishou.com/es6-promise/-/es6-promise-4.2.3.tgz" integrity sha1-KUVLjbIbc/vvHfBww13Am3/WBsQ= esbuild-android-64@0.14.54: @@ -2248,12 +3007,12 @@ esbuild-android-arm64@0.15.13: esbuild-darwin-64@0.14.54: version "0.14.54" - resolved "https://npm.corp.kuaishou.com/esbuild-darwin-64/-/esbuild-darwin-64-0.14.54.tgz#24ba67b9a8cb890a3c08d9018f887cc221cdda25" + resolved "https://npm.corp.kuaishou.com/esbuild-darwin-64/-/esbuild-darwin-64-0.14.54.tgz" integrity sha512-jtdKWV3nBviOd5v4hOpkVmpxsBy90CGzebpbO9beiqUYVMBtSc0AL9zGftFuBon7PNDcdvNCEuQqw2x0wP9yug== esbuild-darwin-64@0.15.13: version "0.15.13" - resolved "https://npm.corp.kuaishou.com/esbuild-darwin-64/-/esbuild-darwin-64-0.15.13.tgz#99ae7fdaa43947b06cd9d1a1c3c2c9f245d81fd0" + resolved "https://npm.corp.kuaishou.com/esbuild-darwin-64/-/esbuild-darwin-64-0.15.13.tgz" integrity sha512-WAx7c2DaOS6CrRcoYCgXgkXDliLnFv3pQLV6GeW1YcGEZq2Gnl8s9Pg7ahValZkpOa0iE/ojRVQ87sbUhF1Cbg== esbuild-darwin-arm64@0.14.54: @@ -2368,7 +3127,7 @@ esbuild-linux-s390x@0.15.13: esbuild-loader@~2.19.0: version "2.19.0" - resolved "https://npm.corp.kuaishou.com/esbuild-loader/-/esbuild-loader-2.19.0.tgz#54f62d1da8262acfc3c5883c24da35af8324f116" + resolved "https://npm.corp.kuaishou.com/esbuild-loader/-/esbuild-loader-2.19.0.tgz" integrity sha512-urGNVE6Tl2rqx92ElKi/LiExXjGvcH6HfDBFzJ9Ppwqh4n6Jmx8x7RKAyMzSM78b6CAaJLhDncG5sPrL0ROh5Q== dependencies: esbuild "^0.14.39" @@ -2440,7 +3199,7 @@ esbuild-windows-arm64@0.15.13: esbuild@^0.14.39, esbuild@^0.14.47: version "0.14.54" - resolved "https://npm.corp.kuaishou.com/esbuild/-/esbuild-0.14.54.tgz#8b44dcf2b0f1a66fc22459943dccf477535e9aa2" + resolved "https://npm.corp.kuaishou.com/esbuild/-/esbuild-0.14.54.tgz" integrity sha512-Cy9llcy8DvET5uznocPyqL3BFRrFXSVqbgpMJ9Wz8oVjZlh/zUSNbPRbov0VX7VxN2JH1Oa0uNxZ7eLRb62pJA== optionalDependencies: "@esbuild/linux-loong64" "0.14.54" @@ -2467,7 +3226,7 @@ esbuild@^0.14.39, esbuild@^0.14.47: esbuild@^0.15.5: version "0.15.13" - resolved "https://npm.corp.kuaishou.com/esbuild/-/esbuild-0.15.13.tgz#7293480038feb2bafa91d3f6a20edab3ba6c108a" + resolved "https://npm.corp.kuaishou.com/esbuild/-/esbuild-0.15.13.tgz" integrity sha512-Cu3SC84oyzzhrK/YyN4iEVy2jZu5t2fz66HEOShHURcjSkOSAVL8C/gfUT+lDJxkVHpg8GZ10DD0rMHRPqMFaQ== optionalDependencies: "@esbuild/android-arm" "0.15.13" @@ -2495,22 +3254,22 @@ esbuild@^0.15.5: escalade@^3.1.1: version "3.1.1" - resolved "https://npm.corp.kuaishou.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" + resolved "https://npm.corp.kuaishou.com/escalade/-/escalade-3.1.1.tgz" integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== escape-html@~1.0.3: version "1.0.3" - resolved "https://npm.corp.kuaishou.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" + resolved "https://npm.corp.kuaishou.com/escape-html/-/escape-html-1.0.3.tgz" integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow== escape-string-regexp@^1.0.5: version "1.0.5" - resolved "https://npm.corp.kuaishou.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + resolved "https://npm.corp.kuaishou.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz" integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== eslint-scope@5.1.1: version "5.1.1" - resolved "https://npm.corp.kuaishou.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" + resolved "https://npm.corp.kuaishou.com/eslint-scope/-/eslint-scope-5.1.1.tgz" integrity sha1-54blmmbLkrP2wfsNUIqrF0hI9Iw= dependencies: esrecurse "^4.3.0" @@ -2518,64 +3277,64 @@ eslint-scope@5.1.1: esprima@^4.0.0: version "4.0.1" - resolved "https://npm.corp.kuaishou.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" + resolved "https://npm.corp.kuaishou.com/esprima/-/esprima-4.0.1.tgz" integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== esrecurse@^4.3.0: version "4.3.0" - resolved "https://npm.corp.kuaishou.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" + resolved "https://npm.corp.kuaishou.com/esrecurse/-/esrecurse-4.3.0.tgz" integrity sha1-eteWTWeauyi+5yzsY3WLHF0smSE= dependencies: estraverse "^5.2.0" estraverse@^4.1.1: version "4.3.0" - resolved "https://npm.corp.kuaishou.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" + resolved "https://npm.corp.kuaishou.com/estraverse/-/estraverse-4.3.0.tgz" integrity sha1-OYrT88WiSUi+dyXoPRGn3ijNvR0= estraverse@^5.2.0: version "5.3.0" - resolved "https://npm.corp.kuaishou.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" + resolved "https://npm.corp.kuaishou.com/estraverse/-/estraverse-5.3.0.tgz" integrity sha1-LupSkHAvJquP5TcDcP+GyWXSESM= estree-walker@^2.0.2: version "2.0.2" - resolved "https://npm.corp.kuaishou.com/estree-walker/-/estree-walker-2.0.2.tgz#52f010178c2a4c117a7757cfe942adb7d2da4cac" + resolved "https://npm.corp.kuaishou.com/estree-walker/-/estree-walker-2.0.2.tgz" integrity sha1-UvAQF4wqTBF6d1fP6UKtt9LaTKw= etag@~1.8.1: version "1.8.1" - resolved "https://npm.corp.kuaishou.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" + resolved "https://npm.corp.kuaishou.com/etag/-/etag-1.8.1.tgz" integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc= event-target-shim@^5.0.1: version "5.0.1" - resolved "https://npm.corp.kuaishou.com/event-target-shim/-/event-target-shim-5.0.1.tgz#5d4d3ebdf9583d63a5333ce2deb7480ab2b05789" + resolved "https://npm.corp.kuaishou.com/event-target-shim/-/event-target-shim-5.0.1.tgz" integrity sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ== eventemitter3@^2.0.3: version "2.0.3" - resolved "https://npm.corp.kuaishou.com/eventemitter3/-/eventemitter3-2.0.3.tgz#b5e1079b59fb5e1ba2771c0a993be060a58c99ba" + resolved "https://npm.corp.kuaishou.com/eventemitter3/-/eventemitter3-2.0.3.tgz" integrity sha512-jLN68Dx5kyFHaePoXWPsCGW5qdyZQtLYHkxkg02/Mz6g0kYpDx4FyP6XfArhQdlOC4b8Mv+EMxPo/8La7Tzghg== eventemitter3@^3.0.0: version "3.1.2" - resolved "https://npm.corp.kuaishou.com/eventemitter3/-/eventemitter3-3.1.2.tgz#2d3d48f9c346698fce83a85d7d664e98535df6e7" + resolved "https://npm.corp.kuaishou.com/eventemitter3/-/eventemitter3-3.1.2.tgz" integrity sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q== eventemitter3@^4.0.0: version "4.0.7" - resolved "https://npm.corp.kuaishou.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f" + resolved "https://npm.corp.kuaishou.com/eventemitter3/-/eventemitter3-4.0.7.tgz" integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== events@^3.2.0: version "3.3.0" - resolved "https://npm.corp.kuaishou.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400" + resolved "https://npm.corp.kuaishou.com/events/-/events-3.3.0.tgz" integrity sha1-Mala0Kkk4tLEGagTrrLE6HjqdAA= execa@^5.0.0: version "5.1.1" - resolved "https://npm.corp.kuaishou.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" + resolved "https://npm.corp.kuaishou.com/execa/-/execa-5.1.1.tgz" integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== dependencies: cross-spawn "^7.0.3" @@ -2590,7 +3349,7 @@ execa@^5.0.0: execa@^6.1.0: version "6.1.0" - resolved "https://npm.corp.kuaishou.com/execa/-/execa-6.1.0.tgz#cea16dee211ff011246556388effa0818394fb20" + resolved "https://npm.corp.kuaishou.com/execa/-/execa-6.1.0.tgz" integrity sha512-QVWlX2e50heYJcCPG0iWtf8r0xjEYfz/OYLGDYH+IyjWezzPNxz63qNFOu0l4YftGWuizFVZHHs8PrLU5p2IDA== dependencies: cross-spawn "^7.0.3" @@ -2605,7 +3364,7 @@ execa@^6.1.0: express@^4.17.3, express@^4.18.1: version "4.18.2" - resolved "https://npm.corp.kuaishou.com/express/-/express-4.18.2.tgz#3fabe08296e930c796c19e3c516979386ba9fd59" + resolved "https://npm.corp.kuaishou.com/express/-/express-4.18.2.tgz" integrity sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ== dependencies: accepts "~1.3.8" @@ -2642,24 +3401,24 @@ express@^4.17.3, express@^4.18.1: extend-shallow@^2.0.1: version "2.0.1" - resolved "https://npm.corp.kuaishou.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" + resolved "https://npm.corp.kuaishou.com/extend-shallow/-/extend-shallow-2.0.1.tgz" integrity sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug== dependencies: is-extendable "^0.1.0" extend@^3.0.0: version "3.0.2" - resolved "https://npm.corp.kuaishou.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" + resolved "https://npm.corp.kuaishou.com/extend/-/extend-3.0.2.tgz" integrity sha1-+LETa0Bx+9jrFAr/hYsQGewpFfo= fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: version "3.1.3" - resolved "https://npm.corp.kuaishou.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" + resolved "https://npm.corp.kuaishou.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz" integrity sha1-On1WtVnWy8PrUSMlJE5hmmXGxSU= -fast-glob@^3.2.11: +fast-glob@^3.2.11, fast-glob@^3.2.9: version "3.2.12" - resolved "https://npm.corp.kuaishou.com/fast-glob/-/fast-glob-3.2.12.tgz#7f39ec99c2e6ab030337142da9e0c18f37afae80" + resolved "https://npm.corp.kuaishou.com/fast-glob/-/fast-glob-3.2.12.tgz" integrity sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w== dependencies: "@nodelib/fs.stat" "^2.0.2" @@ -2670,38 +3429,43 @@ fast-glob@^3.2.11: fast-json-stable-stringify@^2.0.0: version "2.1.0" - resolved "https://npm.corp.kuaishou.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" + resolved "https://npm.corp.kuaishou.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz" integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== fast-safe-stringify@^2.0.7: version "2.1.1" - resolved "https://npm.corp.kuaishou.com/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz#c406a83b6e70d9e35ce3b30a81141df30aeba884" + resolved "https://npm.corp.kuaishou.com/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz" integrity sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA== +fastest-levenshtein@^1.0.12: + version "1.0.16" + resolved "https://npm.corp.kuaishou.com/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz#210e61b6ff181de91ea9b3d1b84fdedd47e034e5" + integrity sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg== + fastq@^1.6.0: version "1.13.0" - resolved "https://npm.corp.kuaishou.com/fastq/-/fastq-1.13.0.tgz#616760f88a7526bdfc596b7cab8c18938c36b98c" + resolved "https://npm.corp.kuaishou.com/fastq/-/fastq-1.13.0.tgz" integrity sha1-YWdg+Ip1Jr38WWt8q4wYk4w2uYw= dependencies: reusify "^1.0.4" faye-websocket@^0.11.3: version "0.11.4" - resolved "https://npm.corp.kuaishou.com/faye-websocket/-/faye-websocket-0.11.4.tgz#7f0d9275cfdd86a1c963dc8b65fcc451edcbb1da" + resolved "https://npm.corp.kuaishou.com/faye-websocket/-/faye-websocket-0.11.4.tgz" integrity sha1-fw2Sdc/dhqHJY9yLZfzEUe3Lsdo= dependencies: websocket-driver ">=0.5.1" fill-range@^7.0.1: version "7.0.1" - resolved "https://npm.corp.kuaishou.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" + resolved "https://npm.corp.kuaishou.com/fill-range/-/fill-range-7.0.1.tgz" integrity sha1-GRmmp8df44ssfHflGYU12prN2kA= dependencies: to-regex-range "^5.0.1" finalhandler@1.2.0: version "1.2.0" - resolved "https://npm.corp.kuaishou.com/finalhandler/-/finalhandler-1.2.0.tgz#7d23fe5731b207b4640e4fcd00aec1f9207a7b32" + resolved "https://npm.corp.kuaishou.com/finalhandler/-/finalhandler-1.2.0.tgz" integrity sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg== dependencies: debug "2.6.9" @@ -2714,12 +3478,12 @@ finalhandler@1.2.0: follow-redirects@^1.0.0: version "1.15.2" - resolved "https://npm.corp.kuaishou.com/follow-redirects/-/follow-redirects-1.15.2.tgz#b460864144ba63f2681096f274c4e57026da2c13" + resolved "https://npm.corp.kuaishou.com/follow-redirects/-/follow-redirects-1.15.2.tgz" integrity sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA== form-data@^2.3.1: version "2.5.1" - resolved "https://npm.corp.kuaishou.com/form-data/-/form-data-2.5.1.tgz#f2cbec57b5e59e23716e128fe44d4e5dd23895f4" + resolved "https://npm.corp.kuaishou.com/form-data/-/form-data-2.5.1.tgz" integrity sha512-m21N3WOmEEURgk6B9GLOE4RuWOFf28Lhh9qGYeNlGq4VDXUlJy2th2slBNU8Gp8EzloYZOibZJ7t5ecIrFSjVA== dependencies: asynckit "^0.4.0" @@ -2728,7 +3492,7 @@ form-data@^2.3.1: form-data@^3.0.0: version "3.0.1" - resolved "https://npm.corp.kuaishou.com/form-data/-/form-data-3.0.1.tgz#ebd53791b78356a99af9a300d4282c4d5eb9755f" + resolved "https://npm.corp.kuaishou.com/form-data/-/form-data-3.0.1.tgz" integrity sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg== dependencies: asynckit "^0.4.0" @@ -2737,61 +3501,92 @@ form-data@^3.0.0: formidable@^1.2.0, formidable@^1.2.2: version "1.2.6" - resolved "https://npm.corp.kuaishou.com/formidable/-/formidable-1.2.6.tgz#d2a51d60162bbc9b4a055d8457a7c75315d1a168" + resolved "https://npm.corp.kuaishou.com/formidable/-/formidable-1.2.6.tgz" integrity sha1-0qUdYBYrvJtKBV2EV6fHUxXRoWg= forwarded@0.2.0: version "0.2.0" - resolved "https://npm.corp.kuaishou.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811" + resolved "https://npm.corp.kuaishou.com/forwarded/-/forwarded-0.2.0.tgz" integrity sha1-ImmTZCiq1MFcfr6XeahL8LKoGBE= fraction.js@^4.2.0: version "4.2.0" - resolved "https://npm.corp.kuaishou.com/fraction.js/-/fraction.js-4.2.0.tgz#448e5109a313a3527f5a3ab2119ec4cf0e0e2950" + resolved "https://npm.corp.kuaishou.com/fraction.js/-/fraction.js-4.2.0.tgz" integrity sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA== fresh@0.5.2: version "0.5.2" - resolved "https://npm.corp.kuaishou.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" + resolved "https://npm.corp.kuaishou.com/fresh/-/fresh-0.5.2.tgz" integrity sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q== fs-extra@^10.1.0: version "10.1.0" - resolved "https://npm.corp.kuaishou.com/fs-extra/-/fs-extra-10.1.0.tgz#02873cfbc4084dde127eaa5f9905eef2325d1abf" + resolved "https://npm.corp.kuaishou.com/fs-extra/-/fs-extra-10.1.0.tgz" integrity sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ== dependencies: graceful-fs "^4.2.0" jsonfile "^6.0.1" universalify "^2.0.0" +fs-extra@^9.1.0: + version "9.1.0" + resolved "https://npm.corp.kuaishou.com/fs-extra/-/fs-extra-9.1.0.tgz" + integrity sha1-WVRGDHZKjaIJS6NVS/g55rmnyG0= + dependencies: + at-least-node "^1.0.0" + graceful-fs "^4.2.0" + jsonfile "^6.0.1" + universalify "^2.0.0" + +fs-minipass@^2.0.0, fs-minipass@^2.1.0: + version "2.1.0" + resolved "https://npm.corp.kuaishou.com/fs-minipass/-/fs-minipass-2.1.0.tgz" + integrity sha1-f1A2/b8SxjwWkZDL5BmchSJx+fs= + dependencies: + minipass "^3.0.0" + fs-monkey@^1.0.3: version "1.0.3" - resolved "https://npm.corp.kuaishou.com/fs-monkey/-/fs-monkey-1.0.3.tgz#ae3ac92d53bb328efe0e9a1d9541f6ad8d48e2d3" + resolved "https://npm.corp.kuaishou.com/fs-monkey/-/fs-monkey-1.0.3.tgz" integrity sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q== fs.realpath@^1.0.0: version "1.0.0" - resolved "https://npm.corp.kuaishou.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + resolved "https://npm.corp.kuaishou.com/fs.realpath/-/fs.realpath-1.0.0.tgz" integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= fsevents@~2.3.2: version "2.3.2" - resolved "https://npm.corp.kuaishou.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" + resolved "https://npm.corp.kuaishou.com/fsevents/-/fsevents-2.3.2.tgz" integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== function-bind@^1.1.1: version "1.1.1" - resolved "https://npm.corp.kuaishou.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + resolved "https://npm.corp.kuaishou.com/function-bind/-/function-bind-1.1.1.tgz" integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== +gauge@^4.0.3: + version "4.0.4" + resolved "https://npm.corp.kuaishou.com/gauge/-/gauge-4.0.4.tgz" + integrity sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg== + dependencies: + aproba "^1.0.3 || ^2.0.0" + color-support "^1.1.3" + console-control-strings "^1.1.0" + has-unicode "^2.0.1" + signal-exit "^3.0.7" + string-width "^4.2.3" + strip-ansi "^6.0.1" + wide-align "^1.1.5" + gensync@^1.0.0-beta.2: version "1.0.0-beta.2" - resolved "https://npm.corp.kuaishou.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" + resolved "https://npm.corp.kuaishou.com/gensync/-/gensync-1.0.0-beta.2.tgz" integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== get-intrinsic@^1.0.2: version "1.1.3" - resolved "https://npm.corp.kuaishou.com/get-intrinsic/-/get-intrinsic-1.1.3.tgz#063c84329ad93e83893c7f4f243ef63ffa351385" + resolved "https://npm.corp.kuaishou.com/get-intrinsic/-/get-intrinsic-1.1.3.tgz" integrity sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A== dependencies: function-bind "^1.1.1" @@ -2800,31 +3595,31 @@ get-intrinsic@^1.0.2: get-stream@^6.0.0, get-stream@^6.0.1: version "6.0.1" - resolved "https://npm.corp.kuaishou.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" + resolved "https://npm.corp.kuaishou.com/get-stream/-/get-stream-6.0.1.tgz" integrity sha1-omLY7vZ6ztV8KFKtYWdSakPL97c= glob-parent@^5.1.2, glob-parent@~5.1.2: version "5.1.2" - resolved "https://npm.corp.kuaishou.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" + resolved "https://npm.corp.kuaishou.com/glob-parent/-/glob-parent-5.1.2.tgz" integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== dependencies: is-glob "^4.0.1" glob-parent@^6.0.1, glob-parent@^6.0.2: version "6.0.2" - resolved "https://npm.corp.kuaishou.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" + resolved "https://npm.corp.kuaishou.com/glob-parent/-/glob-parent-6.0.2.tgz" integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== dependencies: is-glob "^4.0.3" glob-to-regexp@^0.4.1: version "0.4.1" - resolved "https://npm.corp.kuaishou.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e" + resolved "https://npm.corp.kuaishou.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz" integrity sha1-x1KXCHyFG5pXi9IX3VmpL1n+VG4= -glob@^7.0.5, glob@^7.1.3: +glob@^7.0.5, glob@^7.1.3, glob@^7.1.4: version "7.2.3" - resolved "https://npm.corp.kuaishou.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" + resolved "https://npm.corp.kuaishou.com/glob/-/glob-7.2.3.tgz" integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== dependencies: fs.realpath "^1.0.0" @@ -2834,14 +3629,37 @@ glob@^7.0.5, glob@^7.1.3: once "^1.3.0" path-is-absolute "^1.0.0" +glob@^8.0.1: + version "8.0.3" + resolved "https://npm.corp.kuaishou.com/glob/-/glob-8.0.3.tgz" + integrity sha512-ull455NHSHI/Y1FqGaaYFaLGkNMMJbavMrEGFXG/PGrg6y7sutWHUHrz6gy6WEBH6akM1M414dWKCNs+IhKdiQ== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^5.0.1" + once "^1.3.0" + globals@^11.1.0: version "11.12.0" - resolved "https://npm.corp.kuaishou.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" + resolved "https://npm.corp.kuaishou.com/globals/-/globals-11.12.0.tgz" integrity sha1-q4eVM4hooLq9hSV1gBjCp+uVxC4= +globby@^11.0.2, globby@^11.0.4: + version "11.1.0" + resolved "https://npm.corp.kuaishou.com/globby/-/globby-11.1.0.tgz" + integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== + dependencies: + array-union "^2.1.0" + dir-glob "^3.0.1" + fast-glob "^3.2.9" + ignore "^5.2.0" + merge2 "^1.4.1" + slash "^3.0.0" + globby@^13.1.1, globby@^13.1.2: version "13.1.2" - resolved "https://npm.corp.kuaishou.com/globby/-/globby-13.1.2.tgz#29047105582427ab6eca4f905200667b056da515" + resolved "https://npm.corp.kuaishou.com/globby/-/globby-13.1.2.tgz" integrity sha512-LKSDZXToac40u8Q1PQtZihbNdTYSNMuWe+K5l+oa6KgDzSvVrHXlJy40hUP522RjAIoNLJYBJi7ow+rbFpIhHQ== dependencies: dir-glob "^3.0.1" @@ -2850,14 +3668,14 @@ globby@^13.1.1, globby@^13.1.2: merge2 "^1.4.1" slash "^4.0.0" -graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.4, graceful-fs@^4.2.6, graceful-fs@^4.2.9: +graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.10, graceful-fs@^4.2.4, graceful-fs@^4.2.6, graceful-fs@^4.2.9: version "4.2.10" - resolved "https://npm.corp.kuaishou.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c" + resolved "https://npm.corp.kuaishou.com/graceful-fs/-/graceful-fs-4.2.10.tgz" integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== -gray-matter@^4.0.3: +gray-matter@^4.0.2, gray-matter@^4.0.3: version "4.0.3" - resolved "https://npm.corp.kuaishou.com/gray-matter/-/gray-matter-4.0.3.tgz#e893c064825de73ea1f5f7d88c7a9f7274288798" + resolved "https://npm.corp.kuaishou.com/gray-matter/-/gray-matter-4.0.3.tgz" integrity sha1-6JPAZIJd5z6h9ffYjHqfcnQoh5g= dependencies: js-yaml "^3.13.1" @@ -2867,56 +3685,73 @@ gray-matter@^4.0.3: hanabi@^0.4.0: version "0.4.0" - resolved "https://npm.corp.kuaishou.com/hanabi/-/hanabi-0.4.0.tgz#ebbb251358c1337db1eabda686c43ff777d30d82" + resolved "https://npm.corp.kuaishou.com/hanabi/-/hanabi-0.4.0.tgz" integrity sha512-ixJH94fwmmVzUSdxl7TMkVZJmsq4d2JKrxedpM5V1V+91iVHL0q6NnJi4xiDahK6Vo00xT17H8H6b4F6RVbsOg== dependencies: comment-regex "^1.0.0" handle-thing@^2.0.0: version "2.0.1" - resolved "https://npm.corp.kuaishou.com/handle-thing/-/handle-thing-2.0.1.tgz#857f79ce359580c340d43081cc648970d0bb234e" + resolved "https://npm.corp.kuaishou.com/handle-thing/-/handle-thing-2.0.1.tgz" integrity sha1-hX95zjWVgMNA1DCBzGSJcNC7I04= has-flag@^3.0.0: version "3.0.0" - resolved "https://npm.corp.kuaishou.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + resolved "https://npm.corp.kuaishou.com/has-flag/-/has-flag-3.0.0.tgz" integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= has-flag@^4.0.0: version "4.0.0" - resolved "https://npm.corp.kuaishou.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" + resolved "https://npm.corp.kuaishou.com/has-flag/-/has-flag-4.0.0.tgz" integrity sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s= has-symbols@^1.0.3: version "1.0.3" - resolved "https://npm.corp.kuaishou.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" + resolved "https://npm.corp.kuaishou.com/has-symbols/-/has-symbols-1.0.3.tgz" integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== +has-unicode@^2.0.1: + version "2.0.1" + resolved "https://npm.corp.kuaishou.com/has-unicode/-/has-unicode-2.0.1.tgz" + integrity sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ== + has@^1.0.3: version "1.0.3" - resolved "https://npm.corp.kuaishou.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" + resolved "https://npm.corp.kuaishou.com/has/-/has-1.0.3.tgz" integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== dependencies: function-bind "^1.1.1" hash-sum@^2.0.0: version "2.0.0" - resolved "https://npm.corp.kuaishou.com/hash-sum/-/hash-sum-2.0.0.tgz#81d01bb5de8ea4a214ad5d6ead1b523460b0b45a" + resolved "https://npm.corp.kuaishou.com/hash-sum/-/hash-sum-2.0.0.tgz" integrity sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg== he@0.5.0: version "0.5.0" - resolved "https://npm.corp.kuaishou.com/he/-/he-0.5.0.tgz#2c05ffaef90b68e860f3fd2b54ef580989277ee2" + resolved "https://npm.corp.kuaishou.com/he/-/he-0.5.0.tgz" integrity sha1-LAX/rvkLaOhg8/0rVO9YCYknfuI= he@^1.2.0: version "1.2.0" - resolved "https://npm.corp.kuaishou.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" + resolved "https://npm.corp.kuaishou.com/he/-/he-1.2.0.tgz" integrity sha1-hK5l+n6vsWX922FWauFLrwVmTw8= +highlight.js@^9.7.0: + version "9.18.5" + resolved "https://npm.corp.kuaishou.com/highlight.js/-/highlight.js-9.18.5.tgz" + integrity sha512-a5bFyofd/BHCX52/8i8uJkjr9DYwXIPnM/plwI6W7ezItLGqzt7X2G2nXuYSfsIJdkwwj/g9DG1LkcGJI/dDoA== + +hosted-git-info@^5.0.0, hosted-git-info@^5.2.1: + version "5.2.1" + resolved "https://npm.corp.kuaishou.com/hosted-git-info/-/hosted-git-info-5.2.1.tgz" + integrity sha512-xIcQYMnhcx2Nr4JTjsFmwwnr9vldugPy9uVm0o87bjqqWMv9GaqsTeT+i99wTl0mk1uLxJtHxLb8kymqTENQsw== + dependencies: + lru-cache "^7.5.1" + hpack.js@^2.1.6: version "2.1.6" - resolved "https://npm.corp.kuaishou.com/hpack.js/-/hpack.js-2.1.6.tgz#87774c0949e513f42e84575b3c45681fade2a0b2" + resolved "https://npm.corp.kuaishou.com/hpack.js/-/hpack.js-2.1.6.tgz" integrity sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ== dependencies: inherits "^2.0.1" @@ -2926,12 +3761,12 @@ hpack.js@^2.1.6: html-entities@^2.3.2: version "2.3.3" - resolved "https://npm.corp.kuaishou.com/html-entities/-/html-entities-2.3.3.tgz#117d7626bece327fc8baace8868fa6f5ef856e46" + resolved "https://npm.corp.kuaishou.com/html-entities/-/html-entities-2.3.3.tgz" integrity sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA== html-minifier-terser@^6.0.2: version "6.1.0" - resolved "https://npm.corp.kuaishou.com/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz#bfc818934cc07918f6b3669f5774ecdfd48f32ab" + resolved "https://npm.corp.kuaishou.com/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz" integrity sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw== dependencies: camel-case "^4.1.2" @@ -2944,7 +3779,7 @@ html-minifier-terser@^6.0.2: html-webpack-plugin@^5.5.0: version "5.5.0" - resolved "https://npm.corp.kuaishou.com/html-webpack-plugin/-/html-webpack-plugin-5.5.0.tgz#c3911936f57681c1f9f4d8b68c158cd9dfe52f50" + resolved "https://npm.corp.kuaishou.com/html-webpack-plugin/-/html-webpack-plugin-5.5.0.tgz" integrity sha1-w5EZNvV2gcH59Ni2jBWM2d/lL1A= dependencies: "@types/html-minifier-terser" "^6.0.0" @@ -2955,7 +3790,7 @@ html-webpack-plugin@^5.5.0: htmlparser2@^6.1.0: version "6.1.0" - resolved "https://npm.corp.kuaishou.com/htmlparser2/-/htmlparser2-6.1.0.tgz#c4d762b6c3371a05dbe65e94ae43a9f845fb8fb7" + resolved "https://npm.corp.kuaishou.com/htmlparser2/-/htmlparser2-6.1.0.tgz" integrity sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A== dependencies: domelementtype "^2.0.1" @@ -2963,14 +3798,19 @@ htmlparser2@^6.1.0: domutils "^2.5.2" entities "^2.0.0" +http-cache-semantics@^4.1.0: + version "4.1.0" + resolved "https://npm.corp.kuaishou.com/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz" + integrity sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ== + http-deceiver@^1.2.7: version "1.2.7" - resolved "https://npm.corp.kuaishou.com/http-deceiver/-/http-deceiver-1.2.7.tgz#fa7168944ab9a519d337cb0bec7284dc3e723d87" + resolved "https://npm.corp.kuaishou.com/http-deceiver/-/http-deceiver-1.2.7.tgz" integrity sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc= http-errors@2.0.0: version "2.0.0" - resolved "https://npm.corp.kuaishou.com/http-errors/-/http-errors-2.0.0.tgz#b7774a1486ef73cf7667ac9ae0858c012c57b9d3" + resolved "https://npm.corp.kuaishou.com/http-errors/-/http-errors-2.0.0.tgz" integrity sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ== dependencies: depd "2.0.0" @@ -2981,7 +3821,7 @@ http-errors@2.0.0: http-errors@~1.6.2: version "1.6.3" - resolved "https://npm.corp.kuaishou.com/http-errors/-/http-errors-1.6.3.tgz#8b55680bb4be283a0b5bf4ea2e38580be1d9320d" + resolved "https://npm.corp.kuaishou.com/http-errors/-/http-errors-1.6.3.tgz" integrity sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0= dependencies: depd "~1.1.2" @@ -2991,12 +3831,32 @@ http-errors@~1.6.2: http-parser-js@>=0.5.1: version "0.5.8" - resolved "https://npm.corp.kuaishou.com/http-parser-js/-/http-parser-js-0.5.8.tgz#af23090d9ac4e24573de6f6aecc9d84a48bf20e3" + resolved "https://npm.corp.kuaishou.com/http-parser-js/-/http-parser-js-0.5.8.tgz" integrity sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q== +http-proxy-agent@^5.0.0: + version "5.0.0" + resolved "https://npm.corp.kuaishou.com/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz" + integrity sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w== + dependencies: + "@tootallnate/once" "2" + agent-base "6" + debug "4" + +http-proxy-middleware@^1.0.0: + version "1.3.1" + resolved "https://npm.corp.kuaishou.com/http-proxy-middleware/-/http-proxy-middleware-1.3.1.tgz" + integrity sha1-Q3ANbZ7st0Gb8IahKND3IF2etmU= + dependencies: + "@types/http-proxy" "^1.17.5" + http-proxy "^1.18.1" + is-glob "^4.0.1" + is-plain-obj "^3.0.0" + micromatch "^4.0.2" + http-proxy-middleware@^2.0.3: version "2.0.6" - resolved "https://npm.corp.kuaishou.com/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz#e1a4dd6979572c7ab5a4e4b55095d1f32a74963f" + resolved "https://npm.corp.kuaishou.com/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz" integrity sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw== dependencies: "@types/http-proxy" "^1.17.8" @@ -3007,61 +3867,105 @@ http-proxy-middleware@^2.0.3: http-proxy@^1.18.1: version "1.18.1" - resolved "https://npm.corp.kuaishou.com/http-proxy/-/http-proxy-1.18.1.tgz#401541f0534884bbf95260334e72f88ee3976549" + resolved "https://npm.corp.kuaishou.com/http-proxy/-/http-proxy-1.18.1.tgz" integrity sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ== dependencies: eventemitter3 "^4.0.0" follow-redirects "^1.0.0" requires-port "^1.0.0" +https-proxy-agent@^5.0.0: + version "5.0.1" + resolved "https://npm.corp.kuaishou.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz" + integrity sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA== + dependencies: + agent-base "6" + debug "4" + human-signals@^2.1.0: version "2.1.0" - resolved "https://npm.corp.kuaishou.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" + resolved "https://npm.corp.kuaishou.com/human-signals/-/human-signals-2.1.0.tgz" integrity sha1-3JH8ukLk0G5Kuu0zs+ejwC9RTqA= human-signals@^3.0.1: version "3.0.1" - resolved "https://npm.corp.kuaishou.com/human-signals/-/human-signals-3.0.1.tgz#c740920859dafa50e5a3222da9d3bf4bb0e5eef5" + resolved "https://npm.corp.kuaishou.com/human-signals/-/human-signals-3.0.1.tgz" integrity sha1-x0CSCFna+lDloyItqdO/S7Dl7vU= +humanize-ms@^1.2.1: + version "1.2.1" + resolved "https://npm.corp.kuaishou.com/humanize-ms/-/humanize-ms-1.2.1.tgz" + integrity sha1-xG4xWaKT9riW2ikxbYtv6Lt5u+0= + dependencies: + ms "^2.0.0" + iconv-lite@0.4.24: version "0.4.24" - resolved "https://npm.corp.kuaishou.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" + resolved "https://npm.corp.kuaishou.com/iconv-lite/-/iconv-lite-0.4.24.tgz" integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== dependencies: safer-buffer ">= 2.1.2 < 3" +iconv-lite@^0.6.2: + version "0.6.3" + resolved "https://npm.corp.kuaishou.com/iconv-lite/-/iconv-lite-0.6.3.tgz" + integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw== + dependencies: + safer-buffer ">= 2.1.2 < 3.0.0" + icss-utils@^5.0.0, icss-utils@^5.1.0: version "5.1.0" - resolved "https://npm.corp.kuaishou.com/icss-utils/-/icss-utils-5.1.0.tgz#c6be6858abd013d768e98366ae47e25d5887b1ae" + resolved "https://npm.corp.kuaishou.com/icss-utils/-/icss-utils-5.1.0.tgz" integrity sha1-xr5oWKvQE9do6YNmrkfiXViHsa4= -ieee754@^1.2.1: +ieee754@^1.1.13, ieee754@^1.2.1: version "1.2.1" - resolved "https://npm.corp.kuaishou.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" + resolved "https://npm.corp.kuaishou.com/ieee754/-/ieee754-1.2.1.tgz" integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== +ignore-walk@^5.0.1: + version "5.0.1" + resolved "https://npm.corp.kuaishou.com/ignore-walk/-/ignore-walk-5.0.1.tgz" + integrity sha512-yemi4pMf51WKT7khInJqAvsIGzoqYXblnsz0ql8tM+yi1EKYTY1evX4NAbJrLL/Aanr2HyZeluqU+Oi7MGHokw== + dependencies: + minimatch "^5.0.1" + ignore@^5.2.0: version "5.2.0" - resolved "https://npm.corp.kuaishou.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a" + resolved "https://npm.corp.kuaishou.com/ignore/-/ignore-5.2.0.tgz" integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ== immutable@^4.0.0: version "4.1.0" - resolved "https://npm.corp.kuaishou.com/immutable/-/immutable-4.1.0.tgz#f795787f0db780183307b9eb2091fcac1f6fafef" + resolved "https://npm.corp.kuaishou.com/immutable/-/immutable-4.1.0.tgz" integrity sha512-oNkuqVTA8jqG1Q6c+UglTOD1xhC1BtjKI7XkCXRkZHrN5m18/XsnUp8Q89GkQO/z+0WjonSvl0FLhDYftp46nQ== import-fresh@^3.2.1: version "3.3.0" - resolved "https://npm.corp.kuaishou.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" + resolved "https://npm.corp.kuaishou.com/import-fresh/-/import-fresh-3.3.0.tgz" integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== dependencies: parent-module "^1.0.0" resolve-from "^4.0.0" +imurmurhash@^0.1.4: + version "0.1.4" + resolved "https://npm.corp.kuaishou.com/imurmurhash/-/imurmurhash-0.1.4.tgz" + integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= + +indent-string@^4.0.0: + version "4.0.0" + resolved "https://npm.corp.kuaishou.com/indent-string/-/indent-string-4.0.0.tgz" + integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== + +infer-owner@^1.0.4: + version "1.0.4" + resolved "https://npm.corp.kuaishou.com/infer-owner/-/infer-owner-1.0.4.tgz" + integrity sha1-xM78qo5RBRwqQLos6KPScpWvlGc= + inflight@^1.0.4: version "1.0.6" - resolved "https://npm.corp.kuaishou.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + resolved "https://npm.corp.kuaishou.com/inflight/-/inflight-1.0.6.tgz" integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== dependencies: once "^1.3.0" @@ -3069,55 +3973,95 @@ inflight@^1.0.4: inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3: version "2.0.4" - resolved "https://npm.corp.kuaishou.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + resolved "https://npm.corp.kuaishou.com/inherits/-/inherits-2.0.4.tgz" integrity sha1-D6LGT5MpF8NDOg3tVTY6rjdBa3w= inherits@2.0.3: version "2.0.3" - resolved "https://npm.corp.kuaishou.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" + resolved "https://npm.corp.kuaishou.com/inherits/-/inherits-2.0.3.tgz" integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= +ini@^3.0.0, ini@^3.0.1: + version "3.0.1" + resolved "https://npm.corp.kuaishou.com/ini/-/ini-3.0.1.tgz" + integrity sha512-it4HyVAUTKBc6m8e1iXWvXSTdndF7HbdN713+kvLrymxTaU4AUBWrJ4vEooP+V7fexnVD3LKcBshjGGPefSMUQ== + +init-package-json@^3.0.2: + version "3.0.2" + resolved "https://npm.corp.kuaishou.com/init-package-json/-/init-package-json-3.0.2.tgz" + integrity sha512-YhlQPEjNFqlGdzrBfDNRLhvoSgX7iQRgSxgsNknRQ9ITXFT7UMfVMWhBTOh2Y+25lRnGrv5Xz8yZwQ3ACR6T3A== + dependencies: + npm-package-arg "^9.0.1" + promzard "^0.3.0" + read "^1.0.7" + read-package-json "^5.0.0" + semver "^7.3.5" + validate-npm-package-license "^3.0.4" + validate-npm-package-name "^4.0.0" + insane@^2.6.2: version "2.6.2" - resolved "https://npm.corp.kuaishou.com/insane/-/insane-2.6.2.tgz#c2ab68bb3e006ab451560d1b446917329c0a8120" + resolved "https://npm.corp.kuaishou.com/insane/-/insane-2.6.2.tgz" integrity sha1-wqtouz4AarRRVg0bRGkXMpwKgSA= dependencies: assignment "2.0.0" he "0.5.0" +install@^0.13.0: + version "0.13.0" + resolved "https://npm.corp.kuaishou.com/install/-/install-0.13.0.tgz" + integrity sha1-avbp2p3QmH3iq0IPeOYNnBcmB3Y= + invert-kv@^1.0.0: version "1.0.0" - resolved "https://npm.corp.kuaishou.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" + resolved "https://npm.corp.kuaishou.com/invert-kv/-/invert-kv-1.0.0.tgz" integrity sha512-xgs2NH9AE66ucSq4cNG1nhSFghr5l6tdL15Pk+jl46bmmBapgoaY/AacXyaDznAqmGL99TiLSQgO/XazFSKYeQ== +ip-regex@^4.1.0: + version "4.3.0" + resolved "https://npm.corp.kuaishou.com/ip-regex/-/ip-regex-4.3.0.tgz" + integrity sha1-aHJ1qw9X+naXj/j03dyKI9WZDbU= + +ip@^2.0.0: + version "2.0.0" + resolved "https://npm.corp.kuaishou.com/ip/-/ip-2.0.0.tgz" + integrity sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ== + ipaddr.js@1.9.1: version "1.9.1" - resolved "https://npm.corp.kuaishou.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" + resolved "https://npm.corp.kuaishou.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz" integrity sha1-v/OFQ+64mEglB5/zoqjmy9RngbM= ipaddr.js@^2.0.1: version "2.0.1" - resolved "https://npm.corp.kuaishou.com/ipaddr.js/-/ipaddr.js-2.0.1.tgz#eca256a7a877e917aeb368b0a7497ddf42ef81c0" + resolved "https://npm.corp.kuaishou.com/ipaddr.js/-/ipaddr.js-2.0.1.tgz" integrity sha1-7KJWp6h36Reus2iwp0l930LvgcA= is-arrayish@^0.2.1: version "0.2.1" - resolved "https://npm.corp.kuaishou.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" + resolved "https://npm.corp.kuaishou.com/is-arrayish/-/is-arrayish-0.2.1.tgz" integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== is-binary-path@~2.1.0: version "2.1.0" - resolved "https://npm.corp.kuaishou.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" + resolved "https://npm.corp.kuaishou.com/is-binary-path/-/is-binary-path-2.1.0.tgz" integrity sha1-6h9/O4DwZCNug0cPhsCcJU+0Wwk= dependencies: binary-extensions "^2.0.0" is-buffer@~1.1.6: version "1.1.6" - resolved "https://npm.corp.kuaishou.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" + resolved "https://npm.corp.kuaishou.com/is-buffer/-/is-buffer-1.1.6.tgz" integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== -is-core-module@^2.9.0: +is-cidr@^4.0.2: + version "4.0.2" + resolved "https://npm.corp.kuaishou.com/is-cidr/-/is-cidr-4.0.2.tgz" + integrity sha1-lMdYXkxsd86r+SD4zeUbjA/aiBQ= + dependencies: + cidr-regex "^3.1.1" + +is-core-module@^2.8.1, is-core-module@^2.9.0: version "2.11.0" resolved "https://npm.corp.kuaishou.com/is-core-module/-/is-core-module-2.11.0.tgz#ad4cb3e3863e814523c96f3f58d26cc570ff0144" integrity sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw== @@ -3126,105 +4070,125 @@ is-core-module@^2.9.0: is-docker@^2.0.0, is-docker@^2.1.1: version "2.2.1" - resolved "https://npm.corp.kuaishou.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" + resolved "https://npm.corp.kuaishou.com/is-docker/-/is-docker-2.2.1.tgz" integrity sha1-M+6r4jz+hvFL3kQIoCwM+4U6zao= is-extendable@^0.1.0: version "0.1.1" - resolved "https://npm.corp.kuaishou.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" + resolved "https://npm.corp.kuaishou.com/is-extendable/-/is-extendable-0.1.1.tgz" integrity sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw== is-extglob@^2.1.1: version "2.1.1" - resolved "https://npm.corp.kuaishou.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + resolved "https://npm.corp.kuaishou.com/is-extglob/-/is-extglob-2.1.1.tgz" integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= is-fullwidth-code-point@^1.0.0: version "1.0.0" - resolved "https://npm.corp.kuaishou.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" + resolved "https://npm.corp.kuaishou.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz" integrity sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw== dependencies: number-is-nan "^1.0.0" +is-fullwidth-code-point@^3.0.0: + version "3.0.0" + resolved "https://npm.corp.kuaishou.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz" + integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== + is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: version "4.0.3" - resolved "https://npm.corp.kuaishou.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" + resolved "https://npm.corp.kuaishou.com/is-glob/-/is-glob-4.0.3.tgz" integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== dependencies: is-extglob "^2.1.1" +is-interactive@^1.0.0: + version "1.0.0" + resolved "https://npm.corp.kuaishou.com/is-interactive/-/is-interactive-1.0.0.tgz" + integrity sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w== + is-interactive@^2.0.0: version "2.0.0" - resolved "https://npm.corp.kuaishou.com/is-interactive/-/is-interactive-2.0.0.tgz#40c57614593826da1100ade6059778d597f16e90" + resolved "https://npm.corp.kuaishou.com/is-interactive/-/is-interactive-2.0.0.tgz" integrity sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ== +is-lambda@^1.0.1: + version "1.0.1" + resolved "https://npm.corp.kuaishou.com/is-lambda/-/is-lambda-1.0.1.tgz" + integrity sha1-PZh3iZ5qU+/AFgUEzeFfgubwYdU= + is-number@^7.0.0: version "7.0.0" - resolved "https://npm.corp.kuaishou.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + resolved "https://npm.corp.kuaishou.com/is-number/-/is-number-7.0.0.tgz" integrity sha1-dTU0W4lnNNX4DE0GxQlVUnoU8Ss= is-plain-obj@^3.0.0: version "3.0.0" - resolved "https://npm.corp.kuaishou.com/is-plain-obj/-/is-plain-obj-3.0.0.tgz#af6f2ea14ac5a646183a5bbdb5baabbc156ad9d7" + resolved "https://npm.corp.kuaishou.com/is-plain-obj/-/is-plain-obj-3.0.0.tgz" integrity sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA== is-plain-object@^2.0.4: version "2.0.4" - resolved "https://npm.corp.kuaishou.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" + resolved "https://npm.corp.kuaishou.com/is-plain-object/-/is-plain-object-2.0.4.tgz" integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== dependencies: isobject "^3.0.1" is-stream@^2.0.0: version "2.0.1" - resolved "https://npm.corp.kuaishou.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" + resolved "https://npm.corp.kuaishou.com/is-stream/-/is-stream-2.0.1.tgz" integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== is-stream@^3.0.0: version "3.0.0" - resolved "https://npm.corp.kuaishou.com/is-stream/-/is-stream-3.0.0.tgz#e6bfd7aa6bef69f4f472ce9bb681e3e57b4319ac" + resolved "https://npm.corp.kuaishou.com/is-stream/-/is-stream-3.0.0.tgz" integrity sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA== +is-unicode-supported@^0.1.0: + version "0.1.0" + resolved "https://npm.corp.kuaishou.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz" + integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== + is-unicode-supported@^1.1.0: version "1.3.0" - resolved "https://npm.corp.kuaishou.com/is-unicode-supported/-/is-unicode-supported-1.3.0.tgz#d824984b616c292a2e198207d4a609983842f714" + resolved "https://npm.corp.kuaishou.com/is-unicode-supported/-/is-unicode-supported-1.3.0.tgz" integrity sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ== is-wsl@^2.2.0: version "2.2.0" - resolved "https://npm.corp.kuaishou.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" + resolved "https://npm.corp.kuaishou.com/is-wsl/-/is-wsl-2.2.0.tgz" integrity sha1-dKTHbnfKn9P5MvKQwX6jJs0VcnE= dependencies: is-docker "^2.0.0" isarray@~1.0.0: version "1.0.0" - resolved "https://npm.corp.kuaishou.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" + resolved "https://npm.corp.kuaishou.com/isarray/-/isarray-1.0.0.tgz" integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== isexe@^2.0.0: version "2.0.0" - resolved "https://npm.corp.kuaishou.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + resolved "https://npm.corp.kuaishou.com/isexe/-/isexe-2.0.0.tgz" integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== isobject@^3.0.1: version "3.0.1" - resolved "https://npm.corp.kuaishou.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" + resolved "https://npm.corp.kuaishou.com/isobject/-/isobject-3.0.1.tgz" integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg== javascript-state-machine@^2.3.5: version "2.4.0" - resolved "https://npm.corp.kuaishou.com/javascript-state-machine/-/javascript-state-machine-2.4.0.tgz#d8be31ec38f24ac1a1832f0b672fc3cd5f79c96e" + resolved "https://npm.corp.kuaishou.com/javascript-state-machine/-/javascript-state-machine-2.4.0.tgz" integrity sha1-2L4x7DjySsGhgy8LZy/DzV95yW4= javascript-stringify@^2.0.1: version "2.1.0" - resolved "https://npm.corp.kuaishou.com/javascript-stringify/-/javascript-stringify-2.1.0.tgz#27c76539be14d8bd128219a2d731b09337904e79" + resolved "https://npm.corp.kuaishou.com/javascript-stringify/-/javascript-stringify-2.1.0.tgz" integrity sha1-J8dlOb4U2L0Sghmi1zGwkzeQTnk= jest-worker@^27.4.5: version "27.5.1" - resolved "https://npm.corp.kuaishou.com/jest-worker/-/jest-worker-27.5.1.tgz#8d146f0900e8973b106b6f73cc1e9a8cb86f8db0" + resolved "https://npm.corp.kuaishou.com/jest-worker/-/jest-worker-27.5.1.tgz" integrity sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg== dependencies: "@types/node" "*" @@ -3233,17 +4197,22 @@ jest-worker@^27.4.5: joycon@^3.0.1: version "3.1.1" - resolved "https://npm.corp.kuaishou.com/joycon/-/joycon-3.1.1.tgz#bce8596d6ae808f8b68168f5fc69280996894f03" + resolved "https://npm.corp.kuaishou.com/joycon/-/joycon-3.1.1.tgz" integrity sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw== +js-base64@^3.7.2: + version "3.7.2" + resolved "https://npm.corp.kuaishou.com/js-base64/-/js-base64-3.7.2.tgz" + integrity sha512-NnRs6dsyqUXejqk/yv2aiXlAvOs56sLkX6nUdeaNezI5LFFLlsZjOThmwnrcwh5ZZRwZlCMnVAY3CvhIhoVEKQ== + js-tokens@^4.0.0: version "4.0.0" - resolved "https://npm.corp.kuaishou.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + resolved "https://npm.corp.kuaishou.com/js-tokens/-/js-tokens-4.0.0.tgz" integrity sha1-GSA/tZmR35jjoocFDUZHzerzJJk= js-yaml@^3.13.1: version "3.14.1" - resolved "https://npm.corp.kuaishou.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" + resolved "https://npm.corp.kuaishou.com/js-yaml/-/js-yaml-3.14.1.tgz" integrity sha1-2ugS/bOCX6MGYJqHFzg8UMNqBTc= dependencies: argparse "^1.0.7" @@ -3251,63 +4220,88 @@ js-yaml@^3.13.1: jsesc@^2.5.1: version "2.5.2" - resolved "https://npm.corp.kuaishou.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" + resolved "https://npm.corp.kuaishou.com/jsesc/-/jsesc-2.5.2.tgz" integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== json-parse-even-better-errors@^2.3.0, json-parse-even-better-errors@^2.3.1: version "2.3.1" - resolved "https://npm.corp.kuaishou.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" + resolved "https://npm.corp.kuaishou.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz" integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== json-schema-traverse@^0.4.1: version "0.4.1" - resolved "https://npm.corp.kuaishou.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" + resolved "https://npm.corp.kuaishou.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz" integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== json-schema-traverse@^1.0.0: version "1.0.0" - resolved "https://npm.corp.kuaishou.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" + resolved "https://npm.corp.kuaishou.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz" integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== +json-stringify-nice@^1.1.4: + version "1.1.4" + resolved "https://npm.corp.kuaishou.com/json-stringify-nice/-/json-stringify-nice-1.1.4.tgz" + integrity sha1-LJN5YrgBgdPzF905qjI+FPWmCmc= + json5@^2.1.2, json5@^2.2.0, json5@^2.2.1: version "2.2.1" - resolved "https://npm.corp.kuaishou.com/json5/-/json5-2.2.1.tgz#655d50ed1e6f95ad1a3caababd2b0efda10b395c" + resolved "https://npm.corp.kuaishou.com/json5/-/json5-2.2.1.tgz" integrity sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA== +jsonc-parser@^3.0.0: + version "3.2.0" + resolved "https://npm.corp.kuaishou.com/jsonc-parser/-/jsonc-parser-3.2.0.tgz" + integrity sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w== + jsonfile@^6.0.1: version "6.1.0" - resolved "https://npm.corp.kuaishou.com/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae" + resolved "https://npm.corp.kuaishou.com/jsonfile/-/jsonfile-6.1.0.tgz" integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== dependencies: universalify "^2.0.0" optionalDependencies: graceful-fs "^4.1.6" +jsonparse@^1.3.1: + version "1.3.1" + resolved "https://npm.corp.kuaishou.com/jsonparse/-/jsonparse-1.3.1.tgz" + integrity sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg== + +just-diff-apply@^5.2.0: + version "5.4.1" + resolved "https://npm.corp.kuaishou.com/just-diff-apply/-/just-diff-apply-5.4.1.tgz" + integrity sha512-AAV5Jw7tsniWwih8Ly3fXxEZ06y+6p5TwQMsw0dzZ/wPKilzyDgdAnL0Ug4NNIquPUOh1vfFWEHbmXUqM5+o8g== + +just-diff@^5.0.1: + version "5.1.1" + resolved "https://npm.corp.kuaishou.com/just-diff/-/just-diff-5.1.1.tgz" + integrity sha512-u8HXJ3HlNrTzY7zrYYKjNEfBlyjqhdBkoyTVdjtn7p02RJD5NvR8rIClzeGA7t+UYP1/7eAkWNLU0+P3QrEqKQ== + kind-of@^6.0.0, kind-of@^6.0.2: version "6.0.3" - resolved "https://npm.corp.kuaishou.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" + resolved "https://npm.corp.kuaishou.com/kind-of/-/kind-of-6.0.3.tgz" integrity sha1-B8BQNKbDSfoG4k+jWqdttFgM5N0= klona@^2.0.5: version "2.0.5" - resolved "https://npm.corp.kuaishou.com/klona/-/klona-2.0.5.tgz#d166574d90076395d9963aa7a928fabb8d76afbc" + resolved "https://npm.corp.kuaishou.com/klona/-/klona-2.0.5.tgz" integrity sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ== lcid@^1.0.0: version "1.0.0" - resolved "https://npm.corp.kuaishou.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" + resolved "https://npm.corp.kuaishou.com/lcid/-/lcid-1.0.0.tgz" integrity sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU= dependencies: invert-kv "^1.0.0" leancloud-realtime-plugin-live-query@^1.2.0: version "1.2.0" - resolved "https://npm.corp.kuaishou.com/leancloud-realtime-plugin-live-query/-/leancloud-realtime-plugin-live-query-1.2.0.tgz#1e07da1b5b99e44cddbc3b052234422f278c4ab9" + resolved "https://npm.corp.kuaishou.com/leancloud-realtime-plugin-live-query/-/leancloud-realtime-plugin-live-query-1.2.0.tgz" integrity sha1-HgfaG1uZ5EzdvDsFIjRCLyeMSrk= leancloud-realtime@^5.0.0-alpha.3: version "5.0.0-rc.7" - resolved "https://npm.corp.kuaishou.com/leancloud-realtime/-/leancloud-realtime-5.0.0-rc.7.tgz#ef314fdf598a0a32a3eed9453cc2ca31cfa79781" + resolved "https://npm.corp.kuaishou.com/leancloud-realtime/-/leancloud-realtime-5.0.0-rc.7.tgz" integrity sha1-7zFP31mKCjKj7tlFPMLKMc+nl4E= dependencies: "@babel/runtime" "^7.10.2" @@ -3326,7 +4320,7 @@ leancloud-realtime@^5.0.0-alpha.3: leancloud-storage@^3.0.4: version "3.15.0" - resolved "https://npm.corp.kuaishou.com/leancloud-storage/-/leancloud-storage-3.15.0.tgz#6d3b010a313189985bb69ab08c75c7ad74bd1788" + resolved "https://npm.corp.kuaishou.com/leancloud-storage/-/leancloud-storage-3.15.0.tgz" integrity sha1-bTsBCjExiZhbtpqwjHXHrXS9F4g= dependencies: debug "^3.1.0" @@ -3340,31 +4334,151 @@ leancloud-storage@^3.0.4: underscore "^1.8.3" uuid "^3.3.2" +libnpmaccess@^6.0.4: + version "6.0.4" + resolved "https://npm.corp.kuaishou.com/libnpmaccess/-/libnpmaccess-6.0.4.tgz" + integrity sha512-qZ3wcfIyUoW0+qSFkMBovcTrSGJ3ZeyvpR7d5N9pEYv/kXs8sHP2wiqEIXBKLFrZlmM0kR0RJD7mtfLngtlLag== + dependencies: + aproba "^2.0.0" + minipass "^3.1.1" + npm-package-arg "^9.0.1" + npm-registry-fetch "^13.0.0" + +libnpmdiff@^4.0.5: + version "4.0.5" + resolved "https://npm.corp.kuaishou.com/libnpmdiff/-/libnpmdiff-4.0.5.tgz" + integrity sha512-9fICQIzmH892UwHHPmb+Seup50UIBWcMIK2FdxvlXm9b4kc1nSH0b/BuY1mORJQtB6ydPMnn+BLzOTmd/SKJmw== + dependencies: + "@npmcli/disparity-colors" "^2.0.0" + "@npmcli/installed-package-contents" "^1.0.7" + binary-extensions "^2.2.0" + diff "^5.1.0" + minimatch "^5.0.1" + npm-package-arg "^9.0.1" + pacote "^13.6.1" + tar "^6.1.0" + +libnpmexec@^4.0.14: + version "4.0.14" + resolved "https://npm.corp.kuaishou.com/libnpmexec/-/libnpmexec-4.0.14.tgz" + integrity sha512-dwmzv2K29SdoAHBOa7QR6CfQbFG/PiZDRF6HZrlI6C4DLt2hNgOHTFaUGOpqE2C+YGu0ZwYTDywxRe0eOnf0ZA== + dependencies: + "@npmcli/arborist" "^5.6.3" + "@npmcli/ci-detect" "^2.0.0" + "@npmcli/fs" "^2.1.1" + "@npmcli/run-script" "^4.2.0" + chalk "^4.1.0" + mkdirp-infer-owner "^2.0.0" + npm-package-arg "^9.0.1" + npmlog "^6.0.2" + pacote "^13.6.1" + proc-log "^2.0.0" + read "^1.0.7" + read-package-json-fast "^2.0.2" + semver "^7.3.7" + walk-up-path "^1.0.0" + +libnpmfund@^3.0.5: + version "3.0.5" + resolved "https://npm.corp.kuaishou.com/libnpmfund/-/libnpmfund-3.0.5.tgz" + integrity sha512-KdeRoG/dem8H3PcEU2/0SKi3ip7AWwczgS72y/3PE+PBrz/s/G52FNIA9jeLnBirkLC0sOyQHfeM3b7e24ZM+g== + dependencies: + "@npmcli/arborist" "^5.6.3" + +libnpmhook@^8.0.4: + version "8.0.4" + resolved "https://npm.corp.kuaishou.com/libnpmhook/-/libnpmhook-8.0.4.tgz" + integrity sha512-nuD6e+Nx0OprjEi0wOeqASMl6QIH235th/Du2/8upK3evByFhzIgdfOeP1OhstavW4xtsl0hk5Vw4fAWWuSUgA== + dependencies: + aproba "^2.0.0" + npm-registry-fetch "^13.0.0" + +libnpmorg@^4.0.4: + version "4.0.4" + resolved "https://npm.corp.kuaishou.com/libnpmorg/-/libnpmorg-4.0.4.tgz" + integrity sha512-1bTpD7iub1rDCsgiBguhJhiDufLQuc8DEti20euqsXz9O0ncXVpCYqf2SMmHR4GEdmAvAj2r7FMiyA9zGdaTpA== + dependencies: + aproba "^2.0.0" + npm-registry-fetch "^13.0.0" + +libnpmpack@^4.1.3: + version "4.1.3" + resolved "https://npm.corp.kuaishou.com/libnpmpack/-/libnpmpack-4.1.3.tgz" + integrity sha512-rYP4X++ME3ZiFO+2iN3YnXJ4LB4Gsd0z5cgszWJZxaEpDN4lRIXirSyynGNsN/hn4taqnlxD+3DPlFDShvRM8w== + dependencies: + "@npmcli/run-script" "^4.1.3" + npm-package-arg "^9.0.1" + pacote "^13.6.1" + +libnpmpublish@^6.0.5: + version "6.0.5" + resolved "https://npm.corp.kuaishou.com/libnpmpublish/-/libnpmpublish-6.0.5.tgz" + integrity sha512-LUR08JKSviZiqrYTDfywvtnsnxr+tOvBU0BF8H+9frt7HMvc6Qn6F8Ubm72g5hDTHbq8qupKfDvDAln2TVPvFg== + dependencies: + normalize-package-data "^4.0.0" + npm-package-arg "^9.0.1" + npm-registry-fetch "^13.0.0" + semver "^7.3.7" + ssri "^9.0.0" + +libnpmsearch@^5.0.4: + version "5.0.4" + resolved "https://npm.corp.kuaishou.com/libnpmsearch/-/libnpmsearch-5.0.4.tgz" + integrity sha512-XHDmsvpN5+pufvGnfLRqpy218gcGGbbbXR6wPrDJyd1em6agKdYByzU5ccskDHH9iVm2UeLydpDsW1ksYuU0cg== + dependencies: + npm-registry-fetch "^13.0.0" + +libnpmteam@^4.0.4: + version "4.0.4" + resolved "https://npm.corp.kuaishou.com/libnpmteam/-/libnpmteam-4.0.4.tgz" + integrity sha512-rzKSwi6MLzwwevbM/vl+BBQTErgn24tCfgPUdzBlszrw3j5necOu7WnTzgvZMDv6maGUwec6Ut1rxszOgH0l+Q== + dependencies: + aproba "^2.0.0" + npm-registry-fetch "^13.0.0" + +libnpmversion@^3.0.7: + version "3.0.7" + resolved "https://npm.corp.kuaishou.com/libnpmversion/-/libnpmversion-3.0.7.tgz" + integrity sha512-O0L4eNMUIMQ+effi1HsZPKp2N6wecwqGqB8PvkvmLPWN7EsdabdzAVG48nv0p/OjlbIai5KQg/L+qMMfCA4ZjA== + dependencies: + "@npmcli/git" "^3.0.0" + "@npmcli/run-script" "^4.1.3" + json-parse-even-better-errors "^2.3.1" + proc-log "^2.0.0" + semver "^7.3.7" + lilconfig@^2.0.5: version "2.0.6" - resolved "https://npm.corp.kuaishou.com/lilconfig/-/lilconfig-2.0.6.tgz#32a384558bd58af3d4c6e077dd1ad1d397bc69d4" + resolved "https://npm.corp.kuaishou.com/lilconfig/-/lilconfig-2.0.6.tgz" integrity sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg== lines-and-columns@^1.1.6: version "1.2.4" - resolved "https://npm.corp.kuaishou.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" + resolved "https://npm.corp.kuaishou.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz" integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== +linkify-it@^3.0.1: + version "3.0.3" + resolved "https://npm.corp.kuaishou.com/linkify-it/-/linkify-it-3.0.3.tgz" + integrity sha512-ynTsyrFSdE5oZ/O9GEf00kPngmOfVwazR5GKDq6EYfhlpFug3J2zybX56a2PRRpc9P+FuSoGNAwjlbDs9jJBPQ== + dependencies: + uc.micro "^1.0.1" + linkify-it@^4.0.1: version "4.0.1" - resolved "https://npm.corp.kuaishou.com/linkify-it/-/linkify-it-4.0.1.tgz#01f1d5e508190d06669982ba31a7d9f56a5751ec" + resolved "https://npm.corp.kuaishou.com/linkify-it/-/linkify-it-4.0.1.tgz" integrity sha512-C7bfi1UZmoj8+PQx22XyeXCuBlokoyWQL5pWSP+EI6nzRylyThouddufc2c1NDIcP9k5agmN9fLpA7VNJfIiqw== dependencies: uc.micro "^1.0.1" loader-runner@^4.2.0: version "4.3.0" - resolved "https://npm.corp.kuaishou.com/loader-runner/-/loader-runner-4.3.0.tgz#c1b4a163b99f614830353b16755e7149ac2314e1" + resolved "https://npm.corp.kuaishou.com/loader-runner/-/loader-runner-4.3.0.tgz" integrity sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg== loader-utils@^2.0.0: version "2.0.3" - resolved "https://npm.corp.kuaishou.com/loader-utils/-/loader-utils-2.0.3.tgz#d4b15b8504c63d1fc3f2ade52d41bc8459d6ede1" + resolved "https://npm.corp.kuaishou.com/loader-utils/-/loader-utils-2.0.3.tgz" integrity sha512-THWqIsn8QRnvLl0shHYVBN9syumU8pYWEHPTmkiVGd+7K5eFNVSY6AJhRvgGF70gg1Dz+l/k8WicvFCxdEs60A== dependencies: big.js "^5.2.2" @@ -3373,17 +4487,25 @@ loader-utils@^2.0.0: localstorage-memory@^1.0.1, localstorage-memory@^1.0.2: version "1.0.3" - resolved "https://npm.corp.kuaishou.com/localstorage-memory/-/localstorage-memory-1.0.3.tgz#566b37968fe0c4d76ba36a6da564fa613945ca72" + resolved "https://npm.corp.kuaishou.com/localstorage-memory/-/localstorage-memory-1.0.3.tgz" integrity sha1-Vms3lo/gxNdro2ptpWT6YTlFynI= lodash@^4.17.10, lodash@^4.17.20, lodash@^4.17.21: version "4.17.21" - resolved "https://npm.corp.kuaishou.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" + resolved "https://npm.corp.kuaishou.com/lodash/-/lodash-4.17.21.tgz" integrity sha1-Z5WRxWTDv/quhFTPCz3zcMPWkRw= +log-symbols@^4.1.0: + version "4.1.0" + resolved "https://npm.corp.kuaishou.com/log-symbols/-/log-symbols-4.1.0.tgz" + integrity sha1-P727lbRoOsn8eFER55LlWNSr1QM= + dependencies: + chalk "^4.1.0" + is-unicode-supported "^0.1.0" + log-symbols@^5.1.0: version "5.1.0" - resolved "https://npm.corp.kuaishou.com/log-symbols/-/log-symbols-5.1.0.tgz#a20e3b9a5f53fac6aeb8e2bb22c07cf2c8f16d93" + resolved "https://npm.corp.kuaishou.com/log-symbols/-/log-symbols-5.1.0.tgz" integrity sha512-l0x2DvrW294C9uDCoQe1VSU4gf529FkSZ6leBl4TiqZH/e+0R7hSfHQBNut2mNygDgHwvYHfFLn6Oxb3VWj2rA== dependencies: chalk "^5.0.0" @@ -3391,48 +4513,91 @@ log-symbols@^5.1.0: long@~3: version "3.2.0" - resolved "https://npm.corp.kuaishou.com/long/-/long-3.2.0.tgz#d821b7138ca1cb581c172990ef14db200b5c474b" + resolved "https://npm.corp.kuaishou.com/long/-/long-3.2.0.tgz" integrity sha1-2CG3E4yhy1gcFymQ7xTbIAtcR0s= lower-case@^2.0.2: version "2.0.2" - resolved "https://npm.corp.kuaishou.com/lower-case/-/lower-case-2.0.2.tgz#6fa237c63dbdc4a82ca0fd882e4722dc5e634e28" + resolved "https://npm.corp.kuaishou.com/lower-case/-/lower-case-2.0.2.tgz" integrity sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg== dependencies: tslib "^2.0.3" lru-cache@^6.0.0: version "6.0.0" - resolved "https://npm.corp.kuaishou.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" + resolved "https://npm.corp.kuaishou.com/lru-cache/-/lru-cache-6.0.0.tgz" integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== dependencies: yallist "^4.0.0" +lru-cache@^7.4.4, lru-cache@^7.5.1, lru-cache@^7.7.1: + version "7.14.1" + resolved "https://npm.corp.kuaishou.com/lru-cache/-/lru-cache-7.14.1.tgz#8da8d2f5f59827edb388e63e459ac23d6d408fea" + integrity sha512-ysxwsnTKdAx96aTRdhDOCQfDgbHnt8SK0KY8SEjO0wHinhWOFTESbjVCMPbU1uGXg/ch4lifqx0wfjOawU2+WA== + magic-string@^0.25.7: version "0.25.9" - resolved "https://npm.corp.kuaishou.com/magic-string/-/magic-string-0.25.9.tgz#de7f9faf91ef8a1c91d02c2e5314c8277dbcdd1c" + resolved "https://npm.corp.kuaishou.com/magic-string/-/magic-string-0.25.9.tgz" integrity sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ== dependencies: sourcemap-codec "^1.4.8" -markdown-it-anchor@^8.6.4: +make-fetch-happen@^10.0.3, make-fetch-happen@^10.0.6, make-fetch-happen@^10.2.0: + version "10.2.1" + resolved "https://npm.corp.kuaishou.com/make-fetch-happen/-/make-fetch-happen-10.2.1.tgz" + integrity sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w== + dependencies: + agentkeepalive "^4.2.1" + cacache "^16.1.0" + http-cache-semantics "^4.1.0" + http-proxy-agent "^5.0.0" + https-proxy-agent "^5.0.0" + is-lambda "^1.0.1" + lru-cache "^7.7.1" + minipass "^3.1.6" + minipass-collect "^1.0.2" + minipass-fetch "^2.0.3" + minipass-flush "^1.0.5" + minipass-pipeline "^1.2.4" + negotiator "^0.6.3" + promise-retry "^2.0.1" + socks-proxy-agent "^7.0.0" + ssri "^9.0.0" + +markdown-it-anchor@^7.1.0: + version "7.1.0" + resolved "https://npm.corp.kuaishou.com/markdown-it-anchor/-/markdown-it-anchor-7.1.0.tgz" + integrity sha1-MPshSXv1noP/TR3cBS2CGWLiSJ4= + +markdown-it-anchor@^8.6.3, markdown-it-anchor@^8.6.4: version "8.6.5" - resolved "https://npm.corp.kuaishou.com/markdown-it-anchor/-/markdown-it-anchor-8.6.5.tgz#30c4bc5bbff327f15ce3c429010ec7ba75e7b5f8" + resolved "https://npm.corp.kuaishou.com/markdown-it-anchor/-/markdown-it-anchor-8.6.5.tgz" integrity sha512-PI1qEHHkTNWT+X6Ip9w+paonfIQ+QZP9sCeMYi47oqhH+EsW8CrJ8J7CzV19QVOj6il8ATGbK2nTECj22ZHGvQ== markdown-it-container@^3.0.0: version "3.0.0" - resolved "https://npm.corp.kuaishou.com/markdown-it-container/-/markdown-it-container-3.0.0.tgz#1d19b06040a020f9a827577bb7dbf67aa5de9a5b" + resolved "https://npm.corp.kuaishou.com/markdown-it-container/-/markdown-it-container-3.0.0.tgz" integrity sha1-HRmwYECgIPmoJ1d7t9v2eqXemls= -markdown-it-emoji@^2.0.2: +markdown-it-emoji@^2.0.0, markdown-it-emoji@^2.0.2: version "2.0.2" - resolved "https://npm.corp.kuaishou.com/markdown-it-emoji/-/markdown-it-emoji-2.0.2.tgz#cd42421c2fda1537d9cc12b9923f5c8aeb9029c8" + resolved "https://npm.corp.kuaishou.com/markdown-it-emoji/-/markdown-it-emoji-2.0.2.tgz" integrity sha512-zLftSaNrKuYl0kR5zm4gxXjHaOI3FAOEaloKmRA5hijmJZvSjmxcokOLlzycb/HXlUFWzXqpIEoyEMCE4i9MvQ== +markdown-it@^12.0.4: + version "12.3.2" + resolved "https://npm.corp.kuaishou.com/markdown-it/-/markdown-it-12.3.2.tgz" + integrity sha512-TchMembfxfNVpHkbtriWltGWc+m3xszaRD0CZup7GFFhzIgQqxIfn3eGj1yZpfuflzPvfkt611B2Q/Bsk1YnGg== + dependencies: + argparse "^2.0.1" + entities "~2.1.0" + linkify-it "^3.0.1" + mdurl "^1.0.1" + uc.micro "^1.0.5" + markdown-it@^13.0.1: version "13.0.1" - resolved "https://npm.corp.kuaishou.com/markdown-it/-/markdown-it-13.0.1.tgz#c6ecc431cacf1a5da531423fc6a42807814af430" + resolved "https://npm.corp.kuaishou.com/markdown-it/-/markdown-it-13.0.1.tgz" integrity sha512-lTlxriVoy2criHP0JKRhO2VDG9c2ypWCsT237eDiLqi09rmbKoUetyGHq2uOIRoRS//kfoJckS0eUzzkDR+k2Q== dependencies: argparse "^2.0.1" @@ -3443,12 +4608,12 @@ markdown-it@^13.0.1: marked@^4.0.8, marked@^4.1.1: version "4.2.2" - resolved "https://npm.corp.kuaishou.com/marked/-/marked-4.2.2.tgz#1d2075ad6cdfe42e651ac221c32d949a26c0672a" + resolved "https://npm.corp.kuaishou.com/marked/-/marked-4.2.2.tgz" integrity sha512-JjBTFTAvuTgANXx82a5vzK9JLSMoV6V3LBVn4Uhdso6t7vXrGx7g1Cd2r6NYSsxrYbQGFCMqBDhFHyK5q2UvcQ== md5@^2.0.0: version "2.3.0" - resolved "https://npm.corp.kuaishou.com/md5/-/md5-2.3.0.tgz#c3da9a6aae3a30b46b7b0c349b87b110dc3bda4f" + resolved "https://npm.corp.kuaishou.com/md5/-/md5-2.3.0.tgz" integrity sha1-w9qaaq46MLRreww0m4exENw72k8= dependencies: charenc "0.0.2" @@ -3457,54 +4622,54 @@ md5@^2.0.0: mdn-data@2.0.28: version "2.0.28" - resolved "https://npm.corp.kuaishou.com/mdn-data/-/mdn-data-2.0.28.tgz#5ec48e7bef120654539069e1ae4ddc81ca490eba" + resolved "https://npm.corp.kuaishou.com/mdn-data/-/mdn-data-2.0.28.tgz" integrity sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g== mdurl@^1.0.1: version "1.0.1" - resolved "https://npm.corp.kuaishou.com/mdurl/-/mdurl-1.0.1.tgz#fe85b2ec75a59037f2adfec100fd6c601761152e" + resolved "https://npm.corp.kuaishou.com/mdurl/-/mdurl-1.0.1.tgz" integrity sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g== media-typer@0.3.0: version "0.3.0" - resolved "https://npm.corp.kuaishou.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" + resolved "https://npm.corp.kuaishou.com/media-typer/-/media-typer-0.3.0.tgz" integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g= medium-zoom@^1.0.6: version "1.0.6" - resolved "https://npm.corp.kuaishou.com/medium-zoom/-/medium-zoom-1.0.6.tgz#9247f21ca9313d8bbe9420aca153a410df08d027" + resolved "https://npm.corp.kuaishou.com/medium-zoom/-/medium-zoom-1.0.6.tgz" integrity sha1-kkfyHKkxPYu+lCCsoVOkEN8I0Cc= memfs@^3.4.3: version "3.4.10" - resolved "https://npm.corp.kuaishou.com/memfs/-/memfs-3.4.10.tgz#4cdff7cfd21351a85e11b08aa276ebf100210a4d" + resolved "https://npm.corp.kuaishou.com/memfs/-/memfs-3.4.10.tgz" integrity sha512-0bCUP+L79P4am30yP1msPzApwuMQG23TjwlwdHeEV5MxioDR1a0AgB0T9FfggU52eJuDCq8WVwb5ekznFyWiTQ== dependencies: fs-monkey "^1.0.3" merge-descriptors@1.0.1: version "1.0.1" - resolved "https://npm.corp.kuaishou.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" + resolved "https://npm.corp.kuaishou.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz" integrity sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w== merge-stream@^2.0.0: version "2.0.0" - resolved "https://npm.corp.kuaishou.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" + resolved "https://npm.corp.kuaishou.com/merge-stream/-/merge-stream-2.0.0.tgz" integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== merge2@^1.3.0, merge2@^1.4.1: version "1.4.1" - resolved "https://npm.corp.kuaishou.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" + resolved "https://npm.corp.kuaishou.com/merge2/-/merge2-1.4.1.tgz" integrity sha1-Q2iJL4hekHRVpv19xVwMnUBJkK4= methods@^1.1.1, methods@^1.1.2, methods@~1.1.2: version "1.1.2" - resolved "https://npm.corp.kuaishou.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" + resolved "https://npm.corp.kuaishou.com/methods/-/methods-1.1.2.tgz" integrity sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4= micromatch@^4.0.2, micromatch@^4.0.4: version "4.0.5" - resolved "https://npm.corp.kuaishou.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" + resolved "https://npm.corp.kuaishou.com/micromatch/-/micromatch-4.0.5.tgz" integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== dependencies: braces "^3.0.2" @@ -3512,111 +4677,204 @@ micromatch@^4.0.2, micromatch@^4.0.4: mime-db@1.52.0, "mime-db@>= 1.43.0 < 2": version "1.52.0" - resolved "https://npm.corp.kuaishou.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" + resolved "https://npm.corp.kuaishou.com/mime-db/-/mime-db-1.52.0.tgz" integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== mime-types@^2.1.12, mime-types@^2.1.27, mime-types@^2.1.31, mime-types@~2.1.17, mime-types@~2.1.24, mime-types@~2.1.34: version "2.1.35" - resolved "https://npm.corp.kuaishou.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" + resolved "https://npm.corp.kuaishou.com/mime-types/-/mime-types-2.1.35.tgz" integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== dependencies: mime-db "1.52.0" mime@1.6.0, mime@^1.4.1: version "1.6.0" - resolved "https://npm.corp.kuaishou.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" + resolved "https://npm.corp.kuaishou.com/mime/-/mime-1.6.0.tgz" integrity sha1-Ms2eXGRVO9WNGaVor0Uqz/BJgbE= mime@^2.4.6: version "2.6.0" - resolved "https://npm.corp.kuaishou.com/mime/-/mime-2.6.0.tgz#a2a682a95cd4d0cb1d6257e28f83da7e35800367" + resolved "https://npm.corp.kuaishou.com/mime/-/mime-2.6.0.tgz" integrity sha1-oqaCqVzU0MsdYlfij4PafjWAA2c= mimic-fn@^2.1.0: version "2.1.0" - resolved "https://npm.corp.kuaishou.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" + resolved "https://npm.corp.kuaishou.com/mimic-fn/-/mimic-fn-2.1.0.tgz" integrity sha1-ftLCzMyvhNP/y3pptXcR/CCDQBs= mimic-fn@^4.0.0: version "4.0.0" - resolved "https://npm.corp.kuaishou.com/mimic-fn/-/mimic-fn-4.0.0.tgz#60a90550d5cb0b239cca65d893b1a53b29871ecc" + resolved "https://npm.corp.kuaishou.com/mimic-fn/-/mimic-fn-4.0.0.tgz" integrity sha1-YKkFUNXLCyOcymXYk7GlOymHHsw= mini-css-extract-plugin@^2.6.1: version "2.6.1" - resolved "https://npm.corp.kuaishou.com/mini-css-extract-plugin/-/mini-css-extract-plugin-2.6.1.tgz#9a1251d15f2035c342d99a468ab9da7a0451b71e" + resolved "https://npm.corp.kuaishou.com/mini-css-extract-plugin/-/mini-css-extract-plugin-2.6.1.tgz" integrity sha512-wd+SD57/K6DiV7jIR34P+s3uckTRuQvx0tKPcvjFlrEylk6P4mQ2KSWk1hblj1Kxaqok7LogKOieygXqBczNlg== dependencies: schema-utils "^4.0.0" minimalistic-assert@^1.0.0: version "1.0.1" - resolved "https://npm.corp.kuaishou.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" + resolved "https://npm.corp.kuaishou.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz" integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== minimatch@^3.1.1: version "3.1.2" - resolved "https://npm.corp.kuaishou.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" + resolved "https://npm.corp.kuaishou.com/minimatch/-/minimatch-3.1.2.tgz" integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== dependencies: brace-expansion "^1.1.7" +minimatch@^5.0.1, minimatch@^5.1.0: + version "5.1.0" + resolved "https://npm.corp.kuaishou.com/minimatch/-/minimatch-5.1.0.tgz" + integrity sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg== + dependencies: + brace-expansion "^2.0.1" + minimist@^1.2.6: version "1.2.7" - resolved "https://npm.corp.kuaishou.com/minimist/-/minimist-1.2.7.tgz#daa1c4d91f507390437c6a8bc01078e7000c4d18" + resolved "https://npm.corp.kuaishou.com/minimist/-/minimist-1.2.7.tgz" integrity sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g== +minipass-collect@^1.0.2: + version "1.0.2" + resolved "https://npm.corp.kuaishou.com/minipass-collect/-/minipass-collect-1.0.2.tgz" + integrity sha1-IrgTv3Rdxu26JXa5QAIq1u3Ixhc= + dependencies: + minipass "^3.0.0" + +minipass-fetch@^2.0.3: + version "2.1.2" + resolved "https://npm.corp.kuaishou.com/minipass-fetch/-/minipass-fetch-2.1.2.tgz#95560b50c472d81a3bc76f20ede80eaed76d8add" + integrity sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA== + dependencies: + minipass "^3.1.6" + minipass-sized "^1.0.3" + minizlib "^2.1.2" + optionalDependencies: + encoding "^0.1.13" + +minipass-flush@^1.0.5: + version "1.0.5" + resolved "https://npm.corp.kuaishou.com/minipass-flush/-/minipass-flush-1.0.5.tgz" + integrity sha1-gucTXX6JpQ/+ZGEKeHlTxMTLs3M= + dependencies: + minipass "^3.0.0" + +minipass-json-stream@^1.0.1: + version "1.0.1" + resolved "https://npm.corp.kuaishou.com/minipass-json-stream/-/minipass-json-stream-1.0.1.tgz" + integrity sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg== + dependencies: + jsonparse "^1.3.1" + minipass "^3.0.0" + +minipass-pipeline@^1.2.4: + version "1.2.4" + resolved "https://npm.corp.kuaishou.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz" + integrity sha1-aEcveXEcCEZXwGfFxq2Tzd6oIUw= + dependencies: + minipass "^3.0.0" + +minipass-sized@^1.0.3: + version "1.0.3" + resolved "https://npm.corp.kuaishou.com/minipass-sized/-/minipass-sized-1.0.3.tgz" + integrity sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g== + dependencies: + minipass "^3.0.0" + +minipass@^3.0.0, minipass@^3.1.1, minipass@^3.1.6: + version "3.3.4" + resolved "https://npm.corp.kuaishou.com/minipass/-/minipass-3.3.4.tgz" + integrity sha512-I9WPbWHCGu8W+6k1ZiGpPu0GkoKBeorkfKNuAFBNS1HNFJvke82sxvI5bzcCNpWPorkOO5QQ+zomzzwRxejXiw== + dependencies: + yallist "^4.0.0" + miniprogram-api-typings@^2.10.2: version "2.12.0" - resolved "https://npm.corp.kuaishou.com/miniprogram-api-typings/-/miniprogram-api-typings-2.12.0.tgz#7a29c90f3e5efa36588422d1f01e22d3394aaaa1" + resolved "https://npm.corp.kuaishou.com/miniprogram-api-typings/-/miniprogram-api-typings-2.12.0.tgz" integrity sha1-einJDz5e+jZYhCLR8B4i0zlKqqE= +minizlib@^2.1.1, minizlib@^2.1.2: + version "2.1.2" + resolved "https://npm.corp.kuaishou.com/minizlib/-/minizlib-2.1.2.tgz" + integrity sha1-6Q00Zrogm5MkUVCKEc49NjIUWTE= + dependencies: + minipass "^3.0.0" + yallist "^4.0.0" + +mkdirp-infer-owner@^2.0.0: + version "2.0.0" + resolved "https://npm.corp.kuaishou.com/mkdirp-infer-owner/-/mkdirp-infer-owner-2.0.0.tgz" + integrity sha1-VdOzaOfYkGXDjzL9OOY48Kth0xY= + dependencies: + chownr "^2.0.0" + infer-owner "^1.0.4" + mkdirp "^1.0.3" + +mkdirp@^1.0.3, mkdirp@^1.0.4: + version "1.0.4" + resolved "https://npm.corp.kuaishou.com/mkdirp/-/mkdirp-1.0.4.tgz" + integrity sha1-PrXtYmInVteaXw4qIh3+utdcL34= + +monaco-editor@^0.33.0: + version "0.33.0" + resolved "https://npm.corp.kuaishou.com/monaco-editor/-/monaco-editor-0.33.0.tgz" + integrity sha512-VcRWPSLIUEgQJQIE0pVT8FcGBIgFoxz7jtqctE+IiCxWugD0DwgyQBcZBhdSrdMC84eumoqMZsGl2GTreOzwqw== + monaco-editor@^0.34.1: version "0.34.1" - resolved "https://npm.corp.kuaishou.com/monaco-editor/-/monaco-editor-0.34.1.tgz#1b75c4ad6bc4c1f9da656d740d98e0b850a22f87" + resolved "https://npm.corp.kuaishou.com/monaco-editor/-/monaco-editor-0.34.1.tgz" integrity sha512-FKc80TyiMaruhJKKPz5SpJPIjL+dflGvz4CpuThaPMc94AyN7SeC9HQ8hrvaxX7EyHdJcUY5i4D0gNyJj1vSZQ== ms@2.0.0: version "2.0.0" - resolved "https://npm.corp.kuaishou.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" + resolved "https://npm.corp.kuaishou.com/ms/-/ms-2.0.0.tgz" integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== ms@2.1.2: version "2.1.2" - resolved "https://npm.corp.kuaishou.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + resolved "https://npm.corp.kuaishou.com/ms/-/ms-2.1.2.tgz" integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== -ms@2.1.3, ms@^2.1.1: +ms@2.1.3, ms@^2.0.0, ms@^2.1.1, ms@^2.1.2: version "2.1.3" - resolved "https://npm.corp.kuaishou.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" + resolved "https://npm.corp.kuaishou.com/ms/-/ms-2.1.3.tgz" integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== multicast-dns@^7.2.5: version "7.2.5" - resolved "https://npm.corp.kuaishou.com/multicast-dns/-/multicast-dns-7.2.5.tgz#77eb46057f4d7adbd16d9290fa7299f6fa64cced" + resolved "https://npm.corp.kuaishou.com/multicast-dns/-/multicast-dns-7.2.5.tgz" integrity sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg== dependencies: dns-packet "^5.2.2" thunky "^1.0.2" +mute-stream@~0.0.4: + version "0.0.8" + resolved "https://npm.corp.kuaishou.com/mute-stream/-/mute-stream-0.0.8.tgz" + integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== + nanoid@^3.3.4: version "3.3.4" - resolved "https://npm.corp.kuaishou.com/nanoid/-/nanoid-3.3.4.tgz#730b67e3cd09e2deacf03c027c81c9d9dbc5e8ab" + resolved "https://npm.corp.kuaishou.com/nanoid/-/nanoid-3.3.4.tgz" integrity sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw== -negotiator@0.6.3: +negotiator@0.6.3, negotiator@^0.6.3: version "0.6.3" - resolved "https://npm.corp.kuaishou.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd" + resolved "https://npm.corp.kuaishou.com/negotiator/-/negotiator-0.6.3.tgz" integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg== neo-async@^2.6.2: version "2.6.2" - resolved "https://npm.corp.kuaishou.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" + resolved "https://npm.corp.kuaishou.com/neo-async/-/neo-async-2.6.2.tgz" integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== no-case@^3.0.4: version "3.0.4" - resolved "https://npm.corp.kuaishou.com/no-case/-/no-case-3.0.4.tgz#d361fd5c9800f558551a8369fc0dcd4662b6124d" + resolved "https://npm.corp.kuaishou.com/no-case/-/no-case-3.0.4.tgz" integrity sha1-02H9XJgA9VhVGoNp/A3NRmK2Ek0= dependencies: lower-case "^2.0.2" @@ -3624,115 +4882,351 @@ no-case@^3.0.4: node-forge@^1: version "1.3.1" - resolved "https://npm.corp.kuaishou.com/node-forge/-/node-forge-1.3.1.tgz#be8da2af243b2417d5f646a770663a92b7e9ded3" + resolved "https://npm.corp.kuaishou.com/node-forge/-/node-forge-1.3.1.tgz" integrity sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA== +node-gyp@^9.0.0, node-gyp@^9.1.0: + version "9.3.0" + resolved "https://npm.corp.kuaishou.com/node-gyp/-/node-gyp-9.3.0.tgz#f8eefe77f0ad8edb3b3b898409b53e697642b319" + integrity sha512-A6rJWfXFz7TQNjpldJ915WFb1LnhO4lIve3ANPbWreuEoLoKlFT3sxIepPBkLhM27crW8YmN+pjlgbasH6cH/Q== + dependencies: + env-paths "^2.2.0" + glob "^7.1.4" + graceful-fs "^4.2.6" + make-fetch-happen "^10.0.3" + nopt "^6.0.0" + npmlog "^6.0.0" + rimraf "^3.0.2" + semver "^7.3.5" + tar "^6.1.2" + which "^2.0.2" + node-releases@^2.0.6: version "2.0.6" - resolved "https://npm.corp.kuaishou.com/node-releases/-/node-releases-2.0.6.tgz#8a7088c63a55e493845683ebf3c828d8c51c5503" + resolved "https://npm.corp.kuaishou.com/node-releases/-/node-releases-2.0.6.tgz" integrity sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg== +nopt@^6.0.0: + version "6.0.0" + resolved "https://npm.corp.kuaishou.com/nopt/-/nopt-6.0.0.tgz" + integrity sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g== + dependencies: + abbrev "^1.0.0" + +normalize-package-data@^4.0.0: + version "4.0.1" + resolved "https://npm.corp.kuaishou.com/normalize-package-data/-/normalize-package-data-4.0.1.tgz" + integrity sha512-EBk5QKKuocMJhB3BILuKhmaPjI8vNRSpIfO9woLC6NyHVkKKdVEdAO1mrT0ZfxNR1lKwCcTkuZfmGIFdizZ8Pg== + dependencies: + hosted-git-info "^5.0.0" + is-core-module "^2.8.1" + semver "^7.3.5" + validate-npm-package-license "^3.0.4" + normalize-path@^3.0.0, normalize-path@~3.0.0: version "3.0.0" - resolved "https://npm.corp.kuaishou.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + resolved "https://npm.corp.kuaishou.com/normalize-path/-/normalize-path-3.0.0.tgz" integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== normalize-range@^0.1.2: version "0.1.2" - resolved "https://npm.corp.kuaishou.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" + resolved "https://npm.corp.kuaishou.com/normalize-range/-/normalize-range-0.1.2.tgz" integrity sha1-LRDAa9/TEuqXd2laTShDlFa3WUI= +npm-audit-report@^3.0.0: + version "3.0.0" + resolved "https://npm.corp.kuaishou.com/npm-audit-report/-/npm-audit-report-3.0.0.tgz" + integrity sha512-tWQzfbwz1sc4244Bx2BVELw0EmZlCsCF0X93RDcmmwhonCsPMoEviYsi+32R+mdRvOWXolPce9zo64n2xgPESw== + dependencies: + chalk "^4.0.0" + +npm-bundled@^1.1.1: + version "1.1.2" + resolved "https://npm.corp.kuaishou.com/npm-bundled/-/npm-bundled-1.1.2.tgz" + integrity sha1-lEx4eJvXOQNbcLqiylzDK42GC8E= + dependencies: + npm-normalize-package-bin "^1.0.1" + +npm-bundled@^2.0.0: + version "2.0.1" + resolved "https://npm.corp.kuaishou.com/npm-bundled/-/npm-bundled-2.0.1.tgz" + integrity sha512-gZLxXdjEzE/+mOstGDqR6b0EkhJ+kM6fxM6vUuckuctuVPh80Q6pw/rSZj9s4Gex9GxWtIicO1pc8DB9KZWudw== + dependencies: + npm-normalize-package-bin "^2.0.0" + +npm-install-checks@^5.0.0: + version "5.0.0" + resolved "https://npm.corp.kuaishou.com/npm-install-checks/-/npm-install-checks-5.0.0.tgz" + integrity sha512-65lUsMI8ztHCxFz5ckCEC44DRvEGdZX5usQFriauxHEwt7upv1FKaQEmAtU0YnOAdwuNWCmk64xYiQABNrEyLA== + dependencies: + semver "^7.1.1" + +npm-normalize-package-bin@^1.0.1: + version "1.0.1" + resolved "https://npm.corp.kuaishou.com/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz" + integrity sha1-bnmkHyP9I1wGIyGCKNp9nCO49uI= + +npm-normalize-package-bin@^2.0.0: + version "2.0.0" + resolved "https://npm.corp.kuaishou.com/npm-normalize-package-bin/-/npm-normalize-package-bin-2.0.0.tgz" + integrity sha512-awzfKUO7v0FscrSpRoogyNm0sajikhBWpU0QMrW09AMi9n1PoKU6WaIqUzuJSQnpciZZmJ/jMZ2Egfmb/9LiWQ== + +npm-package-arg@^9.0.0, npm-package-arg@^9.0.1, npm-package-arg@^9.1.0: + version "9.1.2" + resolved "https://npm.corp.kuaishou.com/npm-package-arg/-/npm-package-arg-9.1.2.tgz#fc8acecb00235f42270dda446f36926ddd9ac2bc" + integrity sha512-pzd9rLEx4TfNJkovvlBSLGhq31gGu2QDexFPWT19yCDh0JgnRhlBLNo5759N0AJmBk+kQ9Y/hXoLnlgFD+ukmg== + dependencies: + hosted-git-info "^5.0.0" + proc-log "^2.0.1" + semver "^7.3.5" + validate-npm-package-name "^4.0.0" + +npm-packlist@^5.1.0: + version "5.1.3" + resolved "https://npm.corp.kuaishou.com/npm-packlist/-/npm-packlist-5.1.3.tgz" + integrity sha512-263/0NGrn32YFYi4J533qzrQ/krmmrWwhKkzwTuM4f/07ug51odoaNjUexxO4vxlzURHcmYMH1QjvHjsNDKLVg== + dependencies: + glob "^8.0.1" + ignore-walk "^5.0.1" + npm-bundled "^2.0.0" + npm-normalize-package-bin "^2.0.0" + +npm-pick-manifest@^7.0.0, npm-pick-manifest@^7.0.2: + version "7.0.2" + resolved "https://npm.corp.kuaishou.com/npm-pick-manifest/-/npm-pick-manifest-7.0.2.tgz" + integrity sha512-gk37SyRmlIjvTfcYl6RzDbSmS9Y4TOBXfsPnoYqTHARNgWbyDiCSMLUpmALDj4jjcTZpURiEfsSHJj9k7EV4Rw== + dependencies: + npm-install-checks "^5.0.0" + npm-normalize-package-bin "^2.0.0" + npm-package-arg "^9.0.0" + semver "^7.3.5" + +npm-profile@^6.2.0: + version "6.2.1" + resolved "https://npm.corp.kuaishou.com/npm-profile/-/npm-profile-6.2.1.tgz" + integrity sha512-Tlu13duByHyDd4Xy0PgroxzxnBYWbGGL5aZifNp8cx2DxUrHSoETXtPKg38aRPsBWMRfDtvcvVfJNasj7oImQQ== + dependencies: + npm-registry-fetch "^13.0.1" + proc-log "^2.0.0" + +npm-registry-fetch@^13.0.0, npm-registry-fetch@^13.0.1, npm-registry-fetch@^13.3.1: + version "13.3.1" + resolved "https://npm.corp.kuaishou.com/npm-registry-fetch/-/npm-registry-fetch-13.3.1.tgz" + integrity sha512-eukJPi++DKRTjSBRcDZSDDsGqRK3ehbxfFUcgaRd0Yp6kRwOwh2WVn0r+8rMB4nnuzvAk6rQVzl6K5CkYOmnvw== + dependencies: + make-fetch-happen "^10.0.6" + minipass "^3.1.6" + minipass-fetch "^2.0.3" + minipass-json-stream "^1.0.1" + minizlib "^2.1.2" + npm-package-arg "^9.0.1" + proc-log "^2.0.0" + npm-run-path@^4.0.1: version "4.0.1" - resolved "https://npm.corp.kuaishou.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" + resolved "https://npm.corp.kuaishou.com/npm-run-path/-/npm-run-path-4.0.1.tgz" integrity sha1-t+zR5e1T2o43pV4cImnguX7XSOo= dependencies: path-key "^3.0.0" npm-run-path@^5.1.0: version "5.1.0" - resolved "https://npm.corp.kuaishou.com/npm-run-path/-/npm-run-path-5.1.0.tgz#bc62f7f3f6952d9894bd08944ba011a6ee7b7e00" + resolved "https://npm.corp.kuaishou.com/npm-run-path/-/npm-run-path-5.1.0.tgz" integrity sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q== dependencies: path-key "^4.0.0" +npm-user-validate@^1.0.1: + version "1.0.1" + resolved "https://npm.corp.kuaishou.com/npm-user-validate/-/npm-user-validate-1.0.1.tgz" + integrity sha1-MUKPxUdf6EFgI/F4wKtHk1rYxWE= + +npm@^8.19.3: + version "8.19.3" + resolved "https://npm.corp.kuaishou.com/npm/-/npm-8.19.3.tgz" + integrity sha512-0QjmyPtDxSyMWWD8I91QGbrgx9KzbV6C9FK1liEb/K0zppiZkr5KxXc990G+LzPwBHDfRjUBlO9T1qZ08vl9mA== + dependencies: + "@isaacs/string-locale-compare" "^1.1.0" + "@npmcli/arborist" "^5.6.3" + "@npmcli/ci-detect" "^2.0.0" + "@npmcli/config" "^4.2.1" + "@npmcli/fs" "^2.1.0" + "@npmcli/map-workspaces" "^2.0.3" + "@npmcli/package-json" "^2.0.0" + "@npmcli/run-script" "^4.2.1" + abbrev "~1.1.1" + archy "~1.0.0" + cacache "^16.1.3" + chalk "^4.1.2" + chownr "^2.0.0" + cli-columns "^4.0.0" + cli-table3 "^0.6.2" + columnify "^1.6.0" + fastest-levenshtein "^1.0.12" + fs-minipass "^2.1.0" + glob "^8.0.1" + graceful-fs "^4.2.10" + hosted-git-info "^5.2.1" + ini "^3.0.1" + init-package-json "^3.0.2" + is-cidr "^4.0.2" + json-parse-even-better-errors "^2.3.1" + libnpmaccess "^6.0.4" + libnpmdiff "^4.0.5" + libnpmexec "^4.0.14" + libnpmfund "^3.0.5" + libnpmhook "^8.0.4" + libnpmorg "^4.0.4" + libnpmpack "^4.1.3" + libnpmpublish "^6.0.5" + libnpmsearch "^5.0.4" + libnpmteam "^4.0.4" + libnpmversion "^3.0.7" + make-fetch-happen "^10.2.0" + minimatch "^5.1.0" + minipass "^3.1.6" + minipass-pipeline "^1.2.4" + mkdirp "^1.0.4" + mkdirp-infer-owner "^2.0.0" + ms "^2.1.2" + node-gyp "^9.1.0" + nopt "^6.0.0" + npm-audit-report "^3.0.0" + npm-install-checks "^5.0.0" + npm-package-arg "^9.1.0" + npm-pick-manifest "^7.0.2" + npm-profile "^6.2.0" + npm-registry-fetch "^13.3.1" + npm-user-validate "^1.0.1" + npmlog "^6.0.2" + opener "^1.5.2" + p-map "^4.0.0" + pacote "^13.6.2" + parse-conflict-json "^2.0.2" + proc-log "^2.0.1" + qrcode-terminal "^0.12.0" + read "~1.0.7" + read-package-json "^5.0.2" + read-package-json-fast "^2.0.3" + readdir-scoped-modules "^1.1.0" + rimraf "^3.0.2" + semver "^7.3.7" + ssri "^9.0.1" + tar "^6.1.11" + text-table "~0.2.0" + tiny-relative-date "^1.3.0" + treeverse "^2.0.0" + validate-npm-package-name "^4.0.0" + which "^2.0.2" + write-file-atomic "^4.0.1" + +npmlog@^6.0.0, npmlog@^6.0.2: + version "6.0.2" + resolved "https://npm.corp.kuaishou.com/npmlog/-/npmlog-6.0.2.tgz" + integrity sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg== + dependencies: + are-we-there-yet "^3.0.0" + console-control-strings "^1.1.0" + gauge "^4.0.3" + set-blocking "^2.0.0" + nth-check@^2.0.1: version "2.1.1" - resolved "https://npm.corp.kuaishou.com/nth-check/-/nth-check-2.1.1.tgz#c9eab428effce36cd6b92c924bdb000ef1f1ed1d" + resolved "https://npm.corp.kuaishou.com/nth-check/-/nth-check-2.1.1.tgz" integrity sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w== dependencies: boolbase "^1.0.0" number-is-nan@^1.0.0: version "1.0.1" - resolved "https://npm.corp.kuaishou.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" + resolved "https://npm.corp.kuaishou.com/number-is-nan/-/number-is-nan-1.0.1.tgz" integrity sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ== object-hash@^3.0.0: version "3.0.0" - resolved "https://npm.corp.kuaishou.com/object-hash/-/object-hash-3.0.0.tgz#73f97f753e7baffc0e2cc9d6e079079744ac82e9" + resolved "https://npm.corp.kuaishou.com/object-hash/-/object-hash-3.0.0.tgz" integrity sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw== object-inspect@^1.9.0: version "1.12.2" - resolved "https://npm.corp.kuaishou.com/object-inspect/-/object-inspect-1.12.2.tgz#c0641f26394532f28ab8d796ab954e43c009a8ea" + resolved "https://npm.corp.kuaishou.com/object-inspect/-/object-inspect-1.12.2.tgz" integrity sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ== obuf@^1.0.0, obuf@^1.1.2: version "1.1.2" - resolved "https://npm.corp.kuaishou.com/obuf/-/obuf-1.1.2.tgz#09bea3343d41859ebd446292d11c9d4db619084e" + resolved "https://npm.corp.kuaishou.com/obuf/-/obuf-1.1.2.tgz" integrity sha1-Cb6jND1BhZ69RGKS0RydTbYZCE4= on-finished@2.4.1: version "2.4.1" - resolved "https://npm.corp.kuaishou.com/on-finished/-/on-finished-2.4.1.tgz#58c8c44116e54845ad57f14ab10b03533184ac3f" + resolved "https://npm.corp.kuaishou.com/on-finished/-/on-finished-2.4.1.tgz" integrity sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg== dependencies: ee-first "1.1.1" on-headers@~1.0.2: version "1.0.2" - resolved "https://npm.corp.kuaishou.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f" + resolved "https://npm.corp.kuaishou.com/on-headers/-/on-headers-1.0.2.tgz" integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA== once@^1.3.0: version "1.4.0" - resolved "https://npm.corp.kuaishou.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + resolved "https://npm.corp.kuaishou.com/once/-/once-1.4.0.tgz" integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== dependencies: wrappy "1" onetime@^5.1.0, onetime@^5.1.2: version "5.1.2" - resolved "https://npm.corp.kuaishou.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" + resolved "https://npm.corp.kuaishou.com/onetime/-/onetime-5.1.2.tgz" integrity sha1-0Oluu1awdHbfHdnEgG5SN5hcpF4= dependencies: mimic-fn "^2.1.0" onetime@^6.0.0: version "6.0.0" - resolved "https://npm.corp.kuaishou.com/onetime/-/onetime-6.0.0.tgz#7c24c18ed1fd2e9bca4bd26806a33613c77d34b4" + resolved "https://npm.corp.kuaishou.com/onetime/-/onetime-6.0.0.tgz" integrity sha1-fCTBjtH9LpvKS9JoBqM2E8d9NLQ= dependencies: mimic-fn "^4.0.0" open@^8.0.9: version "8.4.0" - resolved "https://npm.corp.kuaishou.com/open/-/open-8.4.0.tgz#345321ae18f8138f82565a910fdc6b39e8c244f8" + resolved "https://npm.corp.kuaishou.com/open/-/open-8.4.0.tgz" integrity sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q== dependencies: define-lazy-prop "^2.0.0" is-docker "^2.1.1" is-wsl "^2.2.0" +opener@^1.5.2: + version "1.5.2" + resolved "https://npm.corp.kuaishou.com/opener/-/opener-1.5.2.tgz" + integrity sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A== + optjs@~3.2.2: version "3.2.2" - resolved "https://npm.corp.kuaishou.com/optjs/-/optjs-3.2.2.tgz#69a6ce89c442a44403141ad2f9b370bd5bb6f4ee" + resolved "https://npm.corp.kuaishou.com/optjs/-/optjs-3.2.2.tgz" integrity sha1-aabOicRCpEQDFBrS+bNwvVu29O4= +ora@^5.4.0, ora@^5.4.1: + version "5.4.1" + resolved "https://npm.corp.kuaishou.com/ora/-/ora-5.4.1.tgz" + integrity sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ== + dependencies: + bl "^4.1.0" + chalk "^4.1.0" + cli-cursor "^3.1.0" + cli-spinners "^2.5.0" + is-interactive "^1.0.0" + is-unicode-supported "^0.1.0" + log-symbols "^4.1.0" + strip-ansi "^6.0.0" + wcwidth "^1.0.1" + ora@^6.1.2: version "6.1.2" - resolved "https://npm.corp.kuaishou.com/ora/-/ora-6.1.2.tgz#7b3c1356b42fd90fb1dad043d5dbe649388a0bf5" + resolved "https://npm.corp.kuaishou.com/ora/-/ora-6.1.2.tgz" integrity sha512-EJQ3NiP5Xo94wJXIzAyOtSb0QEIAUu7m8t6UZ9krbz0vAJqr92JpcK/lEXg91q6B9pEGqrykkd2EQplnifDSBw== dependencies: bl "^5.0.0" @@ -3747,22 +5241,56 @@ ora@^6.1.2: os-locale@^1.4.0: version "1.4.0" - resolved "https://npm.corp.kuaishou.com/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" + resolved "https://npm.corp.kuaishou.com/os-locale/-/os-locale-1.4.0.tgz" integrity sha1-IPnxeuKe00XoveWDsT0gCYA8FNk= dependencies: lcid "^1.0.0" +p-map@^4.0.0: + version "4.0.0" + resolved "https://npm.corp.kuaishou.com/p-map/-/p-map-4.0.0.tgz" + integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ== + dependencies: + aggregate-error "^3.0.0" + p-retry@^4.5.0: version "4.6.2" - resolved "https://npm.corp.kuaishou.com/p-retry/-/p-retry-4.6.2.tgz#9baae7184057edd4e17231cee04264106e092a16" + resolved "https://npm.corp.kuaishou.com/p-retry/-/p-retry-4.6.2.tgz" integrity sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ== dependencies: "@types/retry" "0.12.0" retry "^0.13.1" +pacote@^13.0.3, pacote@^13.6.1, pacote@^13.6.2: + version "13.6.2" + resolved "https://npm.corp.kuaishou.com/pacote/-/pacote-13.6.2.tgz" + integrity sha512-Gu8fU3GsvOPkak2CkbojR7vjs3k3P9cA6uazKTHdsdV0gpCEQq2opelnEv30KRQWgVzP5Vd/5umjcedma3MKtg== + dependencies: + "@npmcli/git" "^3.0.0" + "@npmcli/installed-package-contents" "^1.0.7" + "@npmcli/promise-spawn" "^3.0.0" + "@npmcli/run-script" "^4.1.0" + cacache "^16.0.0" + chownr "^2.0.0" + fs-minipass "^2.1.0" + infer-owner "^1.0.4" + minipass "^3.1.6" + mkdirp "^1.0.4" + npm-package-arg "^9.0.0" + npm-packlist "^5.1.0" + npm-pick-manifest "^7.0.0" + npm-registry-fetch "^13.0.1" + proc-log "^2.0.0" + promise-retry "^2.0.1" + read-package-json "^5.0.0" + read-package-json-fast "^2.0.3" + rimraf "^3.0.2" + ssri "^9.0.0" + tar "^6.1.11" + param-case@^3.0.4: version "3.0.4" - resolved "https://npm.corp.kuaishou.com/param-case/-/param-case-3.0.4.tgz#7d17fe4aa12bde34d4a77d91acfb6219caad01c5" + resolved "https://npm.corp.kuaishou.com/param-case/-/param-case-3.0.4.tgz" integrity sha1-fRf+SqEr3jTUp32RrPtiGcqtAcU= dependencies: dot-case "^3.0.4" @@ -3770,14 +5298,23 @@ param-case@^3.0.4: parent-module@^1.0.0: version "1.0.1" - resolved "https://npm.corp.kuaishou.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" + resolved "https://npm.corp.kuaishou.com/parent-module/-/parent-module-1.0.1.tgz" integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== dependencies: callsites "^3.0.0" +parse-conflict-json@^2.0.1, parse-conflict-json@^2.0.2: + version "2.0.2" + resolved "https://npm.corp.kuaishou.com/parse-conflict-json/-/parse-conflict-json-2.0.2.tgz" + integrity sha512-jDbRGb00TAPFsKWCpZZOT93SxVP9nONOSgES3AevqRq/CHvavEBvKAjxX9p5Y5F0RZLxH9Ufd9+RwtCsa+lFDA== + dependencies: + json-parse-even-better-errors "^2.3.1" + just-diff "^5.0.1" + just-diff-apply "^5.2.0" + parse-json@^5.0.0: version "5.2.0" - resolved "https://npm.corp.kuaishou.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" + resolved "https://npm.corp.kuaishou.com/parse-json/-/parse-json-5.2.0.tgz" integrity sha1-x2/Gbe5UIxyWKyK8yKcs8vmXU80= dependencies: "@babel/code-frame" "^7.0.0" @@ -3787,12 +5324,12 @@ parse-json@^5.0.0: parseurl@~1.3.2, parseurl@~1.3.3: version "1.3.3" - resolved "https://npm.corp.kuaishou.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" + resolved "https://npm.corp.kuaishou.com/parseurl/-/parseurl-1.3.3.tgz" integrity sha1-naGee+6NEt/wUT7Vt2lXeTvC6NQ= pascal-case@^3.1.2: version "3.1.2" - resolved "https://npm.corp.kuaishou.com/pascal-case/-/pascal-case-3.1.2.tgz#b48e0ef2b98e205e7c1dae747d0b1508237660eb" + resolved "https://npm.corp.kuaishou.com/pascal-case/-/pascal-case-3.1.2.tgz" integrity sha1-tI4O8rmOIF58Ha50fQsVCCN2YOs= dependencies: no-case "^3.0.4" @@ -3800,66 +5337,66 @@ pascal-case@^3.1.2: path-is-absolute@^1.0.0: version "1.0.1" - resolved "https://npm.corp.kuaishou.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + resolved "https://npm.corp.kuaishou.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz" integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== path-key@^3.0.0, path-key@^3.1.0: version "3.1.1" - resolved "https://npm.corp.kuaishou.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" + resolved "https://npm.corp.kuaishou.com/path-key/-/path-key-3.1.1.tgz" integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== path-key@^4.0.0: version "4.0.0" - resolved "https://npm.corp.kuaishou.com/path-key/-/path-key-4.0.0.tgz#295588dc3aee64154f877adb9d780b81c554bf18" + resolved "https://npm.corp.kuaishou.com/path-key/-/path-key-4.0.0.tgz" integrity sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ== path-parse@^1.0.7: version "1.0.7" - resolved "https://npm.corp.kuaishou.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" + resolved "https://npm.corp.kuaishou.com/path-parse/-/path-parse-1.0.7.tgz" integrity sha1-+8EUtgykKzDZ2vWFjkvWi77bZzU= path-to-regexp@0.1.7: version "0.1.7" - resolved "https://npm.corp.kuaishou.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" + resolved "https://npm.corp.kuaishou.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz" integrity sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ== path-type@^4.0.0: version "4.0.0" - resolved "https://npm.corp.kuaishou.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" + resolved "https://npm.corp.kuaishou.com/path-type/-/path-type-4.0.0.tgz" integrity sha1-hO0BwKe6OAr+CdkKjBgNzZ0DBDs= picocolors@^1.0.0: version "1.0.0" - resolved "https://npm.corp.kuaishou.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" + resolved "https://npm.corp.kuaishou.com/picocolors/-/picocolors-1.0.0.tgz" integrity sha1-y1vcdP8/UYkiNur3nWi8RFZKuBw= picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1: version "2.3.1" - resolved "https://npm.corp.kuaishou.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" + resolved "https://npm.corp.kuaishou.com/picomatch/-/picomatch-2.3.1.tgz" integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== pify@^2.3.0: version "2.3.0" - resolved "https://npm.corp.kuaishou.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" + resolved "https://npm.corp.kuaishou.com/pify/-/pify-2.3.0.tgz" integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog== postcss-csso@^6.0.1: version "6.0.1" - resolved "https://npm.corp.kuaishou.com/postcss-csso/-/postcss-csso-6.0.1.tgz#6a3e812e236fde6d710a525f2b63e6d9da5a5008" + resolved "https://npm.corp.kuaishou.com/postcss-csso/-/postcss-csso-6.0.1.tgz" integrity sha512-ZV4yEziMrx6CEiqabGLrDva0pMD7Fbw7yP+LzJvaynM4OJgTssGN6dHiMsJMJdpmNaLJltXVLsrb/5sxbFa8sA== dependencies: csso "^5.0.5" postcss-each@1.1.0: version "1.1.0" - resolved "https://npm.corp.kuaishou.com/postcss-each/-/postcss-each-1.1.0.tgz#8bb074d130d41eb21679d11aa87204726f5cad88" + resolved "https://npm.corp.kuaishou.com/postcss-each/-/postcss-each-1.1.0.tgz" integrity sha512-YfTPHHAPFVRgEJfLg9RM4R9WYEHVU9Rf1R8QgZfnObwV2dgNqzTLzTl0w5tF71ApFcYLiJAXiTpHAoqJFYcZVw== dependencies: postcss-simple-vars "^6.0.0" postcss-import@14.0.2: version "14.0.2" - resolved "https://npm.corp.kuaishou.com/postcss-import/-/postcss-import-14.0.2.tgz#60eff77e6be92e7b67fe469ec797d9424cae1aa1" + resolved "https://npm.corp.kuaishou.com/postcss-import/-/postcss-import-14.0.2.tgz" integrity sha1-YO/3fmvpLntn/kaex5fZQkyuGqE= dependencies: postcss-value-parser "^4.0.0" @@ -3868,7 +5405,7 @@ postcss-import@14.0.2: postcss-import@^14.1.0: version "14.1.0" - resolved "https://npm.corp.kuaishou.com/postcss-import/-/postcss-import-14.1.0.tgz#a7333ffe32f0b8795303ee9e40215dac922781f0" + resolved "https://npm.corp.kuaishou.com/postcss-import/-/postcss-import-14.1.0.tgz" integrity sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw== dependencies: postcss-value-parser "^4.0.0" @@ -3877,14 +5414,14 @@ postcss-import@^14.1.0: postcss-js@^4.0.0: version "4.0.0" - resolved "https://npm.corp.kuaishou.com/postcss-js/-/postcss-js-4.0.0.tgz#31db79889531b80dc7bc9b0ad283e418dce0ac00" + resolved "https://npm.corp.kuaishou.com/postcss-js/-/postcss-js-4.0.0.tgz" integrity sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ== dependencies: camelcase-css "^2.0.1" postcss-load-config@^3.1.4: version "3.1.4" - resolved "https://npm.corp.kuaishou.com/postcss-load-config/-/postcss-load-config-3.1.4.tgz#1ab2571faf84bb078877e1d07905eabe9ebda855" + resolved "https://npm.corp.kuaishou.com/postcss-load-config/-/postcss-load-config-3.1.4.tgz" integrity sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg== dependencies: lilconfig "^2.0.5" @@ -3892,7 +5429,7 @@ postcss-load-config@^3.1.4: postcss-loader@^7.0.1: version "7.0.1" - resolved "https://npm.corp.kuaishou.com/postcss-loader/-/postcss-loader-7.0.1.tgz#4c883cc0a1b2bfe2074377b7a74c1cd805684395" + resolved "https://npm.corp.kuaishou.com/postcss-loader/-/postcss-loader-7.0.1.tgz" integrity sha512-VRviFEyYlLjctSM93gAZtcJJ/iSkPZ79zWbN/1fSH+NisBByEiVLqpdVDrPLVSi8DX0oJo12kL/GppTBdKVXiQ== dependencies: cosmiconfig "^7.0.0" @@ -3901,12 +5438,12 @@ postcss-loader@^7.0.1: postcss-modules-extract-imports@^3.0.0: version "3.0.0" - resolved "https://npm.corp.kuaishou.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz#cda1f047c0ae80c97dbe28c3e76a43b88025741d" + resolved "https://npm.corp.kuaishou.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz" integrity sha1-zaHwR8CugMl9vijD52pDuIAldB0= postcss-modules-local-by-default@^4.0.0: version "4.0.0" - resolved "https://npm.corp.kuaishou.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz#ebbb54fae1598eecfdf691a02b3ff3b390a5a51c" + resolved "https://npm.corp.kuaishou.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz" integrity sha1-67tU+uFZjuz99pGgKz/zs5ClpRw= dependencies: icss-utils "^5.0.0" @@ -3915,28 +5452,28 @@ postcss-modules-local-by-default@^4.0.0: postcss-modules-scope@^3.0.0: version "3.0.0" - resolved "https://npm.corp.kuaishou.com/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz#9ef3151456d3bbfa120ca44898dfca6f2fa01f06" + resolved "https://npm.corp.kuaishou.com/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz" integrity sha1-nvMVFFbTu/oSDKRImN/Kby+gHwY= dependencies: postcss-selector-parser "^6.0.4" postcss-modules-values@^4.0.0: version "4.0.0" - resolved "https://npm.corp.kuaishou.com/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz#d7c5e7e68c3bb3c9b27cbf48ca0bb3ffb4602c9c" + resolved "https://npm.corp.kuaishou.com/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz" integrity sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ== dependencies: icss-utils "^5.0.0" postcss-nested@5.0.6: version "5.0.6" - resolved "https://npm.corp.kuaishou.com/postcss-nested/-/postcss-nested-5.0.6.tgz#466343f7fc8d3d46af3e7dba3fcd47d052a945bc" + resolved "https://npm.corp.kuaishou.com/postcss-nested/-/postcss-nested-5.0.6.tgz" integrity sha1-RmND9/yNPUavPn26P81H0FKpRbw= dependencies: postcss-selector-parser "^6.0.6" postcss-selector-parser@^6.0.10, postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4, postcss-selector-parser@^6.0.6: version "6.0.10" - resolved "https://npm.corp.kuaishou.com/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz#79b61e2c0d1bfc2602d549e11d0876256f8df88d" + resolved "https://npm.corp.kuaishou.com/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz" integrity sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w== dependencies: cssesc "^3.0.0" @@ -3944,17 +5481,17 @@ postcss-selector-parser@^6.0.10, postcss-selector-parser@^6.0.2, postcss-selecto postcss-simple-vars@^6.0.0: version "6.0.3" - resolved "https://npm.corp.kuaishou.com/postcss-simple-vars/-/postcss-simple-vars-6.0.3.tgz#e66516c7fe980da3498f4a8ad400b9c53861806c" + resolved "https://npm.corp.kuaishou.com/postcss-simple-vars/-/postcss-simple-vars-6.0.3.tgz" integrity sha1-5mUWx/6YDaNJj0qK1AC5xThhgGw= postcss-value-parser@^4.0.0, postcss-value-parser@^4.1.0, postcss-value-parser@^4.2.0: version "4.2.0" - resolved "https://npm.corp.kuaishou.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" + resolved "https://npm.corp.kuaishou.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz" integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== postcss@8.4.14: version "8.4.14" - resolved "https://npm.corp.kuaishou.com/postcss/-/postcss-8.4.14.tgz#ee9274d5622b4858c1007a74d76e42e56fd21caf" + resolved "https://npm.corp.kuaishou.com/postcss/-/postcss-8.4.14.tgz" integrity sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig== dependencies: nanoid "^3.3.4" @@ -3963,7 +5500,7 @@ postcss@8.4.14: postcss@^8.1.10, postcss@^8.4.14, postcss@^8.4.16, postcss@^8.4.7: version "8.4.18" - resolved "https://npm.corp.kuaishou.com/postcss/-/postcss-8.4.18.tgz#6d50046ea7d3d66a85e0e782074e7203bc7fbca2" + resolved "https://npm.corp.kuaishou.com/postcss/-/postcss-8.4.18.tgz" integrity sha512-Wi8mWhncLJm11GATDaQKobXSNEYGUHeQLiQqDFG1qQ5UTDPTEvKw0Xt5NsTpktGTwLps3ByrWsBrG0rB8YQ9oA== dependencies: nanoid "^3.3.4" @@ -3972,7 +5509,7 @@ postcss@^8.1.10, postcss@^8.4.14, postcss@^8.4.16, postcss@^8.4.7: pretty-error@^4.0.0: version "4.0.0" - resolved "https://npm.corp.kuaishou.com/pretty-error/-/pretty-error-4.0.0.tgz#90a703f46dd7234adb46d0f84823e9d1cb8f10d6" + resolved "https://npm.corp.kuaishou.com/pretty-error/-/pretty-error-4.0.0.tgz" integrity sha1-kKcD9G3XI0rbRtD4SCPp0cuPENY= dependencies: lodash "^4.17.20" @@ -3980,22 +5517,57 @@ pretty-error@^4.0.0: prismjs@^1.28.0: version "1.29.0" - resolved "https://npm.corp.kuaishou.com/prismjs/-/prismjs-1.29.0.tgz#f113555a8fa9b57c35e637bba27509dcf802dd12" + resolved "https://npm.corp.kuaishou.com/prismjs/-/prismjs-1.29.0.tgz" integrity sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q== +proc-log@^2.0.0, proc-log@^2.0.1: + version "2.0.1" + resolved "https://npm.corp.kuaishou.com/proc-log/-/proc-log-2.0.1.tgz" + integrity sha512-Kcmo2FhfDTXdcbfDH76N7uBYHINxc/8GW7UAVuVP9I+Va3uHSerrnKV6dLooga/gh7GlgzuCCr/eoldnL1muGw== + process-nextick-args@~2.0.0: version "2.0.1" - resolved "https://npm.corp.kuaishou.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" + resolved "https://npm.corp.kuaishou.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz" integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== +promise-all-reject-late@^1.0.0: + version "1.0.1" + resolved "https://npm.corp.kuaishou.com/promise-all-reject-late/-/promise-all-reject-late-1.0.1.tgz" + integrity sha1-+OvxNIPlypGtgJzML88l8m+GQ8I= + +promise-call-limit@^1.0.1: + version "1.0.1" + resolved "https://npm.corp.kuaishou.com/promise-call-limit/-/promise-call-limit-1.0.1.tgz" + integrity sha1-S97gOuuFZ0OFypNNpxFOm808biQ= + +promise-inflight@^1.0.1: + version "1.0.1" + resolved "https://npm.corp.kuaishou.com/promise-inflight/-/promise-inflight-1.0.1.tgz" + integrity sha1-mEcocL8igTL8vdhoEputEsPAKeM= + +promise-retry@^2.0.1: + version "2.0.1" + resolved "https://npm.corp.kuaishou.com/promise-retry/-/promise-retry-2.0.1.tgz" + integrity sha1-/3R6E2IKtXumiPX8Z4VUEMNw2iI= + dependencies: + err-code "^2.0.2" + retry "^0.12.0" + promise-timeout@^1.3.0: version "1.3.0" - resolved "https://npm.corp.kuaishou.com/promise-timeout/-/promise-timeout-1.3.0.tgz#d1c78dd50a607d5f0a5207410252a3a0914e1014" + resolved "https://npm.corp.kuaishou.com/promise-timeout/-/promise-timeout-1.3.0.tgz" integrity sha1-0ceN1QpgfV8KUgdBAlKjoJFOEBQ= +promzard@^0.3.0: + version "0.3.0" + resolved "https://npm.corp.kuaishou.com/promzard/-/promzard-0.3.0.tgz" + integrity sha1-JqXW7ox97kyxIggwWs+5O6OCqe4= + dependencies: + read "1" + protobufjs@^5.0.1: version "5.0.3" - resolved "https://npm.corp.kuaishou.com/protobufjs/-/protobufjs-5.0.3.tgz#e4dfe9fb67c90b2630d15868249bcc4961467a17" + resolved "https://npm.corp.kuaishou.com/protobufjs/-/protobufjs-5.0.3.tgz" integrity sha1-5N/p+2fJCyYw0VhoJJvMSWFGehc= dependencies: ascli "~1" @@ -4005,7 +5577,7 @@ protobufjs@^5.0.1: proxy-addr@~2.0.7: version "2.0.7" - resolved "https://npm.corp.kuaishou.com/proxy-addr/-/proxy-addr-2.0.7.tgz#f19fe69ceab311eeb94b42e70e8c2070f9ba1025" + resolved "https://npm.corp.kuaishou.com/proxy-addr/-/proxy-addr-2.0.7.tgz" integrity sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg== dependencies: forwarded "0.2.0" @@ -4013,41 +5585,46 @@ proxy-addr@~2.0.7: punycode@^2.1.0: version "2.1.1" - resolved "https://npm.corp.kuaishou.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" + resolved "https://npm.corp.kuaishou.com/punycode/-/punycode-2.1.1.tgz" integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== +qrcode-terminal@^0.12.0: + version "0.12.0" + resolved "https://npm.corp.kuaishou.com/qrcode-terminal/-/qrcode-terminal-0.12.0.tgz" + integrity sha1-u1tpnvf58FBQkqN0i+RGT+cbWBk= + qs@6.11.0, qs@^6.5.1, qs@^6.9.4: version "6.11.0" - resolved "https://npm.corp.kuaishou.com/qs/-/qs-6.11.0.tgz#fd0d963446f7a65e1367e01abd85429453f0c37a" + resolved "https://npm.corp.kuaishou.com/qs/-/qs-6.11.0.tgz" integrity sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q== dependencies: side-channel "^1.0.4" queue-microtask@^1.2.2: version "1.2.3" - resolved "https://npm.corp.kuaishou.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" + resolved "https://npm.corp.kuaishou.com/queue-microtask/-/queue-microtask-1.2.3.tgz" integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== quick-lru@^5.1.1: version "5.1.1" - resolved "https://npm.corp.kuaishou.com/quick-lru/-/quick-lru-5.1.1.tgz#366493e6b3e42a3a6885e2e99d18f80fb7a8c932" + resolved "https://npm.corp.kuaishou.com/quick-lru/-/quick-lru-5.1.1.tgz" integrity sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA== randombytes@^2.1.0: version "2.1.0" - resolved "https://npm.corp.kuaishou.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" + resolved "https://npm.corp.kuaishou.com/randombytes/-/randombytes-2.1.0.tgz" integrity sha1-32+ENy8CcNxlzfYpE0mrekc9Tyo= dependencies: safe-buffer "^5.1.0" range-parser@^1.2.1, range-parser@~1.2.1: version "1.2.1" - resolved "https://npm.corp.kuaishou.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" + resolved "https://npm.corp.kuaishou.com/range-parser/-/range-parser-1.2.1.tgz" integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== raw-body@2.5.1: version "2.5.1" - resolved "https://npm.corp.kuaishou.com/raw-body/-/raw-body-2.5.1.tgz#fe1b1628b181b700215e5fd42389f98b71392857" + resolved "https://npm.corp.kuaishou.com/raw-body/-/raw-body-2.5.1.tgz" integrity sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig== dependencies: bytes "3.1.2" @@ -4057,14 +5634,44 @@ raw-body@2.5.1: read-cache@^1.0.0: version "1.0.0" - resolved "https://npm.corp.kuaishou.com/read-cache/-/read-cache-1.0.0.tgz#e664ef31161166c9751cdbe8dbcf86b5fb58f774" + resolved "https://npm.corp.kuaishou.com/read-cache/-/read-cache-1.0.0.tgz" integrity sha1-5mTvMRYRZsl1HNvo28+GtftY93Q= dependencies: pify "^2.3.0" +read-cmd-shim@^3.0.0: + version "3.0.1" + resolved "https://npm.corp.kuaishou.com/read-cmd-shim/-/read-cmd-shim-3.0.1.tgz#868c235ec59d1de2db69e11aec885bc095aea087" + integrity sha512-kEmDUoYf/CDy8yZbLTmhB1X9kkjf9Q80PCNsDMb7ufrGd6zZSQA1+UyjrO+pZm5K/S4OXCWJeiIt1JA8kAsa6g== + +read-package-json-fast@^2.0.2, read-package-json-fast@^2.0.3: + version "2.0.3" + resolved "https://npm.corp.kuaishou.com/read-package-json-fast/-/read-package-json-fast-2.0.3.tgz" + integrity sha1-MjylKWMNqCyzSzbMC5lmk8mMK4M= + dependencies: + json-parse-even-better-errors "^2.3.0" + npm-normalize-package-bin "^1.0.1" + +read-package-json@^5.0.0, read-package-json@^5.0.2: + version "5.0.2" + resolved "https://npm.corp.kuaishou.com/read-package-json/-/read-package-json-5.0.2.tgz" + integrity sha512-BSzugrt4kQ/Z0krro8zhTwV1Kd79ue25IhNN/VtHFy1mG/6Tluyi+msc0UpwaoQzxSHa28mntAjIZY6kEgfR9Q== + dependencies: + glob "^8.0.1" + json-parse-even-better-errors "^2.3.1" + normalize-package-data "^4.0.0" + npm-normalize-package-bin "^2.0.0" + +read@1, read@^1.0.7, read@~1.0.7: + version "1.0.7" + resolved "https://npm.corp.kuaishou.com/read/-/read-1.0.7.tgz" + integrity sha1-s9oZvQUkMal2cdRKQmNK33ELQMQ= + dependencies: + mute-stream "~0.0.4" + readable-stream@^2.0.1, readable-stream@^2.3.5: version "2.3.7" - resolved "https://npm.corp.kuaishou.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" + resolved "https://npm.corp.kuaishou.com/readable-stream/-/readable-stream-2.3.7.tgz" integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== dependencies: core-util-is "~1.0.0" @@ -4077,33 +5684,43 @@ readable-stream@^2.0.1, readable-stream@^2.3.5: readable-stream@^3.0.6, readable-stream@^3.4.0, readable-stream@^3.6.0: version "3.6.0" - resolved "https://npm.corp.kuaishou.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" + resolved "https://npm.corp.kuaishou.com/readable-stream/-/readable-stream-3.6.0.tgz" integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== dependencies: inherits "^2.0.3" string_decoder "^1.1.1" util-deprecate "^1.0.1" +readdir-scoped-modules@^1.1.0: + version "1.1.0" + resolved "https://npm.corp.kuaishou.com/readdir-scoped-modules/-/readdir-scoped-modules-1.1.0.tgz" + integrity sha512-asaikDeqAQg7JifRsZn1NJZXo9E+VwlyCfbkZhwyISinqk5zNS6266HS5kah6P0SaQKGF6SkNnZVHUzHFYxYDw== + dependencies: + debuglog "^1.0.1" + dezalgo "^1.0.0" + graceful-fs "^4.1.2" + once "^1.3.0" + readdirp@~3.6.0: version "3.6.0" - resolved "https://npm.corp.kuaishou.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" + resolved "https://npm.corp.kuaishou.com/readdirp/-/readdirp-3.6.0.tgz" integrity sha1-dKNwvYVxFuJFspzJc0DNQxoCpsc= dependencies: picomatch "^2.2.1" regenerator-runtime@^0.13.10: version "0.13.10" - resolved "https://npm.corp.kuaishou.com/regenerator-runtime/-/regenerator-runtime-0.13.10.tgz#ed07b19616bcbec5da6274ebc75ae95634bfc2ee" + resolved "https://npm.corp.kuaishou.com/regenerator-runtime/-/regenerator-runtime-0.13.10.tgz" integrity sha512-KepLsg4dU12hryUO7bp/axHAKvwGOCV0sGloQtpagJ12ai+ojVDqkeGSiRX1zlq+kjIMZ1t7gpze+26QqtdGqw== relateurl@^0.2.7: version "0.2.7" - resolved "https://npm.corp.kuaishou.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9" + resolved "https://npm.corp.kuaishou.com/relateurl/-/relateurl-0.2.7.tgz" integrity sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog== renderkid@^3.0.0: version "3.0.0" - resolved "https://npm.corp.kuaishou.com/renderkid/-/renderkid-3.0.0.tgz#5fd823e4d6951d37358ecc9a58b1f06836b6268a" + resolved "https://npm.corp.kuaishou.com/renderkid/-/renderkid-3.0.0.tgz" integrity sha1-X9gj5NaVHTc1jsyaWLHwaDa2Joo= dependencies: css-select "^4.1.3" @@ -4114,92 +5731,105 @@ renderkid@^3.0.0: require-from-string@^2.0.2: version "2.0.2" - resolved "https://npm.corp.kuaishou.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" + resolved "https://npm.corp.kuaishou.com/require-from-string/-/require-from-string-2.0.2.tgz" integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== requires-port@^1.0.0: version "1.0.0" - resolved "https://npm.corp.kuaishou.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" + resolved "https://npm.corp.kuaishou.com/requires-port/-/requires-port-1.0.0.tgz" integrity sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8= resolve-from@^4.0.0: version "4.0.0" - resolved "https://npm.corp.kuaishou.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" + resolved "https://npm.corp.kuaishou.com/resolve-from/-/resolve-from-4.0.0.tgz" integrity sha1-SrzYUq0y3Xuqv+m0DgCjbbXzkuY= resolve@^1.1.7, resolve@^1.22.1: version "1.22.1" - resolved "https://npm.corp.kuaishou.com/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177" + resolved "https://npm.corp.kuaishou.com/resolve/-/resolve-1.22.1.tgz" integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== dependencies: is-core-module "^2.9.0" path-parse "^1.0.7" supports-preserve-symlinks-flag "^1.0.0" +restore-cursor@^3.1.0: + version "3.1.0" + resolved "https://npm.corp.kuaishou.com/restore-cursor/-/restore-cursor-3.1.0.tgz" + integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA== + dependencies: + onetime "^5.1.0" + signal-exit "^3.0.2" + restore-cursor@^4.0.0: version "4.0.0" - resolved "https://npm.corp.kuaishou.com/restore-cursor/-/restore-cursor-4.0.0.tgz#519560a4318975096def6e609d44100edaa4ccb9" + resolved "https://npm.corp.kuaishou.com/restore-cursor/-/restore-cursor-4.0.0.tgz" integrity sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg== dependencies: onetime "^5.1.0" signal-exit "^3.0.2" +retry@^0.12.0: + version "0.12.0" + resolved "https://npm.corp.kuaishou.com/retry/-/retry-0.12.0.tgz" + integrity sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow== + retry@^0.13.1: version "0.13.1" - resolved "https://npm.corp.kuaishou.com/retry/-/retry-0.13.1.tgz#185b1587acf67919d63b357349e03537b2484658" + resolved "https://npm.corp.kuaishou.com/retry/-/retry-0.13.1.tgz" integrity sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg== reusify@^1.0.4: version "1.0.4" - resolved "https://npm.corp.kuaishou.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" + resolved "https://npm.corp.kuaishou.com/reusify/-/reusify-1.0.4.tgz" integrity sha1-kNo4Kx4SbvwCFG6QhFqI2xKSXXY= -rimraf@^3.0.2: +rimraf@^3.0.0, rimraf@^3.0.2: version "3.0.2" - resolved "https://npm.corp.kuaishou.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" + resolved "https://npm.corp.kuaishou.com/rimraf/-/rimraf-3.0.2.tgz" integrity sha1-8aVAK6YiCtUswSgrrBrjqkn9Bho= dependencies: glob "^7.1.3" "rollup@>=2.75.6 <2.77.0 || ~2.77.0": version "2.77.3" - resolved "https://npm.corp.kuaishou.com/rollup/-/rollup-2.77.3.tgz#8f00418d3a2740036e15deb653bed1a90ee0cc12" + resolved "https://npm.corp.kuaishou.com/rollup/-/rollup-2.77.3.tgz" integrity sha512-/qxNTG7FbmefJWoeeYJFbHehJ2HNWnjkAFRKzWN/45eNBBF/r8lo992CwcJXEzyVxs5FmfId+vTSTQDb+bxA+g== optionalDependencies: fsevents "~2.3.2" rollup@^2.78.1: version "2.79.1" - resolved "https://npm.corp.kuaishou.com/rollup/-/rollup-2.79.1.tgz#bedee8faef7c9f93a2647ac0108748f497f081c7" + resolved "https://npm.corp.kuaishou.com/rollup/-/rollup-2.79.1.tgz" integrity sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw== optionalDependencies: fsevents "~2.3.2" run-parallel@^1.1.9: version "1.2.0" - resolved "https://npm.corp.kuaishou.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" + resolved "https://npm.corp.kuaishou.com/run-parallel/-/run-parallel-1.2.0.tgz" integrity sha1-ZtE2jae9+SHrnZW9GpIp5/IaQ+4= dependencies: queue-microtask "^1.2.2" safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: version "5.1.2" - resolved "https://npm.corp.kuaishou.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" + resolved "https://npm.corp.kuaishou.com/safe-buffer/-/safe-buffer-5.1.2.tgz" integrity sha1-mR7GnSluAxN0fVm9/St0XDX4go0= safe-buffer@5.2.1, safe-buffer@>=5.1.0, safe-buffer@^5.1.0, safe-buffer@~5.2.0: version "5.2.1" - resolved "https://npm.corp.kuaishou.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" + resolved "https://npm.corp.kuaishou.com/safe-buffer/-/safe-buffer-5.2.1.tgz" integrity sha1-Hq+fqb2x/dTsdfWPnNtOa3gn7sY= -"safer-buffer@>= 2.1.2 < 3": +"safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0": version "2.1.2" - resolved "https://npm.corp.kuaishou.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" + resolved "https://npm.corp.kuaishou.com/safer-buffer/-/safer-buffer-2.1.2.tgz" integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== sass@^1.54.5: version "1.56.0" - resolved "https://npm.corp.kuaishou.com/sass/-/sass-1.56.0.tgz#134032075a3223c8d49cb5c35e091e5ba1de8e0a" + resolved "https://npm.corp.kuaishou.com/sass/-/sass-1.56.0.tgz" integrity sha512-WFJ9XrpkcnqZcYuLRJh5qiV6ibQOR4AezleeEjTjMsCocYW59dEG19U3fwTTXxzi2Ed3yjPBp727hbbj53pHFw== dependencies: chokidar ">=3.0.0 <4.0.0" @@ -4208,7 +5838,7 @@ sass@^1.54.5: schema-utils@^3.1.0, schema-utils@^3.1.1: version "3.1.1" - resolved "https://npm.corp.kuaishou.com/schema-utils/-/schema-utils-3.1.1.tgz#bc74c4b6b6995c1d88f76a8b77bea7219e0c8281" + resolved "https://npm.corp.kuaishou.com/schema-utils/-/schema-utils-3.1.1.tgz" integrity sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw== dependencies: "@types/json-schema" "^7.0.8" @@ -4217,7 +5847,7 @@ schema-utils@^3.1.0, schema-utils@^3.1.1: schema-utils@^4.0.0: version "4.0.0" - resolved "https://npm.corp.kuaishou.com/schema-utils/-/schema-utils-4.0.0.tgz#60331e9e3ae78ec5d16353c467c34b3a0a1d3df7" + resolved "https://npm.corp.kuaishou.com/schema-utils/-/schema-utils-4.0.0.tgz" integrity sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg== dependencies: "@types/json-schema" "^7.0.9" @@ -4227,7 +5857,7 @@ schema-utils@^4.0.0: section-matter@^1.0.0: version "1.0.0" - resolved "https://npm.corp.kuaishou.com/section-matter/-/section-matter-1.0.0.tgz#e9041953506780ec01d59f292a19c7b850b84167" + resolved "https://npm.corp.kuaishou.com/section-matter/-/section-matter-1.0.0.tgz" integrity sha1-6QQZU1BngOwB1Z8pKhnHuFC4QWc= dependencies: extend-shallow "^2.0.1" @@ -4235,31 +5865,31 @@ section-matter@^1.0.0: select-hose@^2.0.0: version "2.0.0" - resolved "https://npm.corp.kuaishou.com/select-hose/-/select-hose-2.0.0.tgz#625d8658f865af43ec962bfc376a37359a4994ca" + resolved "https://npm.corp.kuaishou.com/select-hose/-/select-hose-2.0.0.tgz" integrity sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg== selfsigned@^2.1.1: version "2.1.1" - resolved "https://npm.corp.kuaishou.com/selfsigned/-/selfsigned-2.1.1.tgz#18a7613d714c0cd3385c48af0075abf3f266af61" + resolved "https://npm.corp.kuaishou.com/selfsigned/-/selfsigned-2.1.1.tgz" integrity sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ== dependencies: node-forge "^1" semver@^6.3.0: version "6.3.0" - resolved "https://npm.corp.kuaishou.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" + resolved "https://npm.corp.kuaishou.com/semver/-/semver-6.3.0.tgz" integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== -semver@^7.3.2, semver@^7.3.5, semver@^7.3.7: +semver@^7.0.0, semver@^7.1.1, semver@^7.3.2, semver@^7.3.5, semver@^7.3.7: version "7.3.8" - resolved "https://npm.corp.kuaishou.com/semver/-/semver-7.3.8.tgz#07a78feafb3f7b32347d725e33de7e2a2df67798" + resolved "https://npm.corp.kuaishou.com/semver/-/semver-7.3.8.tgz" integrity sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A== dependencies: lru-cache "^6.0.0" send@0.18.0: version "0.18.0" - resolved "https://npm.corp.kuaishou.com/send/-/send-0.18.0.tgz#670167cc654b05f5aa4a767f9113bb371bc706be" + resolved "https://npm.corp.kuaishou.com/send/-/send-0.18.0.tgz" integrity sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg== dependencies: debug "2.6.9" @@ -4278,14 +5908,14 @@ send@0.18.0: serialize-javascript@^6.0.0: version "6.0.0" - resolved "https://npm.corp.kuaishou.com/serialize-javascript/-/serialize-javascript-6.0.0.tgz#efae5d88f45d7924141da8b5c3a7a7e663fefeb8" + resolved "https://npm.corp.kuaishou.com/serialize-javascript/-/serialize-javascript-6.0.0.tgz" integrity sha1-765diPRdeSQUHai1w6en5mP+/rg= dependencies: randombytes "^2.1.0" serve-index@^1.9.1: version "1.9.1" - resolved "https://npm.corp.kuaishou.com/serve-index/-/serve-index-1.9.1.tgz#d3768d69b1e7d82e5ce050fff5b453bea12a9239" + resolved "https://npm.corp.kuaishou.com/serve-index/-/serve-index-1.9.1.tgz" integrity sha1-03aNabHn2C5c4FD/9bRTvqEqkjk= dependencies: accepts "~1.3.4" @@ -4298,7 +5928,7 @@ serve-index@^1.9.1: serve-static@1.15.0: version "1.15.0" - resolved "https://npm.corp.kuaishou.com/serve-static/-/serve-static-1.15.0.tgz#faaef08cffe0a1a62f60cad0c4e513cff0ac9540" + resolved "https://npm.corp.kuaishou.com/serve-static/-/serve-static-1.15.0.tgz" integrity sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g== dependencies: encodeurl "~1.0.2" @@ -4306,38 +5936,52 @@ serve-static@1.15.0: parseurl "~1.3.3" send "0.18.0" +set-blocking@^2.0.0: + version "2.0.0" + resolved "https://npm.corp.kuaishou.com/set-blocking/-/set-blocking-2.0.0.tgz" + integrity sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw== + setprototypeof@1.1.0: version "1.1.0" - resolved "https://npm.corp.kuaishou.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656" + resolved "https://npm.corp.kuaishou.com/setprototypeof/-/setprototypeof-1.1.0.tgz" integrity sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ== setprototypeof@1.2.0: version "1.2.0" - resolved "https://npm.corp.kuaishou.com/setprototypeof/-/setprototypeof-1.2.0.tgz#66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424" + resolved "https://npm.corp.kuaishou.com/setprototypeof/-/setprototypeof-1.2.0.tgz" integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw== shallow-clone@^3.0.0: version "3.0.1" - resolved "https://npm.corp.kuaishou.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3" + resolved "https://npm.corp.kuaishou.com/shallow-clone/-/shallow-clone-3.0.1.tgz" integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA== dependencies: kind-of "^6.0.2" shebang-command@^2.0.0: version "2.0.0" - resolved "https://npm.corp.kuaishou.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" + resolved "https://npm.corp.kuaishou.com/shebang-command/-/shebang-command-2.0.0.tgz" integrity sha1-zNCvT4g1+9wmW4JGGq8MNmY/NOo= dependencies: shebang-regex "^3.0.0" shebang-regex@^3.0.0: version "3.0.0" - resolved "https://npm.corp.kuaishou.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" + resolved "https://npm.corp.kuaishou.com/shebang-regex/-/shebang-regex-3.0.0.tgz" integrity sha1-rhbxZE2HPsrYQ7AwexQzYtTEIXI= +shiki@^0.9.3: + version "0.9.15" + resolved "https://npm.corp.kuaishou.com/shiki/-/shiki-0.9.15.tgz" + integrity sha512-/Y0z9IzhJ8nD9nbceORCqu6NgT9X6I8Fk8c3SICHI5NbZRLdZYFaB233gwct9sU0vvSypyaL/qaKvzyQGJBZSw== + dependencies: + jsonc-parser "^3.0.0" + vscode-oniguruma "^1.6.1" + vscode-textmate "5.2.0" + side-channel@^1.0.4: version "1.0.4" - resolved "https://npm.corp.kuaishou.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" + resolved "https://npm.corp.kuaishou.com/side-channel/-/side-channel-1.0.4.tgz" integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== dependencies: call-bind "^1.0.0" @@ -4346,41 +5990,68 @@ side-channel@^1.0.4: signal-exit@^3.0.2, signal-exit@^3.0.3, signal-exit@^3.0.7: version "3.0.7" - resolved "https://npm.corp.kuaishou.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" + resolved "https://npm.corp.kuaishou.com/signal-exit/-/signal-exit-3.0.7.tgz" integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== slash2@^2.0.0: version "2.0.0" - resolved "https://npm.corp.kuaishou.com/slash2/-/slash2-2.0.0.tgz#f4e0a11708b8545b912695981cf7096f52c63487" + resolved "https://npm.corp.kuaishou.com/slash2/-/slash2-2.0.0.tgz" integrity sha1-9OChFwi4VFuRJpWYHPcJb1LGNIc= +slash@^3.0.0: + version "3.0.0" + resolved "https://npm.corp.kuaishou.com/slash/-/slash-3.0.0.tgz" + integrity sha1-ZTm+hwwWWtvVJAIg2+Nh8bxNRjQ= + slash@^4.0.0: version "4.0.0" - resolved "https://npm.corp.kuaishou.com/slash/-/slash-4.0.0.tgz#2422372176c4c6c5addb5e2ada885af984b396a7" + resolved "https://npm.corp.kuaishou.com/slash/-/slash-4.0.0.tgz" integrity sha1-JCI3IXbExsWt214q2oha+YSzlqc= +smart-buffer@^4.2.0: + version "4.2.0" + resolved "https://npm.corp.kuaishou.com/smart-buffer/-/smart-buffer-4.2.0.tgz" + integrity sha1-bh1x+k8YwF99D/IW3RakgdDo2a4= + sockjs@^0.3.24: version "0.3.24" - resolved "https://npm.corp.kuaishou.com/sockjs/-/sockjs-0.3.24.tgz#c9bc8995f33a111bea0395ec30aa3206bdb5ccce" + resolved "https://npm.corp.kuaishou.com/sockjs/-/sockjs-0.3.24.tgz" integrity sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ== dependencies: faye-websocket "^0.11.3" uuid "^8.3.2" websocket-driver "^0.7.4" +socks-proxy-agent@^7.0.0: + version "7.0.0" + resolved "https://npm.corp.kuaishou.com/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz" + integrity sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww== + dependencies: + agent-base "^6.0.2" + debug "^4.3.3" + socks "^2.6.2" + +socks@^2.6.2: + version "2.7.1" + resolved "https://npm.corp.kuaishou.com/socks/-/socks-2.7.1.tgz#d8e651247178fde79c0663043e07240196857d55" + integrity sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ== + dependencies: + ip "^2.0.0" + smart-buffer "^4.2.0" + source-list-map@^2.0.1: version "2.0.1" - resolved "https://npm.corp.kuaishou.com/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34" + resolved "https://npm.corp.kuaishou.com/source-list-map/-/source-list-map-2.0.1.tgz" integrity sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw== "source-map-js@>=0.6.2 <2.0.0", source-map-js@^1.0.1, source-map-js@^1.0.2: version "1.0.2" - resolved "https://npm.corp.kuaishou.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" + resolved "https://npm.corp.kuaishou.com/source-map-js/-/source-map-js-1.0.2.tgz" integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== source-map-support@~0.5.20: version "0.5.21" - resolved "https://npm.corp.kuaishou.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" + resolved "https://npm.corp.kuaishou.com/source-map-support/-/source-map-support-0.5.21.tgz" integrity sha1-BP58f54e0tZiIzwoyys1ufY/bk8= dependencies: buffer-from "^1.0.0" @@ -4388,17 +6059,48 @@ source-map-support@~0.5.20: source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0: version "0.6.1" - resolved "https://npm.corp.kuaishou.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + resolved "https://npm.corp.kuaishou.com/source-map/-/source-map-0.6.1.tgz" integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== +source-map@^0.7.3: + version "0.7.4" + resolved "https://npm.corp.kuaishou.com/source-map/-/source-map-0.7.4.tgz" + integrity sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA== + sourcemap-codec@^1.4.8: version "1.4.8" - resolved "https://npm.corp.kuaishou.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz#ea804bd94857402e6992d05a38ef1ae35a9ab4c4" + resolved "https://npm.corp.kuaishou.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz" integrity sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA== +spdx-correct@^3.0.0: + version "3.1.1" + resolved "https://npm.corp.kuaishou.com/spdx-correct/-/spdx-correct-3.1.1.tgz" + integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== + dependencies: + spdx-expression-parse "^3.0.0" + spdx-license-ids "^3.0.0" + +spdx-exceptions@^2.1.0: + version "2.3.0" + resolved "https://npm.corp.kuaishou.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz" + integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== + +spdx-expression-parse@^3.0.0: + version "3.0.1" + resolved "https://npm.corp.kuaishou.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz" + integrity sha1-z3D1BILu/cmOPOCmgz5KU87rpnk= + dependencies: + spdx-exceptions "^2.1.0" + spdx-license-ids "^3.0.0" + +spdx-license-ids@^3.0.0: + version "3.0.12" + resolved "https://npm.corp.kuaishou.com/spdx-license-ids/-/spdx-license-ids-3.0.12.tgz#69077835abe2710b65f03969898b6637b505a779" + integrity sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA== + spdy-transport@^3.0.0: version "3.0.0" - resolved "https://npm.corp.kuaishou.com/spdy-transport/-/spdy-transport-3.0.0.tgz#00d4863a6400ad75df93361a1608605e5dcdcf31" + resolved "https://npm.corp.kuaishou.com/spdy-transport/-/spdy-transport-3.0.0.tgz" integrity sha1-ANSGOmQArXXfkzYaFghgXl3NzzE= dependencies: debug "^4.1.0" @@ -4410,7 +6112,7 @@ spdy-transport@^3.0.0: spdy@^4.0.2: version "4.0.2" - resolved "https://npm.corp.kuaishou.com/spdy/-/spdy-4.0.2.tgz#b74f466203a3eda452c02492b91fb9e84a27677b" + resolved "https://npm.corp.kuaishou.com/spdy/-/spdy-4.0.2.tgz" integrity sha1-t09GYgOj7aRSwCSSuR+56EonZ3s= dependencies: debug "^4.1.0" @@ -4421,91 +6123,107 @@ spdy@^4.0.2: sprintf-js@~1.0.2: version "1.0.3" - resolved "https://npm.corp.kuaishou.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" + resolved "https://npm.corp.kuaishou.com/sprintf-js/-/sprintf-js-1.0.3.tgz" integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== +ssri@^9.0.0, ssri@^9.0.1: + version "9.0.1" + resolved "https://npm.corp.kuaishou.com/ssri/-/ssri-9.0.1.tgz" + integrity sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q== + dependencies: + minipass "^3.1.1" + statuses@2.0.1: version "2.0.1" - resolved "https://npm.corp.kuaishou.com/statuses/-/statuses-2.0.1.tgz#55cb000ccf1d48728bd23c685a063998cf1a1b63" + resolved "https://npm.corp.kuaishou.com/statuses/-/statuses-2.0.1.tgz" integrity sha1-VcsADM8dSHKL0jxoWgY5mM8aG2M= "statuses@>= 1.4.0 < 2": version "1.5.0" - resolved "https://npm.corp.kuaishou.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" + resolved "https://npm.corp.kuaishou.com/statuses/-/statuses-1.5.0.tgz" integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow= storejs@^1.0.25: version "1.1.0" - resolved "https://npm.corp.kuaishou.com/storejs/-/storejs-1.1.0.tgz#f63be43c747c14be3a7b17018392938091d64679" + resolved "https://npm.corp.kuaishou.com/storejs/-/storejs-1.1.0.tgz" integrity sha1-9jvkPHR8FL46excBg5KTgJHWRnk= string-width@^1.0.1: version "1.0.2" - resolved "https://npm.corp.kuaishou.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" + resolved "https://npm.corp.kuaishou.com/string-width/-/string-width-1.0.2.tgz" integrity sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw== dependencies: code-point-at "^1.0.0" is-fullwidth-code-point "^1.0.0" strip-ansi "^3.0.0" +"string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.2.0, string-width@^4.2.3: + version "4.2.3" + resolved "https://npm.corp.kuaishou.com/string-width/-/string-width-4.2.3.tgz" + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== + dependencies: + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.1" + string_decoder@^1.1.1: version "1.3.0" - resolved "https://npm.corp.kuaishou.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" + resolved "https://npm.corp.kuaishou.com/string_decoder/-/string_decoder-1.3.0.tgz" integrity sha1-QvEUWUpGzxqOMLCoT1bHjD7awh4= dependencies: safe-buffer "~5.2.0" string_decoder@~1.1.1: version "1.1.1" - resolved "https://npm.corp.kuaishou.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" + resolved "https://npm.corp.kuaishou.com/string_decoder/-/string_decoder-1.1.1.tgz" integrity sha1-nPFhG6YmhdcDCunkujQUnDrwP8g= dependencies: safe-buffer "~5.1.0" strip-ansi@^3.0.0, strip-ansi@^3.0.1: version "3.0.1" - resolved "https://npm.corp.kuaishou.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" + resolved "https://npm.corp.kuaishou.com/strip-ansi/-/strip-ansi-3.0.1.tgz" integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= dependencies: ansi-regex "^2.0.0" -strip-ansi@^6.0.1: +strip-ansi@^6.0.0, strip-ansi@^6.0.1: version "6.0.1" - resolved "https://npm.corp.kuaishou.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + resolved "https://npm.corp.kuaishou.com/strip-ansi/-/strip-ansi-6.0.1.tgz" integrity sha1-nibGPTD1NEPpSJSVshBdN7Z6hdk= dependencies: ansi-regex "^5.0.1" strip-ansi@^7.0.1: version "7.0.1" - resolved "https://npm.corp.kuaishou.com/strip-ansi/-/strip-ansi-7.0.1.tgz#61740a08ce36b61e50e65653f07060d000975fb2" + resolved "https://npm.corp.kuaishou.com/strip-ansi/-/strip-ansi-7.0.1.tgz" integrity sha1-YXQKCM42th5Q5lZT8HBg0ACXX7I= dependencies: ansi-regex "^6.0.1" strip-bom-string@^1.0.0: version "1.0.0" - resolved "https://npm.corp.kuaishou.com/strip-bom-string/-/strip-bom-string-1.0.0.tgz#e5211e9224369fbb81d633a2f00044dc8cedad92" + resolved "https://npm.corp.kuaishou.com/strip-bom-string/-/strip-bom-string-1.0.0.tgz" integrity sha1-5SEekiQ2n7uB1jOi8ABE3IztrZI= strip-final-newline@^2.0.0: version "2.0.0" - resolved "https://npm.corp.kuaishou.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" + resolved "https://npm.corp.kuaishou.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz" integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== strip-final-newline@^3.0.0: version "3.0.0" - resolved "https://npm.corp.kuaishou.com/strip-final-newline/-/strip-final-newline-3.0.0.tgz#52894c313fbff318835280aed60ff71ebf12b8fd" + resolved "https://npm.corp.kuaishou.com/strip-final-newline/-/strip-final-newline-3.0.0.tgz" integrity sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw== style-loader@^3.3.1: version "3.3.1" - resolved "https://npm.corp.kuaishou.com/style-loader/-/style-loader-3.3.1.tgz#057dfa6b3d4d7c7064462830f9113ed417d38575" + resolved "https://npm.corp.kuaishou.com/style-loader/-/style-loader-3.3.1.tgz" integrity sha1-BX36az1NfHBkRigw+RE+1BfThXU= superagent@^3.3.1: version "3.8.3" - resolved "https://npm.corp.kuaishou.com/superagent/-/superagent-3.8.3.tgz#460ea0dbdb7d5b11bc4f78deba565f86a178e128" + resolved "https://npm.corp.kuaishou.com/superagent/-/superagent-3.8.3.tgz" integrity sha512-GLQtLMCoEIK4eDv6OGtkOoSMt3D+oq0y3dsxMuYuDvaNUvuT8eFBuLmfR0iYYzHC1e8hpzC6ZsxbuP6DIalMFA== dependencies: component-emitter "^1.2.0" @@ -4521,7 +6239,7 @@ superagent@^3.3.1: superagent@^5.2.2: version "5.3.1" - resolved "https://npm.corp.kuaishou.com/superagent/-/superagent-5.3.1.tgz#d62f3234d76b8138c1320e90fa83dc1850ccabf1" + resolved "https://npm.corp.kuaishou.com/superagent/-/superagent-5.3.1.tgz" integrity sha512-wjJ/MoTid2/RuGCOFtlacyGNxN9QLMgcpYLDQlWFIhhdJ93kNscFonGvrpAHSCVjRVj++DGCglocF7Aej1KHvQ== dependencies: component-emitter "^1.3.0" @@ -4538,33 +6256,33 @@ superagent@^5.2.2: supports-color@^5.3.0: version "5.5.0" - resolved "https://npm.corp.kuaishou.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + resolved "https://npm.corp.kuaishou.com/supports-color/-/supports-color-5.5.0.tgz" integrity sha1-4uaaRKyHcveKHsCzW2id9lMO/I8= dependencies: has-flag "^3.0.0" supports-color@^7.1.0: version "7.2.0" - resolved "https://npm.corp.kuaishou.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" + resolved "https://npm.corp.kuaishou.com/supports-color/-/supports-color-7.2.0.tgz" integrity sha1-G33NyzK4E4gBs+R4umpRyqiWSNo= dependencies: has-flag "^4.0.0" supports-color@^8.0.0: version "8.1.1" - resolved "https://npm.corp.kuaishou.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" + resolved "https://npm.corp.kuaishou.com/supports-color/-/supports-color-8.1.1.tgz" integrity sha1-zW/BfihQDP9WwbhsCn/UpUpzAFw= dependencies: has-flag "^4.0.0" supports-preserve-symlinks-flag@^1.0.0: version "1.0.0" - resolved "https://npm.corp.kuaishou.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" + resolved "https://npm.corp.kuaishou.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz" integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== tailwindcss@3.1.6: version "3.1.6" - resolved "https://npm.corp.kuaishou.com/tailwindcss/-/tailwindcss-3.1.6.tgz#bcb719357776c39e6376a8d84e9834b2b19a49f1" + resolved "https://npm.corp.kuaishou.com/tailwindcss/-/tailwindcss-3.1.6.tgz" integrity sha512-7skAOY56erZAFQssT1xkpk+kWt2NrO45kORlxFPXUt3CiGsVPhH1smuH5XoDH6sGPXLyBv+zgCKA2HWBsgCytg== dependencies: arg "^5.0.2" @@ -4592,12 +6310,24 @@ tailwindcss@3.1.6: tapable@^2.0.0, tapable@^2.1.1, tapable@^2.2.0: version "2.2.1" - resolved "https://npm.corp.kuaishou.com/tapable/-/tapable-2.2.1.tgz#1967a73ef4060a82f12ab96af86d52fdb76eeca0" + resolved "https://npm.corp.kuaishou.com/tapable/-/tapable-2.2.1.tgz" integrity sha1-GWenPvQGCoLxKrlq+G1S/bdu7KA= +tar@^6.1.0, tar@^6.1.11, tar@^6.1.2: + version "6.1.12" + resolved "https://npm.corp.kuaishou.com/tar/-/tar-6.1.12.tgz#3b742fb05669b55671fb769ab67a7791ea1a62e6" + integrity sha512-jU4TdemS31uABHd+Lt5WEYJuzn+TJTCBLljvIAHZOz6M9Os5pJ4dD+vRFLxPa/n3T0iEFzpi+0x1UfuDZYbRMw== + dependencies: + chownr "^2.0.0" + fs-minipass "^2.0.0" + minipass "^3.0.0" + minizlib "^2.1.1" + mkdirp "^1.0.3" + yallist "^4.0.0" + terser-webpack-plugin@^5.1.3: version "5.3.6" - resolved "https://npm.corp.kuaishou.com/terser-webpack-plugin/-/terser-webpack-plugin-5.3.6.tgz#5590aec31aa3c6f771ce1b1acca60639eab3195c" + resolved "https://npm.corp.kuaishou.com/terser-webpack-plugin/-/terser-webpack-plugin-5.3.6.tgz" integrity sha512-kfLFk+PoLUQIbLmB1+PZDMRSZS99Mp+/MHqDNmMA6tOItzRt+Npe3E+fsMs5mfcM0wCtrrdU387UnV+vnSffXQ== dependencies: "@jridgewell/trace-mapping" "^0.3.14" @@ -4608,7 +6338,7 @@ terser-webpack-plugin@^5.1.3: terser@^5.10.0, terser@^5.14.1: version "5.15.1" - resolved "https://npm.corp.kuaishou.com/terser/-/terser-5.15.1.tgz#8561af6e0fd6d839669c73b92bdd5777d870ed6c" + resolved "https://npm.corp.kuaishou.com/terser/-/terser-5.15.1.tgz" integrity sha512-K1faMUvpm/FBxjBXud0LWVAGxmvoPbZbfTCYbSgaaYQaIXI3/TdI7a7ZGA73Zrou6Q8Zmz3oeUTsp/dj+ag2Xw== dependencies: "@jridgewell/source-map" "^0.3.2" @@ -4616,41 +6346,66 @@ terser@^5.10.0, terser@^5.14.1: commander "^2.20.0" source-map-support "~0.5.20" +text-table@~0.2.0: + version "0.2.0" + resolved "https://npm.corp.kuaishou.com/text-table/-/text-table-0.2.0.tgz" + integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== + +theme-vitesse@^0.4.9: + version "0.4.10" + resolved "https://npm.corp.kuaishou.com/theme-vitesse/-/theme-vitesse-0.4.10.tgz" + integrity sha512-/iUB1ibBBZaJvwD4lgFoRFeY1WWQHEfZs9TLHwKfyXXc00RY7IqBcwPYJeZgkZIKQJ9AedTGCLYG5jHUZRoRmg== + thunky@^1.0.2: version "1.1.0" - resolved "https://npm.corp.kuaishou.com/thunky/-/thunky-1.1.0.tgz#5abaf714a9405db0504732bbccd2cedd9ef9537d" + resolved "https://npm.corp.kuaishou.com/thunky/-/thunky-1.1.0.tgz" integrity sha1-Wrr3FKlAXbBQRzK7zNLO3Z75U30= +tiny-relative-date@^1.3.0: + version "1.3.0" + resolved "https://npm.corp.kuaishou.com/tiny-relative-date/-/tiny-relative-date-1.3.0.tgz" + integrity sha1-+giq1QHtcw8xzAQxgdmVw5qTXgc= + to-fast-properties@^2.0.0: version "2.0.0" - resolved "https://npm.corp.kuaishou.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" + resolved "https://npm.corp.kuaishou.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz" integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= to-regex-range@^5.0.1: version "5.0.1" - resolved "https://npm.corp.kuaishou.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + resolved "https://npm.corp.kuaishou.com/to-regex-range/-/to-regex-range-5.0.1.tgz" integrity sha1-FkjESq58jZiKMmAY7XL1tN0DkuQ= dependencies: is-number "^7.0.0" toidentifier@1.0.1: version "1.0.1" - resolved "https://npm.corp.kuaishou.com/toidentifier/-/toidentifier-1.0.1.tgz#3be34321a88a820ed1bd80dfaa33e479fbb8dd35" + resolved "https://npm.corp.kuaishou.com/toidentifier/-/toidentifier-1.0.1.tgz" integrity sha1-O+NDIaiKgg7RvYDfqjPkefu43TU= +toml@^3.0.0: + version "3.0.0" + resolved "https://npm.corp.kuaishou.com/toml/-/toml-3.0.0.tgz" + integrity sha1-NCFg8a8ZBOydIE0DpdYSItdixe4= + +treeverse@^2.0.0: + version "2.0.0" + resolved "https://npm.corp.kuaishou.com/treeverse/-/treeverse-2.0.0.tgz" + integrity sha512-N5gJCkLu1aXccpOTtqV6ddSEi6ZmGkh3hjmbu1IjcavJK4qyOVQmi0myQKM7z5jVGmD68SJoliaVrMmVObhj6A== + ts-debounce@^4.0.0: version "4.0.0" - resolved "https://npm.corp.kuaishou.com/ts-debounce/-/ts-debounce-4.0.0.tgz#33440ef64fab53793c3d546a8ca6ae539ec15841" + resolved "https://npm.corp.kuaishou.com/ts-debounce/-/ts-debounce-4.0.0.tgz" integrity sha1-M0QO9k+rU3k8PVRqjKauU57BWEE= tslib@^2.0.3: version "2.4.1" - resolved "https://npm.corp.kuaishou.com/tslib/-/tslib-2.4.1.tgz#0d0bfbaac2880b91e22df0768e55be9753a5b17e" + resolved "https://npm.corp.kuaishou.com/tslib/-/tslib-2.4.1.tgz" integrity sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA== type-is@~1.6.18: version "1.6.18" - resolved "https://npm.corp.kuaishou.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" + resolved "https://npm.corp.kuaishou.com/type-is/-/type-is-1.6.18.tgz" integrity sha1-TlUs0F3wlGfcvE73Od6J8s83wTE= dependencies: media-typer "0.3.0" @@ -4658,32 +6413,46 @@ type-is@~1.6.18: uc.micro@^1.0.1, uc.micro@^1.0.5: version "1.0.6" - resolved "https://npm.corp.kuaishou.com/uc.micro/-/uc.micro-1.0.6.tgz#9c411a802a409a91fc6cf74081baba34b24499ac" + resolved "https://npm.corp.kuaishou.com/uc.micro/-/uc.micro-1.0.6.tgz" integrity sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA== underscore@^1.8.3: version "1.13.6" - resolved "https://npm.corp.kuaishou.com/underscore/-/underscore-1.13.6.tgz#04786a1f589dc6c09f761fc5f45b89e935136441" + resolved "https://npm.corp.kuaishou.com/underscore/-/underscore-1.13.6.tgz" integrity sha512-+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A== +unique-filename@^2.0.0: + version "2.0.1" + resolved "https://npm.corp.kuaishou.com/unique-filename/-/unique-filename-2.0.1.tgz" + integrity sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A== + dependencies: + unique-slug "^3.0.0" + +unique-slug@^3.0.0: + version "3.0.0" + resolved "https://npm.corp.kuaishou.com/unique-slug/-/unique-slug-3.0.0.tgz" + integrity sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w== + dependencies: + imurmurhash "^0.1.4" + universalify@^2.0.0: version "2.0.0" - resolved "https://npm.corp.kuaishou.com/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717" + resolved "https://npm.corp.kuaishou.com/universalify/-/universalify-2.0.0.tgz" integrity sha1-daSYTv7cSwiXXFrrc/Uw0C3yVxc= unpipe@1.0.0, unpipe@~1.0.0: version "1.0.0" - resolved "https://npm.corp.kuaishou.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" + resolved "https://npm.corp.kuaishou.com/unpipe/-/unpipe-1.0.0.tgz" integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ== upath@^2.0.1: version "2.0.1" - resolved "https://npm.corp.kuaishou.com/upath/-/upath-2.0.1.tgz#50c73dea68d6f6b990f51d279ce6081665d61a8b" + resolved "https://npm.corp.kuaishou.com/upath/-/upath-2.0.1.tgz" integrity sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w== update-browserslist-db@^1.0.9: version "1.0.10" - resolved "https://npm.corp.kuaishou.com/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz#0f54b876545726f17d00cd9a2561e6dade943ff3" + resolved "https://npm.corp.kuaishou.com/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz" integrity sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ== dependencies: escalade "^3.1.1" @@ -4691,39 +6460,54 @@ update-browserslist-db@^1.0.9: uri-js@^4.2.2: version "4.4.1" - resolved "https://npm.corp.kuaishou.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" + resolved "https://npm.corp.kuaishou.com/uri-js/-/uri-js-4.4.1.tgz" integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== dependencies: punycode "^2.1.0" util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1: version "1.0.2" - resolved "https://npm.corp.kuaishou.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + resolved "https://npm.corp.kuaishou.com/util-deprecate/-/util-deprecate-1.0.2.tgz" integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== utila@~0.4: version "0.4.0" - resolved "https://npm.corp.kuaishou.com/utila/-/utila-0.4.0.tgz#8a16a05d445657a3aea5eecc5b12a4fa5379772c" + resolved "https://npm.corp.kuaishou.com/utila/-/utila-0.4.0.tgz" integrity sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA== utils-merge@1.0.1: version "1.0.1" - resolved "https://npm.corp.kuaishou.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" + resolved "https://npm.corp.kuaishou.com/utils-merge/-/utils-merge-1.0.1.tgz" integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA== uuid@^3.0.0, uuid@^3.3.2: version "3.4.0" - resolved "https://npm.corp.kuaishou.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" + resolved "https://npm.corp.kuaishou.com/uuid/-/uuid-3.4.0.tgz" integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== uuid@^8.3.2: version "8.3.2" - resolved "https://npm.corp.kuaishou.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" + resolved "https://npm.corp.kuaishou.com/uuid/-/uuid-8.3.2.tgz" integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== +validate-npm-package-license@^3.0.4: + version "3.0.4" + resolved "https://npm.corp.kuaishou.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz" + integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== + dependencies: + spdx-correct "^3.0.0" + spdx-expression-parse "^3.0.0" + +validate-npm-package-name@^4.0.0: + version "4.0.0" + resolved "https://npm.corp.kuaishou.com/validate-npm-package-name/-/validate-npm-package-name-4.0.0.tgz" + integrity sha512-mzR0L8ZDktZjpX4OB46KT+56MAhl4EIazWP/+G/HPGuvfdaqg4YsCdtOm6U9+LOFyYDoh4dpnpxZRB9MQQns5Q== + dependencies: + builtins "^5.0.0" + valine@1.4.18: version "1.4.18" - resolved "https://npm.corp.kuaishou.com/valine/-/valine-1.4.18.tgz#d396ac3cb1f4ce80ddddbff9f9d58f0d36e76920" + resolved "https://npm.corp.kuaishou.com/valine/-/valine-1.4.18.tgz" integrity sha512-7Epks0rMn10qWAbBxmUGCUYPL+bJwasYuzU9QHpa6yNk5vAv6PTh1oPTVYX5AB7OzhVwUxj5HKs/jyUpXLwESQ== dependencies: autosize "^4.0.2" @@ -4740,12 +6524,12 @@ valine@1.4.18: vary@~1.1.2: version "1.1.2" - resolved "https://npm.corp.kuaishou.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" + resolved "https://npm.corp.kuaishou.com/vary/-/vary-1.1.2.tgz" integrity sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg== vite@~3.0.9: version "3.0.9" - resolved "https://npm.corp.kuaishou.com/vite/-/vite-3.0.9.tgz#45fac22c2a5290a970f23d66c1aef56a04be8a30" + resolved "https://npm.corp.kuaishou.com/vite/-/vite-3.0.9.tgz" integrity sha512-waYABTM+G6DBTCpYAxvevpG50UOlZuynR0ckTK5PawNVt7ebX6X7wNXHaGIO6wYYFXSM7/WcuFuO2QzhBB6aMw== dependencies: esbuild "^0.14.47" @@ -4755,30 +6539,59 @@ vite@~3.0.9: optionalDependencies: fsevents "~2.3.2" +vscode-oniguruma@^1.6.1: + version "1.6.2" + resolved "https://npm.corp.kuaishou.com/vscode-oniguruma/-/vscode-oniguruma-1.6.2.tgz" + integrity sha512-KH8+KKov5eS/9WhofZR8M8dMHWN2gTxjMsG4jd04YhpbPR91fUj7rYQ2/XjeHCJWbg7X++ApRIU9NUwM2vTvLA== + +vscode-textmate@5.2.0: + version "5.2.0" + resolved "https://npm.corp.kuaishou.com/vscode-textmate/-/vscode-textmate-5.2.0.tgz" + integrity sha1-AfAXYKOR6CIv5PM/vMvRrXGu104= + vue-demi@*: version "0.13.11" - resolved "https://npm.corp.kuaishou.com/vue-demi/-/vue-demi-0.13.11.tgz#7d90369bdae8974d87b1973564ad390182410d99" + resolved "https://npm.corp.kuaishou.com/vue-demi/-/vue-demi-0.13.11.tgz" integrity sha512-IR8HoEEGM65YY3ZJYAjMlKygDQn25D5ajNFNoKh9RSDMQtlzCxtfQjdQgv9jjK+m3377SsJXY8ysq8kLCZL25A== vue-loader@^17.0.0: version "17.0.1" - resolved "https://npm.corp.kuaishou.com/vue-loader/-/vue-loader-17.0.1.tgz#c0ee8875e0610a0c2d13ba9b4d50a9c8442e7a3a" + resolved "https://npm.corp.kuaishou.com/vue-loader/-/vue-loader-17.0.1.tgz" integrity sha512-/OOyugJnImKCkAKrAvdsWMuwoCqGxWT5USLsjohzWbMgOwpA5wQmzQiLMzZd7DjhIfunzAGIApTOgIylz/kwcg== dependencies: chalk "^4.1.0" hash-sum "^2.0.0" loader-utils "^2.0.0" -vue-router@^4.1.4, vue-router@^4.1.5: +vue-playground@0.1.10: + version "0.1.10" + resolved "https://npm.corp.kuaishou.com/vue-playground/-/vue-playground-0.1.10.tgz" + integrity sha512-baONjL5Mx3GJjAXNo83eV/LNW0uz1QJO3UVEmxCYP+unc8Fzp2XCHN08nhqrATtIIo8B0rMuvh24jM/xa9jO0g== + dependencies: + "@babel/standalone" "^7.17.11" + "@babel/types" "^7.17.10" + "@types/babel__core" "^7.1.19" + "@types/babel__standalone" "^7.1.4" + "@vue/reactivity" "^3.2.33" + "@vue/runtime-core" "^3.2.33" + "@vue/runtime-dom" "^3.2.33" + "@vue/shared" "^3.2.33" + "@vueuse/core" "^8.4.1" + emmet-monaco-es "^5.1.0" + js-base64 "^3.7.2" + theme-vitesse "^0.4.9" + vue-demi "*" + +vue-router@^4.0.15, vue-router@^4.0.5, vue-router@^4.1.4, vue-router@^4.1.5: version "4.1.6" - resolved "https://npm.corp.kuaishou.com/vue-router/-/vue-router-4.1.6.tgz#b70303737e12b4814578d21d68d21618469375a1" + resolved "https://npm.corp.kuaishou.com/vue-router/-/vue-router-4.1.6.tgz" integrity sha512-DYWYwsG6xNPmLq/FmZn8Ip+qrhFEzA14EI12MsMgVxvHFDYvlr4NXpVF5hrRH1wVcDP8fGi5F4rxuJSl8/r+EQ== dependencies: "@vue/devtools-api" "^6.4.5" -vue@^3.2.37, vue@^3.2.38, vue@^3.2.40: +vue@^3.0.7, vue@^3.2.31, vue@^3.2.33, vue@^3.2.37, vue@^3.2.38, vue@^3.2.40: version "3.2.41" - resolved "https://npm.corp.kuaishou.com/vue/-/vue-3.2.41.tgz#ed452b8a0f7f2b962f055c8955139c28b1c06806" + resolved "https://npm.corp.kuaishou.com/vue/-/vue-3.2.41.tgz" integrity sha512-uuuvnrDXEeZ9VUPljgHkqB5IaVO8SxhPpqF2eWOukVrBnRBx2THPSGQBnVRt0GrIG1gvCmFXMGbd7FqcT1ixNQ== dependencies: "@vue/compiler-dom" "3.2.41" @@ -4787,9 +6600,27 @@ vue@^3.2.37, vue@^3.2.38, vue@^3.2.40: "@vue/server-renderer" "3.2.41" "@vue/shared" "3.2.41" +vuepress-plugin-sandbox@^0.1.10: + version "0.1.10" + resolved "https://npm.corp.kuaishou.com/vuepress-plugin-sandbox/-/vuepress-plugin-sandbox-0.1.10.tgz" + integrity sha512-UNLyIwcMdnCTlpJt6q2FqklS0sXcMghPXTc649lrBWdq1vmDXdmZ3/GiD5gkVBk4wXx5kreYuX3XoS5W50a5iw== + dependencies: + "@types/markdown-it-container" "^2.0.5" + "@vue/shared" "^3.2.33" + "@vuepress/client" "2.0.0-beta.45" + "@vuepress/core" "2.0.0-beta.45" + "@vuepress/markdown" "2.0.0-beta.45" + "@vueuse/core" "^8.4.1" + markdown-it "^13.0.1" + markdown-it-container "^3.0.0" + monaco-editor "^0.33.0" + vue "^3.2.31" + vue-demi "*" + vue-playground "0.1.10" + vuepress-theme-reco@2.0.0-beta.41: version "2.0.0-beta.41" - resolved "https://npm.corp.kuaishou.com/vuepress-theme-reco/-/vuepress-theme-reco-2.0.0-beta.41.tgz#c89ebccbee16f12d2c09e5575e8e48351cea91b1" + resolved "https://npm.corp.kuaishou.com/vuepress-theme-reco/-/vuepress-theme-reco-2.0.0-beta.41.tgz" integrity sha512-WLeqjqLT9i4H6gtvgLhwnp7EpRHSahctzRVMmwPtwTwzuwjO3lNWC8zxRSGvzaqZIHMCUsxLyx0UttQCXvNyvA== dependencies: "@vicons/fa" "^0.12.0" @@ -4828,7 +6659,7 @@ vuepress-theme-reco@2.0.0-beta.41: vuepress-vite@2.0.0-beta.51: version "2.0.0-beta.51" - resolved "https://npm.corp.kuaishou.com/vuepress-vite/-/vuepress-vite-2.0.0-beta.51.tgz#b31fce166b33c43eedbdb1da8d75f723b2f2e3d2" + resolved "https://npm.corp.kuaishou.com/vuepress-vite/-/vuepress-vite-2.0.0-beta.51.tgz" integrity sha512-EfvIBwmgRmj5xO6a3hZxRB5PRNkNK3f6RWunBEgRB31sDpGz9ZAEOTRZZ8lIPM/H1wSH39JkHUDm7fVgeuCCDg== dependencies: "@vuepress/bundler-vite" "2.0.0-beta.51" @@ -4838,14 +6669,19 @@ vuepress-vite@2.0.0-beta.51: vuepress@2.0.0-beta.51: version "2.0.0-beta.51" - resolved "https://npm.corp.kuaishou.com/vuepress/-/vuepress-2.0.0-beta.51.tgz#4a9d6baa00c477f288bd5dc23e97113495565b94" + resolved "https://npm.corp.kuaishou.com/vuepress/-/vuepress-2.0.0-beta.51.tgz" integrity sha512-IEavO4+9OpyjL9UANVbH8LZ3Cgmj6Amjt41JPM5nZ29U0aDsHJeVWDwyuMVYTlOvZiY+JDHEtIbfM839wFzEcw== dependencies: vuepress-vite "2.0.0-beta.51" +walk-up-path@^1.0.0: + version "1.0.0" + resolved "https://npm.corp.kuaishou.com/walk-up-path/-/walk-up-path-1.0.0.tgz" + integrity sha1-1HReiT3V/Q27WN0KTGoz2cn+xT4= + watchpack@^2.4.0: version "2.4.0" - resolved "https://npm.corp.kuaishou.com/watchpack/-/watchpack-2.4.0.tgz#fa33032374962c78113f93c7f2fb4c54c9862a5d" + resolved "https://npm.corp.kuaishou.com/watchpack/-/watchpack-2.4.0.tgz" integrity sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg== dependencies: glob-to-regexp "^0.4.1" @@ -4853,21 +6689,21 @@ watchpack@^2.4.0: wbuf@^1.1.0, wbuf@^1.7.3: version "1.7.3" - resolved "https://npm.corp.kuaishou.com/wbuf/-/wbuf-1.7.3.tgz#c1d8d149316d3ea852848895cb6a0bfe887b87df" + resolved "https://npm.corp.kuaishou.com/wbuf/-/wbuf-1.7.3.tgz" integrity sha1-wdjRSTFtPqhShIiVy2oL/oh7h98= dependencies: minimalistic-assert "^1.0.0" -wcwidth@^1.0.1: +wcwidth@^1.0.0, wcwidth@^1.0.1: version "1.0.1" - resolved "https://npm.corp.kuaishou.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8" + resolved "https://npm.corp.kuaishou.com/wcwidth/-/wcwidth-1.0.1.tgz" integrity sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg== dependencies: defaults "^1.0.3" -webpack-chain@^6.5.1: +webpack-chain@^6.0.0, webpack-chain@^6.5.1: version "6.5.1" - resolved "https://npm.corp.kuaishou.com/webpack-chain/-/webpack-chain-6.5.1.tgz#4f27284cbbb637e3c8fbdef43eef588d4d861206" + resolved "https://npm.corp.kuaishou.com/webpack-chain/-/webpack-chain-6.5.1.tgz" integrity sha1-TycoTLu2N+PI+970Pu9YjU2GEgY= dependencies: deepmerge "^1.5.2" @@ -4875,7 +6711,7 @@ webpack-chain@^6.5.1: webpack-dev-middleware@^5.3.1: version "5.3.3" - resolved "https://npm.corp.kuaishou.com/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz#efae67c2793908e7311f1d9b06f2a08dcc97e51f" + resolved "https://npm.corp.kuaishou.com/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz" integrity sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA== dependencies: colorette "^2.0.10" @@ -4886,7 +6722,7 @@ webpack-dev-middleware@^5.3.1: webpack-dev-server@^4.10.0: version "4.11.1" - resolved "https://npm.corp.kuaishou.com/webpack-dev-server/-/webpack-dev-server-4.11.1.tgz#ae07f0d71ca0438cf88446f09029b92ce81380b5" + resolved "https://npm.corp.kuaishou.com/webpack-dev-server/-/webpack-dev-server-4.11.1.tgz" integrity sha512-lILVz9tAUy1zGFwieuaQtYiadImb5M3d+H+L1zDYalYoDl0cksAB1UNyuE5MMWJrG6zR1tXkCP2fitl7yoUJiw== dependencies: "@types/bonjour" "^3.5.9" @@ -4921,7 +6757,7 @@ webpack-dev-server@^4.10.0: webpack-merge@^5.8.0: version "5.8.0" - resolved "https://npm.corp.kuaishou.com/webpack-merge/-/webpack-merge-5.8.0.tgz#2b39dbf22af87776ad744c390223731d30a68f61" + resolved "https://npm.corp.kuaishou.com/webpack-merge/-/webpack-merge-5.8.0.tgz" integrity sha1-Kznb8ir4d3atdEw5AiNzHTCmj2E= dependencies: clone-deep "^4.0.1" @@ -4929,7 +6765,7 @@ webpack-merge@^5.8.0: webpack-sources@^2.2.0: version "2.3.1" - resolved "https://npm.corp.kuaishou.com/webpack-sources/-/webpack-sources-2.3.1.tgz#570de0af163949fe272233c2cefe1b56f74511fd" + resolved "https://npm.corp.kuaishou.com/webpack-sources/-/webpack-sources-2.3.1.tgz" integrity sha512-y9EI9AO42JjEcrTJFOYmVywVZdKVUfOvDUPsJea5GIr1JOEGFVqwlY2K098fFoIjOkDzHn2AjRvM8dsBZu+gCA== dependencies: source-list-map "^2.0.1" @@ -4937,12 +6773,12 @@ webpack-sources@^2.2.0: webpack-sources@^3.2.3: version "3.2.3" - resolved "https://npm.corp.kuaishou.com/webpack-sources/-/webpack-sources-3.2.3.tgz#2d4daab8451fd4b240cc27055ff6a0c2ccea0cde" + resolved "https://npm.corp.kuaishou.com/webpack-sources/-/webpack-sources-3.2.3.tgz" integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w== webpack@^5.74.0: version "5.74.0" - resolved "https://npm.corp.kuaishou.com/webpack/-/webpack-5.74.0.tgz#02a5dac19a17e0bb47093f2be67c695102a55980" + resolved "https://npm.corp.kuaishou.com/webpack/-/webpack-5.74.0.tgz" integrity sha512-A2InDwnhhGN4LYctJj6M1JEaGL7Luj6LOmyBHjcI8529cm5p6VXiTIW2sn6ffvEAKmveLzvu4jrihwXtPojlAA== dependencies: "@types/eslint-scope" "^3.7.3" @@ -4972,7 +6808,7 @@ webpack@^5.74.0: websocket-driver@>=0.5.1, websocket-driver@^0.7.4: version "0.7.4" - resolved "https://npm.corp.kuaishou.com/websocket-driver/-/websocket-driver-0.7.4.tgz#89ad5295bbf64b480abcba31e4953aca706f5760" + resolved "https://npm.corp.kuaishou.com/websocket-driver/-/websocket-driver-0.7.4.tgz" integrity sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg== dependencies: http-parser-js ">=0.5.1" @@ -4981,29 +6817,36 @@ websocket-driver@>=0.5.1, websocket-driver@^0.7.4: websocket-extensions@>=0.1.1: version "0.1.4" - resolved "https://npm.corp.kuaishou.com/websocket-extensions/-/websocket-extensions-0.1.4.tgz#7f8473bc839dfd87608adb95d7eb075211578a42" + resolved "https://npm.corp.kuaishou.com/websocket-extensions/-/websocket-extensions-0.1.4.tgz" integrity sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg== -which@^2.0.1: +which@^2.0.1, which@^2.0.2: version "2.0.2" - resolved "https://npm.corp.kuaishou.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" + resolved "https://npm.corp.kuaishou.com/which/-/which-2.0.2.tgz" integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== dependencies: isexe "^2.0.0" +wide-align@^1.1.5: + version "1.1.5" + resolved "https://npm.corp.kuaishou.com/wide-align/-/wide-align-1.1.5.tgz" + integrity sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg== + dependencies: + string-width "^1.0.2 || 2 || 3 || 4" + wildcard@^2.0.0: version "2.0.0" - resolved "https://npm.corp.kuaishou.com/wildcard/-/wildcard-2.0.0.tgz#a77d20e5200c6faaac979e4b3aadc7b3dd7f8fec" + resolved "https://npm.corp.kuaishou.com/wildcard/-/wildcard-2.0.0.tgz" integrity sha1-p30g5SAMb6qsl55LOq3Hs91/j+w= window-size@^0.1.4: version "0.1.4" - resolved "https://npm.corp.kuaishou.com/window-size/-/window-size-0.1.4.tgz#f8e1aa1ee5a53ec5bf151ffa09742a6ad7697876" + resolved "https://npm.corp.kuaishou.com/window-size/-/window-size-0.1.4.tgz" integrity sha1-+OGqHuWlPsW/FR/6CXQqatdpeHY= wrap-ansi@^2.0.0: version "2.1.0" - resolved "https://npm.corp.kuaishou.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" + resolved "https://npm.corp.kuaishou.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz" integrity sha512-vAaEaDM946gbNpH5pLVNR+vX2ht6n0Bt3GXwVB1AuAqZosOvHNF3P7wDnh8KLkSqgUh0uh77le7Owgoz+Z9XBw== dependencies: string-width "^1.0.1" @@ -5011,24 +6854,32 @@ wrap-ansi@^2.0.0: wrappy@1: version "1.0.2" - resolved "https://npm.corp.kuaishou.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + resolved "https://npm.corp.kuaishou.com/wrappy/-/wrappy-1.0.2.tgz" integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= +write-file-atomic@^4.0.0, write-file-atomic@^4.0.1: + version "4.0.2" + resolved "https://npm.corp.kuaishou.com/write-file-atomic/-/write-file-atomic-4.0.2.tgz" + integrity sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg== + dependencies: + imurmurhash "^0.1.4" + signal-exit "^3.0.7" + ws@^5.2.2: version "5.2.3" - resolved "https://npm.corp.kuaishou.com/ws/-/ws-5.2.3.tgz#05541053414921bc29c63bee14b8b0dd50b07b3d" + resolved "https://npm.corp.kuaishou.com/ws/-/ws-5.2.3.tgz" integrity sha512-jZArVERrMsKUatIdnLzqvcfydI85dvd/Fp1u/VOpfdDWQ4c9qWXe+VIeAbQ5FrDwciAkr+lzofXLz3Kuf26AOA== dependencies: async-limiter "~1.0.0" ws@^8.4.2: version "8.11.0" - resolved "https://npm.corp.kuaishou.com/ws/-/ws-8.11.0.tgz#6a0d36b8edfd9f96d8b25683db2f8d7de6e8e143" + resolved "https://npm.corp.kuaishou.com/ws/-/ws-8.11.0.tgz" integrity sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg== xss@^1.0.6: version "1.0.14" - resolved "https://npm.corp.kuaishou.com/xss/-/xss-1.0.14.tgz#4f3efbde75ad0d82e9921cc3c95e6590dd336694" + resolved "https://npm.corp.kuaishou.com/xss/-/xss-1.0.14.tgz" integrity sha512-og7TEJhXvn1a7kzZGQ7ETjdQVS2UfZyTlsEdDOqvQF7GoxNfY+0YLCzBy1kPdsDDx4QuNAonQPddpsn6Xl/7sw== dependencies: commander "^2.20.3" @@ -5036,27 +6887,27 @@ xss@^1.0.6: xtend@^4.0.2: version "4.0.2" - resolved "https://npm.corp.kuaishou.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" + resolved "https://npm.corp.kuaishou.com/xtend/-/xtend-4.0.2.tgz" integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== y18n@^3.2.0: version "3.2.2" - resolved "https://npm.corp.kuaishou.com/y18n/-/y18n-3.2.2.tgz#85c901bd6470ce71fc4bb723ad209b70f7f28696" + resolved "https://npm.corp.kuaishou.com/y18n/-/y18n-3.2.2.tgz" integrity sha1-hckBvWRwznH8S7cjrSCbcPfyhpY= yallist@^4.0.0: version "4.0.0" - resolved "https://npm.corp.kuaishou.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" + resolved "https://npm.corp.kuaishou.com/yallist/-/yallist-4.0.0.tgz" integrity sha1-m7knkNnA7/7GO+c1GeEaNQGaOnI= yaml@^1.10.0, yaml@^1.10.2: version "1.10.2" - resolved "https://npm.corp.kuaishou.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" + resolved "https://npm.corp.kuaishou.com/yaml/-/yaml-1.10.2.tgz" integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== yargs@^3.10.0: version "3.32.0" - resolved "https://npm.corp.kuaishou.com/yargs/-/yargs-3.32.0.tgz#03088e9ebf9e756b69751611d2a5ef591482c995" + resolved "https://npm.corp.kuaishou.com/yargs/-/yargs-3.32.0.tgz" integrity sha512-ONJZiimStfZzhKamYvR/xvmgW3uEkAUFSP91y2caTEPhzF6uP2JfPiVZcq66b/YR0C3uitxSV7+T1x8p5bkmMg== dependencies: camelcase "^2.0.1"