Commit 1046fea4 authored by haiyoucuv's avatar haiyoucuv

init

parent 867d7740
......@@ -9,7 +9,7 @@
"version": "1.0.0",
"dependencies": {
"@types/fs-extra": "^5.0.4",
"@types/node": "^14.5.2",
"@types/node": "^18.17.1",
"ali-oss": "^6.19.0",
"fs-extra": "^10.0.0",
"jszip": "^3.10.1",
......@@ -27,10 +27,12 @@
}
},
"node_modules/@types/node": {
"version": "14.18.63",
"resolved": "http://npm.dui88.com:80/@types%2fnode/-/node-14.18.63.tgz",
"integrity": "sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ==",
"license": "MIT"
"version": "18.19.110",
"resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.110.tgz",
"integrity": "sha512-WW2o4gTmREtSnqKty9nhqF/vA0GKd0V/rbC0OyjSk9Bz6bzlsXKT+i7WDdS/a0z74rfT2PO4dArVCSnapNLA5Q==",
"dependencies": {
"undici-types": "~5.26.4"
}
},
"node_modules/address": {
"version": "1.2.2",
......@@ -946,6 +948,11 @@
"node": ">=14.17"
}
},
"node_modules/undici-types": {
"version": "5.26.5",
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz",
"integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA=="
},
"node_modules/unescape": {
"version": "1.0.1",
"resolved": "http://npm.dui88.com:80/unescape/-/unescape-1.0.1.tgz",
......
......@@ -13,7 +13,7 @@
},
"dependencies": {
"@types/fs-extra": "^5.0.4",
"@types/node": "^14.5.2",
"@types/node": "^18.17.1",
"ali-oss": "^6.19.0",
"fs-extra": "^10.0.0",
"jszip": "^3.10.1",
......
......@@ -53,6 +53,48 @@ export async function compressAllImage(paths = [], root) {
getImages(root + "/" + dir, imgs);
});
// let completed = 0;
//
// const chunkSize = 20;
//
// const userHomeDir = Os.homedir();
// const cacheDir = path.join(userHomeDir, ".image_compress_cache");
//
// if (!fs.existsSync(cacheDir)) await fs.mkdir(cacheDir, { recursive: true });
//
// const now = Date.now();
// const tempDir = path.join(userHomeDir, `.image_compress_temp/${now}`);
//
// for (let i = 0; i < paths.length; i += chunkSize) {
// const chunk = paths.slice(i, i + chunkSize);
//
// const ps = chunk.map(async (imgPath, idx) => {
// const tempName = `${tempDir}/${i + idx}.png`;
//
// // 检查缓存
// const fileBuffer = await fs.readFile(imgPath);
// const md5Hash = crypto.createHash("md5").update(fileBuffer).digest("hex");
// const cachedFilePath = path.join(cacheDir, `${md5Hash}.png`);
//
// if (fs.existsSync(cachedFilePath)) {
// // 如果缓存文件存在,直接复制到目标路径
// await fs.copyFile(cachedFilePath, imgPath);
// } else {
// // 如果缓存文件不存在,执行压缩操作并缓存
// await fs.copyFile(imgPath, tempName);
// execSync(`"${pngquantPath}" ${compressOptions} "${tempName}"`);
// await fs.copyFile(tempName, imgPath);
// await fs.copyFile(tempName, cachedFilePath);
// }
//
// completed++;
// });
//
// await Promise.all(ps);
// }
//
// await fs.rm(tempDir, { recursive: true });
if (platform == "win32") {
const now = Date.now();
......@@ -104,33 +146,4 @@ export async function compressAllImage(paths = [], root) {
}
// const tasks = imgs.map((imgPath) => {
// return new Promise<void>((resolve) => {
// try {
// const command = `"${pngquantPath}" ${compressOptions} "${imgPath}"`;
//
// console.log(command);
//
// const originSize = fs.statSync(imgPath).size / 1000;
//
// exec(command, (error, stdout, stderr) => {
// if (error) {
// // console.error(error);
// } else {
// const size = fs.statSync(imgPath).size / 1000;
// // 计算压缩率
// const rate = ((originSize - size) / originSize) * 100;
// console.log(`%c压缩图片成功, ${originSize}k -> ${size}k 压缩率:${rate.toFixed(2)}%`, "color: green");
// }
// resolve();
// });
// } catch (e) {
// console.error(e);
// resolve();
// }
// });
// });
//
// await Promise.all(tasks);
}
......@@ -3,685 +3,692 @@
"@types/fs-extra@^5.0.4":
"integrity" "sha1-KjJe+XkBUEo4KHGMOQ00uEJqEKE="
"resolved" "http://npm.dui88.com:80/@types%2ffs-extra/-/fs-extra-5.1.0.tgz"
"version" "5.1.0"
version "5.1.0"
resolved "http://npm.dui88.com:80/@types%2ffs-extra/-/fs-extra-5.1.0.tgz"
integrity sha1-KjJe+XkBUEo4KHGMOQ00uEJqEKE=
dependencies:
"@types/node" "*"
"@types/node@*", "@types/node@^14.5.2":
"integrity" "sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ=="
"resolved" "http://npm.dui88.com:80/@types%2fnode/-/node-14.18.63.tgz"
"version" "14.18.63"
"address@^1.2.2":
"integrity" "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA=="
"resolved" "http://npm.dui88.com:80/address/-/address-1.2.2.tgz"
"version" "1.2.2"
"agentkeepalive@^3.4.1":
"integrity" "sha512-yqXL+k5rr8+ZRpOAntkaaRgWgE5o8ESAj5DyRmVTCSoZxXmqemb9Dd7T4i5UzwuERdLAJUy6XzR9zFVuf0kzkw=="
"resolved" "http://npm.dui88.com:80/agentkeepalive/-/agentkeepalive-3.5.3.tgz"
"version" "3.5.3"
dependencies:
"humanize-ms" "^1.2.1"
"ali-oss@^6.19.0":
"integrity" "sha512-X8CHo+wsjCBvDaEvuibFOi3SZxiCBZSRUURrXH0upoVwu3SuW3e+PTVK7xw+uN6EyTcAESqrngrQimhp8iBzsQ=="
"resolved" "http://npm.dui88.com:80/ali-oss/-/ali-oss-6.22.0.tgz"
"version" "6.22.0"
dependencies:
"address" "^1.2.2"
"agentkeepalive" "^3.4.1"
"bowser" "^1.6.0"
"copy-to" "^2.0.1"
"dateformat" "^2.0.0"
"debug" "^4.3.4"
"destroy" "^1.0.4"
"end-or-error" "^1.0.1"
"get-ready" "^1.0.0"
"humanize-ms" "^1.2.0"
"is-type-of" "^1.4.0"
"js-base64" "^2.5.2"
"jstoxml" "^2.0.0"
"lodash" "^4.17.21"
"merge-descriptors" "^1.0.1"
"mime" "^2.4.5"
"platform" "^1.3.1"
"pump" "^3.0.0"
"qs" "^6.4.0"
"sdk-base" "^2.0.1"
"stream-http" "2.8.2"
"stream-wormhole" "^1.0.4"
"urllib" "^2.44.0"
"utility" "^1.18.0"
"xml2js" "^0.6.2"
"any-promise@^1.0.0", "any-promise@^1.3.0":
"integrity" "sha1-q8av7tzqUugJzcA3au0845Y10X8="
"resolved" "http://npm.dui88.com:80/any-promise/-/any-promise-1.3.0.tgz"
"version" "1.3.0"
"bowser@^1.6.0":
"integrity" "sha1-iQxYooE6nTJDcEM0+oG5alwVDJo="
"resolved" "http://npm.dui88.com:80/bowser/-/bowser-1.9.4.tgz"
"version" "1.9.4"
"builtin-status-codes@^3.0.0":
"integrity" "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug="
"resolved" "http://npm.dui88.com:80/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz"
"version" "3.0.0"
"call-bind-apply-helpers@^1.0.1":
"integrity" "sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g=="
"resolved" "http://npm.dui88.com:80/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.1.tgz"
"version" "1.0.1"
dependencies:
"es-errors" "^1.3.0"
"function-bind" "^1.1.2"
"call-bound@^1.0.2":
"integrity" "sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA=="
"resolved" "http://npm.dui88.com:80/call-bound/-/call-bound-1.0.3.tgz"
"version" "1.0.3"
dependencies:
"call-bind-apply-helpers" "^1.0.1"
"get-intrinsic" "^1.2.6"
"content-type@^1.0.2":
"integrity" "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA=="
"resolved" "http://npm.dui88.com:80/content-type/-/content-type-1.0.5.tgz"
"version" "1.0.5"
"copy-to@^2.0.1":
"integrity" "sha1-JoD7uAaKSNCGVrYJgJK9r8kG9KU="
"resolved" "http://npm.dui88.com:80/copy-to/-/copy-to-2.0.1.tgz"
"version" "2.0.1"
"core-util-is@^1.0.2", "core-util-is@~1.0.0":
"integrity" "sha1-pgQtNjTCsn6TKPg3uWX6yDgI24U="
"resolved" "http://npm.dui88.com:80/core-util-is/-/core-util-is-1.0.3.tgz"
"version" "1.0.3"
"dateformat@^2.0.0":
"integrity" "sha1-QGXiATz5+5Ft39gu+1Bq1MZ2kGI="
"resolved" "http://npm.dui88.com:80/dateformat/-/dateformat-2.2.0.tgz"
"version" "2.2.0"
"debug@^4.3.4":
"integrity" "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA=="
"resolved" "http://npm.dui88.com:80/debug/-/debug-4.4.0.tgz"
"version" "4.4.0"
dependencies:
"ms" "^2.1.3"
"default-user-agent@^1.0.0":
"integrity" "sha1-FsRu/cq6PtxF8k8r1IaLAbfCrcY="
"resolved" "http://npm.dui88.com:80/default-user-agent/-/default-user-agent-1.0.0.tgz"
"version" "1.0.0"
dependencies:
"os-name" "~1.0.3"
"destroy@^1.0.4":
"integrity" "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg=="
"resolved" "http://npm.dui88.com:80/destroy/-/destroy-1.2.0.tgz"
"version" "1.2.0"
"digest-header@^1.0.0":
"integrity" "sha512-glXVh42vz40yZb9Cq2oMOt70FIoWiv+vxNvdKdU8CwjLad25qHM3trLxhl9bVjdr6WaslIXhWpn0NO8T/67Qjg=="
"resolved" "http://npm.dui88.com:80/digest-header/-/digest-header-1.1.0.tgz"
"version" "1.1.0"
"dunder-proto@^1.0.0":
"integrity" "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A=="
"resolved" "http://npm.dui88.com:80/dunder-proto/-/dunder-proto-1.0.1.tgz"
"version" "1.0.1"
dependencies:
"call-bind-apply-helpers" "^1.0.1"
"es-errors" "^1.3.0"
"gopd" "^1.2.0"
"ee-first@~1.1.1":
"integrity" "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0="
"resolved" "http://npm.dui88.com:80/ee-first/-/ee-first-1.1.1.tgz"
"version" "1.1.1"
"end-of-stream@^1.1.0":
"integrity" "sha1-WuZKX0UFe682JuwU2gyl5LJDHrA="
"resolved" "http://npm.dui88.com:80/end-of-stream/-/end-of-stream-1.4.4.tgz"
"version" "1.4.4"
dependencies:
"once" "^1.4.0"
"end-or-error@^1.0.1":
"integrity" "sha1-3HpiEP5403L+4kqLSJnb0VVBTcs="
"resolved" "http://npm.dui88.com:80/end-or-error/-/end-or-error-1.0.1.tgz"
"version" "1.0.1"
"es-define-property@^1.0.1":
"integrity" "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g=="
"resolved" "http://npm.dui88.com:80/es-define-property/-/es-define-property-1.0.1.tgz"
"version" "1.0.1"
"es-errors@^1.3.0":
"integrity" "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw=="
"resolved" "http://npm.dui88.com:80/es-errors/-/es-errors-1.3.0.tgz"
"version" "1.3.0"
"es-object-atoms@^1.0.0":
"integrity" "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw=="
"resolved" "http://npm.dui88.com:80/es-object-atoms/-/es-object-atoms-1.0.0.tgz"
"version" "1.0.0"
dependencies:
"es-errors" "^1.3.0"
"escape-html@^1.0.3":
"integrity" "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg="
"resolved" "http://npm.dui88.com:80/escape-html/-/escape-html-1.0.3.tgz"
"version" "1.0.3"
"extend-shallow@^2.0.1":
"integrity" "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8="
"resolved" "http://npm.dui88.com:80/extend-shallow/-/extend-shallow-2.0.1.tgz"
"version" "2.0.1"
dependencies:
"is-extendable" "^0.1.0"
"formstream@^1.1.0":
"integrity" "sha512-q7ORzFqotpwn3Y/GBK2lK7PjtZZwJHz9QE9Phv8zb5IrL9ftGLyi2zjGURON3voK8TaZ+mqJKERYN4lrHYTkUQ=="
"resolved" "http://npm.dui88.com:80/formstream/-/formstream-1.5.1.tgz"
"version" "1.5.1"
dependencies:
"destroy" "^1.0.4"
"mime" "^2.5.2"
"node-hex" "^1.0.1"
"pause-stream" "~0.0.11"
"fs-extra@^10.0.0":
"integrity" "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ=="
"resolved" "http://npm.dui88.com:80/fs-extra/-/fs-extra-10.1.0.tgz"
"version" "10.1.0"
dependencies:
"graceful-fs" "^4.2.0"
"jsonfile" "^6.0.1"
"universalify" "^2.0.0"
"function-bind@^1.1.2":
"integrity" "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA=="
"resolved" "http://npm.dui88.com:80/function-bind/-/function-bind-1.1.2.tgz"
"version" "1.1.2"
"get-intrinsic@^1.2.5", "get-intrinsic@^1.2.6":
"integrity" "sha512-qxsEs+9A+u85HhllWJJFicJfPDhRmjzoYdl64aMWW9yRIJmSyxdn8IEkuIM530/7T+lv0TIHd8L6Q/ra0tEoeA=="
"resolved" "http://npm.dui88.com:80/get-intrinsic/-/get-intrinsic-1.2.6.tgz"
"version" "1.2.6"
dependencies:
"call-bind-apply-helpers" "^1.0.1"
"dunder-proto" "^1.0.0"
"es-define-property" "^1.0.1"
"es-errors" "^1.3.0"
"es-object-atoms" "^1.0.0"
"function-bind" "^1.1.2"
"gopd" "^1.2.0"
"has-symbols" "^1.1.0"
"hasown" "^2.0.2"
"math-intrinsics" "^1.0.0"
"get-ready@^1.0.0", "get-ready@~1.0.0":
"integrity" "sha1-+RgX8emt7P6hOlYq38jeiDqzR4I="
"resolved" "http://npm.dui88.com:80/get-ready/-/get-ready-1.0.0.tgz"
"version" "1.0.0"
"gopd@^1.2.0":
"integrity" "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg=="
"resolved" "http://npm.dui88.com:80/gopd/-/gopd-1.2.0.tgz"
"version" "1.2.0"
"graceful-fs@^4.1.6", "graceful-fs@^4.2.0":
"integrity" "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ=="
"resolved" "http://npm.dui88.com:80/graceful-fs/-/graceful-fs-4.2.11.tgz"
"version" "4.2.11"
"has-symbols@^1.1.0":
"integrity" "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ=="
"resolved" "http://npm.dui88.com:80/has-symbols/-/has-symbols-1.1.0.tgz"
"version" "1.1.0"
"hasown@^2.0.2":
"integrity" "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ=="
"resolved" "http://npm.dui88.com:80/hasown/-/hasown-2.0.2.tgz"
"version" "2.0.2"
dependencies:
"function-bind" "^1.1.2"
"humanize-ms@^1.2.0", "humanize-ms@^1.2.1":
"integrity" "sha1-xG4xWaKT9riW2ikxbYtv6Lt5u+0="
"resolved" "http://npm.dui88.com:80/humanize-ms/-/humanize-ms-1.2.1.tgz"
"version" "1.2.1"
dependencies:
"ms" "^2.0.0"
"iconv-lite@^0.6.3":
"integrity" "sha1-pS+AvzjaGVLrXGgXkHGYcaGnJQE="
"resolved" "http://npm.dui88.com:80/iconv-lite/-/iconv-lite-0.6.3.tgz"
"version" "0.6.3"
dependencies:
"safer-buffer" ">= 2.1.2 < 3.0.0"
"immediate@~3.0.5":
"integrity" "sha1-nbHb0Pr43m++D13V5Wu2BigN5ps="
"resolved" "http://npm.dui88.com:80/immediate/-/immediate-3.0.6.tgz"
"version" "3.0.6"
"inherits@^2.0.1", "inherits@~2.0.3":
"integrity" "sha1-D6LGT5MpF8NDOg3tVTY6rjdBa3w="
"resolved" "http://npm.dui88.com:80/inherits/-/inherits-2.0.4.tgz"
"version" "2.0.4"
"is-class-hotfix@~0.0.6":
"integrity" "sha1-pSfTH7IyeSgd3l84XHe13nCnJDU="
"resolved" "http://npm.dui88.com:80/is-class-hotfix/-/is-class-hotfix-0.0.6.tgz"
"version" "0.0.6"
"is-extendable@^0.1.0":
"integrity" "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik="
"resolved" "http://npm.dui88.com:80/is-extendable/-/is-extendable-0.1.1.tgz"
"version" "0.1.1"
"is-type-of@^1.4.0":
"integrity" "sha512-EddYllaovi5ysMLMEN7yzHEKh8A850cZ7pykrY1aNRQGn/CDjRDE9qEWbIdt7xGEVJmjBXzU/fNnC4ABTm8tEQ=="
"resolved" "http://npm.dui88.com:80/is-type-of/-/is-type-of-1.4.0.tgz"
"version" "1.4.0"
dependencies:
"core-util-is" "^1.0.2"
"is-class-hotfix" "~0.0.6"
"isstream" "~0.1.2"
"isarray@~1.0.0":
"integrity" "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE="
"resolved" "http://npm.dui88.com:80/isarray/-/isarray-1.0.0.tgz"
"version" "1.0.0"
"isstream@~0.1.2":
"integrity" "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo="
"resolved" "http://npm.dui88.com:80/isstream/-/isstream-0.1.2.tgz"
"version" "0.1.2"
"js-base64@^2.5.2":
"integrity" "sha1-9OaGxd4eofhn28rT1G2WlCjfmMQ="
"resolved" "http://npm.dui88.com:80/js-base64/-/js-base64-2.6.4.tgz"
"version" "2.6.4"
"jsonfile@^6.0.1":
"integrity" "sha1-vFWyY0eTxnnsZAMJTrE2mKbsCq4="
"resolved" "http://npm.dui88.com:80/jsonfile/-/jsonfile-6.1.0.tgz"
"version" "6.1.0"
dependencies:
"universalify" "^2.0.0"
"@types/node@*", "@types/node@^18.17.1":
version "18.19.110"
resolved "https://registry.npmjs.org/@types/node/-/node-18.19.110.tgz"
integrity sha512-WW2o4gTmREtSnqKty9nhqF/vA0GKd0V/rbC0OyjSk9Bz6bzlsXKT+i7WDdS/a0z74rfT2PO4dArVCSnapNLA5Q==
dependencies:
undici-types "~5.26.4"
address@^1.2.2:
version "1.2.2"
resolved "http://npm.dui88.com:80/address/-/address-1.2.2.tgz"
integrity sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==
agentkeepalive@^3.4.1:
version "3.5.3"
resolved "http://npm.dui88.com:80/agentkeepalive/-/agentkeepalive-3.5.3.tgz"
integrity sha512-yqXL+k5rr8+ZRpOAntkaaRgWgE5o8ESAj5DyRmVTCSoZxXmqemb9Dd7T4i5UzwuERdLAJUy6XzR9zFVuf0kzkw==
dependencies:
humanize-ms "^1.2.1"
ali-oss@^6.19.0:
version "6.22.0"
resolved "http://npm.dui88.com:80/ali-oss/-/ali-oss-6.22.0.tgz"
integrity sha512-X8CHo+wsjCBvDaEvuibFOi3SZxiCBZSRUURrXH0upoVwu3SuW3e+PTVK7xw+uN6EyTcAESqrngrQimhp8iBzsQ==
dependencies:
address "^1.2.2"
agentkeepalive "^3.4.1"
bowser "^1.6.0"
copy-to "^2.0.1"
dateformat "^2.0.0"
debug "^4.3.4"
destroy "^1.0.4"
end-or-error "^1.0.1"
get-ready "^1.0.0"
humanize-ms "^1.2.0"
is-type-of "^1.4.0"
js-base64 "^2.5.2"
jstoxml "^2.0.0"
lodash "^4.17.21"
merge-descriptors "^1.0.1"
mime "^2.4.5"
platform "^1.3.1"
pump "^3.0.0"
qs "^6.4.0"
sdk-base "^2.0.1"
stream-http "2.8.2"
stream-wormhole "^1.0.4"
urllib "^2.44.0"
utility "^1.18.0"
xml2js "^0.6.2"
any-promise@^1.0.0, any-promise@^1.3.0:
version "1.3.0"
resolved "http://npm.dui88.com:80/any-promise/-/any-promise-1.3.0.tgz"
integrity sha1-q8av7tzqUugJzcA3au0845Y10X8=
bowser@^1.6.0:
version "1.9.4"
resolved "http://npm.dui88.com:80/bowser/-/bowser-1.9.4.tgz"
integrity sha1-iQxYooE6nTJDcEM0+oG5alwVDJo=
builtin-status-codes@^3.0.0:
version "3.0.0"
resolved "http://npm.dui88.com:80/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz"
integrity sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=
call-bind-apply-helpers@^1.0.1:
version "1.0.1"
resolved "http://npm.dui88.com:80/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.1.tgz"
integrity sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==
dependencies:
es-errors "^1.3.0"
function-bind "^1.1.2"
call-bound@^1.0.2:
version "1.0.3"
resolved "http://npm.dui88.com:80/call-bound/-/call-bound-1.0.3.tgz"
integrity sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==
dependencies:
call-bind-apply-helpers "^1.0.1"
get-intrinsic "^1.2.6"
content-type@^1.0.2:
version "1.0.5"
resolved "http://npm.dui88.com:80/content-type/-/content-type-1.0.5.tgz"
integrity sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==
copy-to@^2.0.1:
version "2.0.1"
resolved "http://npm.dui88.com:80/copy-to/-/copy-to-2.0.1.tgz"
integrity sha1-JoD7uAaKSNCGVrYJgJK9r8kG9KU=
core-util-is@^1.0.2, core-util-is@~1.0.0:
version "1.0.3"
resolved "http://npm.dui88.com:80/core-util-is/-/core-util-is-1.0.3.tgz"
integrity sha1-pgQtNjTCsn6TKPg3uWX6yDgI24U=
dateformat@^2.0.0:
version "2.2.0"
resolved "http://npm.dui88.com:80/dateformat/-/dateformat-2.2.0.tgz"
integrity sha1-QGXiATz5+5Ft39gu+1Bq1MZ2kGI=
debug@^4.3.4:
version "4.4.0"
resolved "http://npm.dui88.com:80/debug/-/debug-4.4.0.tgz"
integrity sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==
dependencies:
ms "^2.1.3"
default-user-agent@^1.0.0:
version "1.0.0"
resolved "http://npm.dui88.com:80/default-user-agent/-/default-user-agent-1.0.0.tgz"
integrity sha1-FsRu/cq6PtxF8k8r1IaLAbfCrcY=
dependencies:
os-name "~1.0.3"
destroy@^1.0.4:
version "1.2.0"
resolved "http://npm.dui88.com:80/destroy/-/destroy-1.2.0.tgz"
integrity sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==
digest-header@^1.0.0:
version "1.1.0"
resolved "http://npm.dui88.com:80/digest-header/-/digest-header-1.1.0.tgz"
integrity sha512-glXVh42vz40yZb9Cq2oMOt70FIoWiv+vxNvdKdU8CwjLad25qHM3trLxhl9bVjdr6WaslIXhWpn0NO8T/67Qjg==
dunder-proto@^1.0.0:
version "1.0.1"
resolved "http://npm.dui88.com:80/dunder-proto/-/dunder-proto-1.0.1.tgz"
integrity sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==
dependencies:
call-bind-apply-helpers "^1.0.1"
es-errors "^1.3.0"
gopd "^1.2.0"
ee-first@~1.1.1:
version "1.1.1"
resolved "http://npm.dui88.com:80/ee-first/-/ee-first-1.1.1.tgz"
integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=
end-of-stream@^1.1.0:
version "1.4.4"
resolved "http://npm.dui88.com:80/end-of-stream/-/end-of-stream-1.4.4.tgz"
integrity sha1-WuZKX0UFe682JuwU2gyl5LJDHrA=
dependencies:
once "^1.4.0"
end-or-error@^1.0.1:
version "1.0.1"
resolved "http://npm.dui88.com:80/end-or-error/-/end-or-error-1.0.1.tgz"
integrity sha1-3HpiEP5403L+4kqLSJnb0VVBTcs=
es-define-property@^1.0.1:
version "1.0.1"
resolved "http://npm.dui88.com:80/es-define-property/-/es-define-property-1.0.1.tgz"
integrity sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==
es-errors@^1.3.0:
version "1.3.0"
resolved "http://npm.dui88.com:80/es-errors/-/es-errors-1.3.0.tgz"
integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==
es-object-atoms@^1.0.0:
version "1.0.0"
resolved "http://npm.dui88.com:80/es-object-atoms/-/es-object-atoms-1.0.0.tgz"
integrity sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==
dependencies:
es-errors "^1.3.0"
escape-html@^1.0.3:
version "1.0.3"
resolved "http://npm.dui88.com:80/escape-html/-/escape-html-1.0.3.tgz"
integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=
extend-shallow@^2.0.1:
version "2.0.1"
resolved "http://npm.dui88.com:80/extend-shallow/-/extend-shallow-2.0.1.tgz"
integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=
dependencies:
is-extendable "^0.1.0"
formstream@^1.1.0:
version "1.5.1"
resolved "http://npm.dui88.com:80/formstream/-/formstream-1.5.1.tgz"
integrity sha512-q7ORzFqotpwn3Y/GBK2lK7PjtZZwJHz9QE9Phv8zb5IrL9ftGLyi2zjGURON3voK8TaZ+mqJKERYN4lrHYTkUQ==
dependencies:
destroy "^1.0.4"
mime "^2.5.2"
node-hex "^1.0.1"
pause-stream "~0.0.11"
fs-extra@^10.0.0:
version "10.1.0"
resolved "http://npm.dui88.com:80/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"
function-bind@^1.1.2:
version "1.1.2"
resolved "http://npm.dui88.com:80/function-bind/-/function-bind-1.1.2.tgz"
integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==
get-intrinsic@^1.2.5, get-intrinsic@^1.2.6:
version "1.2.6"
resolved "http://npm.dui88.com:80/get-intrinsic/-/get-intrinsic-1.2.6.tgz"
integrity sha512-qxsEs+9A+u85HhllWJJFicJfPDhRmjzoYdl64aMWW9yRIJmSyxdn8IEkuIM530/7T+lv0TIHd8L6Q/ra0tEoeA==
dependencies:
call-bind-apply-helpers "^1.0.1"
dunder-proto "^1.0.0"
es-define-property "^1.0.1"
es-errors "^1.3.0"
es-object-atoms "^1.0.0"
function-bind "^1.1.2"
gopd "^1.2.0"
has-symbols "^1.1.0"
hasown "^2.0.2"
math-intrinsics "^1.0.0"
get-ready@^1.0.0, get-ready@~1.0.0:
version "1.0.0"
resolved "http://npm.dui88.com:80/get-ready/-/get-ready-1.0.0.tgz"
integrity sha1-+RgX8emt7P6hOlYq38jeiDqzR4I=
gopd@^1.2.0:
version "1.2.0"
resolved "http://npm.dui88.com:80/gopd/-/gopd-1.2.0.tgz"
integrity sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==
graceful-fs@^4.1.6, graceful-fs@^4.2.0:
version "4.2.11"
resolved "http://npm.dui88.com:80/graceful-fs/-/graceful-fs-4.2.11.tgz"
integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==
has-symbols@^1.1.0:
version "1.1.0"
resolved "http://npm.dui88.com:80/has-symbols/-/has-symbols-1.1.0.tgz"
integrity sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==
hasown@^2.0.2:
version "2.0.2"
resolved "http://npm.dui88.com:80/hasown/-/hasown-2.0.2.tgz"
integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==
dependencies:
function-bind "^1.1.2"
humanize-ms@^1.2.0, humanize-ms@^1.2.1:
version "1.2.1"
resolved "http://npm.dui88.com:80/humanize-ms/-/humanize-ms-1.2.1.tgz"
integrity sha1-xG4xWaKT9riW2ikxbYtv6Lt5u+0=
dependencies:
ms "^2.0.0"
iconv-lite@^0.6.3:
version "0.6.3"
resolved "http://npm.dui88.com:80/iconv-lite/-/iconv-lite-0.6.3.tgz"
integrity sha1-pS+AvzjaGVLrXGgXkHGYcaGnJQE=
dependencies:
safer-buffer ">= 2.1.2 < 3.0.0"
immediate@~3.0.5:
version "3.0.6"
resolved "http://npm.dui88.com:80/immediate/-/immediate-3.0.6.tgz"
integrity sha1-nbHb0Pr43m++D13V5Wu2BigN5ps=
inherits@^2.0.1, inherits@~2.0.3:
version "2.0.4"
resolved "http://npm.dui88.com:80/inherits/-/inherits-2.0.4.tgz"
integrity sha1-D6LGT5MpF8NDOg3tVTY6rjdBa3w=
is-class-hotfix@~0.0.6:
version "0.0.6"
resolved "http://npm.dui88.com:80/is-class-hotfix/-/is-class-hotfix-0.0.6.tgz"
integrity sha1-pSfTH7IyeSgd3l84XHe13nCnJDU=
is-extendable@^0.1.0:
version "0.1.1"
resolved "http://npm.dui88.com:80/is-extendable/-/is-extendable-0.1.1.tgz"
integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=
is-type-of@^1.4.0:
version "1.4.0"
resolved "http://npm.dui88.com:80/is-type-of/-/is-type-of-1.4.0.tgz"
integrity sha512-EddYllaovi5ysMLMEN7yzHEKh8A850cZ7pykrY1aNRQGn/CDjRDE9qEWbIdt7xGEVJmjBXzU/fNnC4ABTm8tEQ==
dependencies:
core-util-is "^1.0.2"
is-class-hotfix "~0.0.6"
isstream "~0.1.2"
isarray@~1.0.0:
version "1.0.0"
resolved "http://npm.dui88.com:80/isarray/-/isarray-1.0.0.tgz"
integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=
isstream@~0.1.2:
version "0.1.2"
resolved "http://npm.dui88.com:80/isstream/-/isstream-0.1.2.tgz"
integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=
js-base64@^2.5.2:
version "2.6.4"
resolved "http://npm.dui88.com:80/js-base64/-/js-base64-2.6.4.tgz"
integrity sha1-9OaGxd4eofhn28rT1G2WlCjfmMQ=
jsonfile@^6.0.1:
version "6.1.0"
resolved "http://npm.dui88.com:80/jsonfile/-/jsonfile-6.1.0.tgz"
integrity sha1-vFWyY0eTxnnsZAMJTrE2mKbsCq4=
dependencies:
universalify "^2.0.0"
optionalDependencies:
"graceful-fs" "^4.1.6"
"jstoxml@^2.0.0":
"integrity" "sha512-OYWlK0j+roh+eyaMROlNbS5cd5R25Y+IUpdl7cNdB8HNrkgwQzIS7L9MegxOiWNBj9dQhA/yAxiMwCC5mwNoBw=="
"resolved" "http://npm.dui88.com:80/jstoxml/-/jstoxml-2.2.9.tgz"
"version" "2.2.9"
"jszip@^3.10.1":
"integrity" "sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g=="
"resolved" "http://npm.dui88.com:80/jszip/-/jszip-3.10.1.tgz"
"version" "3.10.1"
dependencies:
"lie" "~3.3.0"
"pako" "~1.0.2"
"readable-stream" "~2.3.6"
"setimmediate" "^1.0.5"
"lie@~3.3.0":
"integrity" "sha1-3Pgt7lRfRgdNryAMfBxaCOD0D2o="
"resolved" "http://npm.dui88.com:80/lie/-/lie-3.3.0.tgz"
"version" "3.3.0"
dependencies:
"immediate" "~3.0.5"
"lodash@^4.17.21":
"integrity" "sha1-Z5WRxWTDv/quhFTPCz3zcMPWkRw="
"resolved" "http://npm.dui88.com:80/lodash/-/lodash-4.17.21.tgz"
"version" "4.17.21"
"math-intrinsics@^1.0.0":
"integrity" "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g=="
"resolved" "http://npm.dui88.com:80/math-intrinsics/-/math-intrinsics-1.1.0.tgz"
"version" "1.1.0"
"merge-descriptors@^1.0.1":
"integrity" "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ=="
"resolved" "http://npm.dui88.com:80/merge-descriptors/-/merge-descriptors-1.0.3.tgz"
"version" "1.0.3"
"mime@^2.4.5", "mime@^2.5.2":
"integrity" "sha1-oqaCqVzU0MsdYlfij4PafjWAA2c="
"resolved" "http://npm.dui88.com:80/mime/-/mime-2.6.0.tgz"
"version" "2.6.0"
"minimist@^1.1.0", "minimist@^1.2.6":
"integrity" "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA=="
"resolved" "http://npm.dui88.com:80/minimist/-/minimist-1.2.8.tgz"
"version" "1.2.8"
"mkdirp@^0.5.1":
"integrity" "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw=="
"resolved" "http://npm.dui88.com:80/mkdirp/-/mkdirp-0.5.6.tgz"
"version" "0.5.6"
dependencies:
"minimist" "^1.2.6"
"ms@^2.0.0", "ms@^2.1.3":
"integrity" "sha1-V0yBOM4dK1hh8LRFedut1gxmFbI="
"resolved" "http://npm.dui88.com:80/ms/-/ms-2.1.3.tgz"
"version" "2.1.3"
"mz@^2.7.0":
"integrity" "sha1-lQCAV6Vsr63CvGPd5/n/aVWUjjI="
"resolved" "http://npm.dui88.com:80/mz/-/mz-2.7.0.tgz"
"version" "2.7.0"
dependencies:
"any-promise" "^1.0.0"
"object-assign" "^4.0.1"
"thenify-all" "^1.0.0"
"node-hex@^1.0.1":
"integrity" "sha512-iwpZdvW6Umz12ICmu9IYPRxg0tOLGmU3Tq2tKetejCj3oZd7b2nUXwP3a7QA5M9glWy8wlPS1G3RwM/CdsUbdQ=="
"resolved" "http://npm.dui88.com:80/node-hex/-/node-hex-1.0.1.tgz"
"version" "1.0.1"
"object-assign@^4.0.1":
"integrity" "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM="
"resolved" "http://npm.dui88.com:80/object-assign/-/object-assign-4.1.1.tgz"
"version" "4.1.1"
"object-inspect@^1.13.3":
"integrity" "sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA=="
"resolved" "http://npm.dui88.com:80/object-inspect/-/object-inspect-1.13.3.tgz"
"version" "1.13.3"
"once@^1.3.1", "once@^1.4.0":
"integrity" "sha1-WDsap3WWHUsROsF9nFC6753Xa9E="
"resolved" "http://npm.dui88.com:80/once/-/once-1.4.0.tgz"
"version" "1.4.0"
dependencies:
"wrappy" "1"
"os-name@~1.0.3":
"integrity" "sha1-GzefZINa98Wn9JizV8uVIVwVnt8="
"resolved" "http://npm.dui88.com:80/os-name/-/os-name-1.0.3.tgz"
"version" "1.0.3"
dependencies:
"osx-release" "^1.0.0"
"win-release" "^1.0.0"
"osx-release@^1.0.0":
"integrity" "sha1-8heRGigTaUmvG/kwiyQeJzfTzWw="
"resolved" "http://npm.dui88.com:80/osx-release/-/osx-release-1.1.0.tgz"
"version" "1.1.0"
dependencies:
"minimist" "^1.1.0"
"pako@~1.0.2":
"integrity" "sha1-bJWZ00DVTf05RjgCUqNXBaa5kr8="
"resolved" "http://npm.dui88.com:80/pako/-/pako-1.0.11.tgz"
"version" "1.0.11"
"pause-stream@~0.0.11":
"integrity" "sha1-/lo0sMvOErWqaitAPuLnO2AvFEU="
"resolved" "http://npm.dui88.com:80/pause-stream/-/pause-stream-0.0.11.tgz"
"version" "0.0.11"
dependencies:
"through" "~2.3"
"platform@^1.3.1":
"integrity" "sha1-SLTOmDFksgnC1FoQetsx9HOm56c="
"resolved" "http://npm.dui88.com:80/platform/-/platform-1.3.6.tgz"
"version" "1.3.6"
"process-nextick-args@~2.0.0":
"integrity" "sha1-eCDZsWEgzFXKmud5JoCufbptf+I="
"resolved" "http://npm.dui88.com:80/process-nextick-args/-/process-nextick-args-2.0.1.tgz"
"version" "2.0.1"
"progress@^2.0.3":
"integrity" "sha1-foz42PW48jnBvGi+tOt4Vn1XLvg="
"resolved" "http://npm.dui88.com:80/progress/-/progress-2.0.3.tgz"
"version" "2.0.3"
"pump@^3.0.0":
"integrity" "sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw=="
"resolved" "http://npm.dui88.com:80/pump/-/pump-3.0.2.tgz"
"version" "3.0.2"
dependencies:
"end-of-stream" "^1.1.0"
"once" "^1.3.1"
"qs@^6.4.0":
"integrity" "sha512-EJPeIn0CYrGu+hli1xilKAPXODtJ12T0sP63Ijx2/khC2JtuaN3JyNIpvmnkmaEtha9ocbG4A4cMcr+TvqvwQg=="
"resolved" "http://npm.dui88.com:80/qs/-/qs-6.13.1.tgz"
"version" "6.13.1"
dependencies:
"side-channel" "^1.0.6"
"readable-stream@^2.3.6", "readable-stream@~2.3.6":
"integrity" "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA=="
"resolved" "http://npm.dui88.com:80/readable-stream/-/readable-stream-2.3.8.tgz"
"version" "2.3.8"
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"
"safe-buffer@~5.1.0", "safe-buffer@~5.1.1":
"integrity" "sha1-mR7GnSluAxN0fVm9/St0XDX4go0="
"resolved" "http://npm.dui88.com:80/safe-buffer/-/safe-buffer-5.1.2.tgz"
"version" "5.1.2"
graceful-fs "^4.1.6"
jstoxml@^2.0.0:
version "2.2.9"
resolved "http://npm.dui88.com:80/jstoxml/-/jstoxml-2.2.9.tgz"
integrity sha512-OYWlK0j+roh+eyaMROlNbS5cd5R25Y+IUpdl7cNdB8HNrkgwQzIS7L9MegxOiWNBj9dQhA/yAxiMwCC5mwNoBw==
jszip@^3.10.1:
version "3.10.1"
resolved "http://npm.dui88.com:80/jszip/-/jszip-3.10.1.tgz"
integrity sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==
dependencies:
lie "~3.3.0"
pako "~1.0.2"
readable-stream "~2.3.6"
setimmediate "^1.0.5"
lie@~3.3.0:
version "3.3.0"
resolved "http://npm.dui88.com:80/lie/-/lie-3.3.0.tgz"
integrity sha1-3Pgt7lRfRgdNryAMfBxaCOD0D2o=
dependencies:
immediate "~3.0.5"
lodash@^4.17.21:
version "4.17.21"
resolved "http://npm.dui88.com:80/lodash/-/lodash-4.17.21.tgz"
integrity sha1-Z5WRxWTDv/quhFTPCz3zcMPWkRw=
math-intrinsics@^1.0.0:
version "1.1.0"
resolved "http://npm.dui88.com:80/math-intrinsics/-/math-intrinsics-1.1.0.tgz"
integrity sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==
merge-descriptors@^1.0.1:
version "1.0.3"
resolved "http://npm.dui88.com:80/merge-descriptors/-/merge-descriptors-1.0.3.tgz"
integrity sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==
mime@^2.4.5, mime@^2.5.2:
version "2.6.0"
resolved "http://npm.dui88.com:80/mime/-/mime-2.6.0.tgz"
integrity sha1-oqaCqVzU0MsdYlfij4PafjWAA2c=
minimist@^1.1.0, minimist@^1.2.6:
version "1.2.8"
resolved "http://npm.dui88.com:80/minimist/-/minimist-1.2.8.tgz"
integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==
mkdirp@^0.5.1:
version "0.5.6"
resolved "http://npm.dui88.com:80/mkdirp/-/mkdirp-0.5.6.tgz"
integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==
dependencies:
minimist "^1.2.6"
ms@^2.0.0, ms@^2.1.3:
version "2.1.3"
resolved "http://npm.dui88.com:80/ms/-/ms-2.1.3.tgz"
integrity sha1-V0yBOM4dK1hh8LRFedut1gxmFbI=
mz@^2.7.0:
version "2.7.0"
resolved "http://npm.dui88.com:80/mz/-/mz-2.7.0.tgz"
integrity sha1-lQCAV6Vsr63CvGPd5/n/aVWUjjI=
dependencies:
any-promise "^1.0.0"
object-assign "^4.0.1"
thenify-all "^1.0.0"
node-hex@^1.0.1:
version "1.0.1"
resolved "http://npm.dui88.com:80/node-hex/-/node-hex-1.0.1.tgz"
integrity sha512-iwpZdvW6Umz12ICmu9IYPRxg0tOLGmU3Tq2tKetejCj3oZd7b2nUXwP3a7QA5M9glWy8wlPS1G3RwM/CdsUbdQ==
object-assign@^4.0.1:
version "4.1.1"
resolved "http://npm.dui88.com:80/object-assign/-/object-assign-4.1.1.tgz"
integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=
object-inspect@^1.13.3:
version "1.13.3"
resolved "http://npm.dui88.com:80/object-inspect/-/object-inspect-1.13.3.tgz"
integrity sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==
once@^1.3.1, once@^1.4.0:
version "1.4.0"
resolved "http://npm.dui88.com:80/once/-/once-1.4.0.tgz"
integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E=
dependencies:
wrappy "1"
os-name@~1.0.3:
version "1.0.3"
resolved "http://npm.dui88.com:80/os-name/-/os-name-1.0.3.tgz"
integrity sha1-GzefZINa98Wn9JizV8uVIVwVnt8=
dependencies:
osx-release "^1.0.0"
win-release "^1.0.0"
osx-release@^1.0.0:
version "1.1.0"
resolved "http://npm.dui88.com:80/osx-release/-/osx-release-1.1.0.tgz"
integrity sha1-8heRGigTaUmvG/kwiyQeJzfTzWw=
dependencies:
minimist "^1.1.0"
pako@~1.0.2:
version "1.0.11"
resolved "http://npm.dui88.com:80/pako/-/pako-1.0.11.tgz"
integrity sha1-bJWZ00DVTf05RjgCUqNXBaa5kr8=
pause-stream@~0.0.11:
version "0.0.11"
resolved "http://npm.dui88.com:80/pause-stream/-/pause-stream-0.0.11.tgz"
integrity sha1-/lo0sMvOErWqaitAPuLnO2AvFEU=
dependencies:
through "~2.3"
platform@^1.3.1:
version "1.3.6"
resolved "http://npm.dui88.com:80/platform/-/platform-1.3.6.tgz"
integrity sha1-SLTOmDFksgnC1FoQetsx9HOm56c=
process-nextick-args@~2.0.0:
version "2.0.1"
resolved "http://npm.dui88.com:80/process-nextick-args/-/process-nextick-args-2.0.1.tgz"
integrity sha1-eCDZsWEgzFXKmud5JoCufbptf+I=
progress@^2.0.3:
version "2.0.3"
resolved "http://npm.dui88.com:80/progress/-/progress-2.0.3.tgz"
integrity sha1-foz42PW48jnBvGi+tOt4Vn1XLvg=
pump@^3.0.0:
version "3.0.2"
resolved "http://npm.dui88.com:80/pump/-/pump-3.0.2.tgz"
integrity sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==
dependencies:
end-of-stream "^1.1.0"
once "^1.3.1"
qs@^6.4.0:
version "6.13.1"
resolved "http://npm.dui88.com:80/qs/-/qs-6.13.1.tgz"
integrity sha512-EJPeIn0CYrGu+hli1xilKAPXODtJ12T0sP63Ijx2/khC2JtuaN3JyNIpvmnkmaEtha9ocbG4A4cMcr+TvqvwQg==
dependencies:
side-channel "^1.0.6"
readable-stream@^2.3.6, readable-stream@~2.3.6:
version "2.3.8"
resolved "http://npm.dui88.com:80/readable-stream/-/readable-stream-2.3.8.tgz"
integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==
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"
safe-buffer@~5.1.0, safe-buffer@~5.1.1:
version "5.1.2"
resolved "http://npm.dui88.com:80/safe-buffer/-/safe-buffer-5.1.2.tgz"
integrity sha1-mR7GnSluAxN0fVm9/St0XDX4go0=
"safer-buffer@>= 2.1.2 < 3.0.0":
"integrity" "sha1-RPoWGwGHuVSd2Eu5GAL5vYOFzWo="
"resolved" "http://npm.dui88.com:80/safer-buffer/-/safer-buffer-2.1.2.tgz"
"version" "2.1.2"
"sax@>=0.6.0":
"integrity" "sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg=="
"resolved" "http://npm.dui88.com:80/sax/-/sax-1.4.1.tgz"
"version" "1.4.1"
"sdk-base@^2.0.1":
"integrity" "sha1-ukAonovfJy7RHdnql+r5jgNtJMY="
"resolved" "http://npm.dui88.com:80/sdk-base/-/sdk-base-2.0.1.tgz"
"version" "2.0.1"
dependencies:
"get-ready" "~1.0.0"
"semver@^5.0.1":
"integrity" "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g=="
"resolved" "http://npm.dui88.com:80/semver/-/semver-5.7.2.tgz"
"version" "5.7.2"
"setimmediate@^1.0.5":
"integrity" "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU="
"resolved" "http://npm.dui88.com:80/setimmediate/-/setimmediate-1.0.5.tgz"
"version" "1.0.5"
"side-channel-list@^1.0.0":
"integrity" "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA=="
"resolved" "http://npm.dui88.com:80/side-channel-list/-/side-channel-list-1.0.0.tgz"
"version" "1.0.0"
dependencies:
"es-errors" "^1.3.0"
"object-inspect" "^1.13.3"
"side-channel-map@^1.0.1":
"integrity" "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA=="
"resolved" "http://npm.dui88.com:80/side-channel-map/-/side-channel-map-1.0.1.tgz"
"version" "1.0.1"
dependencies:
"call-bound" "^1.0.2"
"es-errors" "^1.3.0"
"get-intrinsic" "^1.2.5"
"object-inspect" "^1.13.3"
"side-channel-weakmap@^1.0.2":
"integrity" "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A=="
"resolved" "http://npm.dui88.com:80/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz"
"version" "1.0.2"
dependencies:
"call-bound" "^1.0.2"
"es-errors" "^1.3.0"
"get-intrinsic" "^1.2.5"
"object-inspect" "^1.13.3"
"side-channel-map" "^1.0.1"
"side-channel@^1.0.6":
"integrity" "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw=="
"resolved" "http://npm.dui88.com:80/side-channel/-/side-channel-1.1.0.tgz"
"version" "1.1.0"
dependencies:
"es-errors" "^1.3.0"
"object-inspect" "^1.13.3"
"side-channel-list" "^1.0.0"
"side-channel-map" "^1.0.1"
"side-channel-weakmap" "^1.0.2"
"statuses@^1.3.1":
"integrity" "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow="
"resolved" "http://npm.dui88.com:80/statuses/-/statuses-1.5.0.tgz"
"version" "1.5.0"
"stream-http@2.8.2":
"integrity" "sha1-QSboxrEHAERlkYqi/DVUnndALIc="
"resolved" "http://npm.dui88.com:80/stream-http/-/stream-http-2.8.2.tgz"
"version" "2.8.2"
dependencies:
"builtin-status-codes" "^3.0.0"
"inherits" "^2.0.1"
"readable-stream" "^2.3.6"
"to-arraybuffer" "^1.0.0"
"xtend" "^4.0.0"
"stream-wormhole@^1.0.4":
"integrity" "sha1-MAr/Rs7VU8/sZCoFJRiFQXaTwz0="
"resolved" "http://npm.dui88.com:80/stream-wormhole/-/stream-wormhole-1.1.0.tgz"
"version" "1.1.0"
"string_decoder@~1.1.1":
"integrity" "sha1-nPFhG6YmhdcDCunkujQUnDrwP8g="
"resolved" "http://npm.dui88.com:80/string_decoder/-/string_decoder-1.1.1.tgz"
"version" "1.1.1"
dependencies:
"safe-buffer" "~5.1.0"
"thenify-all@^1.0.0":
"integrity" "sha1-GhkY1ALY/D+Y+/I02wvMjMEOlyY="
"resolved" "http://npm.dui88.com:80/thenify-all/-/thenify-all-1.6.0.tgz"
"version" "1.6.0"
dependencies:
"thenify" ">= 3.1.0 < 4"
version "2.1.2"
resolved "http://npm.dui88.com:80/safer-buffer/-/safer-buffer-2.1.2.tgz"
integrity sha1-RPoWGwGHuVSd2Eu5GAL5vYOFzWo=
sax@>=0.6.0:
version "1.4.1"
resolved "http://npm.dui88.com:80/sax/-/sax-1.4.1.tgz"
integrity sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==
sdk-base@^2.0.1:
version "2.0.1"
resolved "http://npm.dui88.com:80/sdk-base/-/sdk-base-2.0.1.tgz"
integrity sha1-ukAonovfJy7RHdnql+r5jgNtJMY=
dependencies:
get-ready "~1.0.0"
semver@^5.0.1:
version "5.7.2"
resolved "http://npm.dui88.com:80/semver/-/semver-5.7.2.tgz"
integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==
setimmediate@^1.0.5:
version "1.0.5"
resolved "http://npm.dui88.com:80/setimmediate/-/setimmediate-1.0.5.tgz"
integrity sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=
side-channel-list@^1.0.0:
version "1.0.0"
resolved "http://npm.dui88.com:80/side-channel-list/-/side-channel-list-1.0.0.tgz"
integrity sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==
dependencies:
es-errors "^1.3.0"
object-inspect "^1.13.3"
side-channel-map@^1.0.1:
version "1.0.1"
resolved "http://npm.dui88.com:80/side-channel-map/-/side-channel-map-1.0.1.tgz"
integrity sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==
dependencies:
call-bound "^1.0.2"
es-errors "^1.3.0"
get-intrinsic "^1.2.5"
object-inspect "^1.13.3"
side-channel-weakmap@^1.0.2:
version "1.0.2"
resolved "http://npm.dui88.com:80/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz"
integrity sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==
dependencies:
call-bound "^1.0.2"
es-errors "^1.3.0"
get-intrinsic "^1.2.5"
object-inspect "^1.13.3"
side-channel-map "^1.0.1"
side-channel@^1.0.6:
version "1.1.0"
resolved "http://npm.dui88.com:80/side-channel/-/side-channel-1.1.0.tgz"
integrity sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==
dependencies:
es-errors "^1.3.0"
object-inspect "^1.13.3"
side-channel-list "^1.0.0"
side-channel-map "^1.0.1"
side-channel-weakmap "^1.0.2"
statuses@^1.3.1:
version "1.5.0"
resolved "http://npm.dui88.com:80/statuses/-/statuses-1.5.0.tgz"
integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=
stream-http@2.8.2:
version "2.8.2"
resolved "http://npm.dui88.com:80/stream-http/-/stream-http-2.8.2.tgz"
integrity sha1-QSboxrEHAERlkYqi/DVUnndALIc=
dependencies:
builtin-status-codes "^3.0.0"
inherits "^2.0.1"
readable-stream "^2.3.6"
to-arraybuffer "^1.0.0"
xtend "^4.0.0"
stream-wormhole@^1.0.4:
version "1.1.0"
resolved "http://npm.dui88.com:80/stream-wormhole/-/stream-wormhole-1.1.0.tgz"
integrity sha1-MAr/Rs7VU8/sZCoFJRiFQXaTwz0=
string_decoder@~1.1.1:
version "1.1.1"
resolved "http://npm.dui88.com:80/string_decoder/-/string_decoder-1.1.1.tgz"
integrity sha1-nPFhG6YmhdcDCunkujQUnDrwP8g=
dependencies:
safe-buffer "~5.1.0"
thenify-all@^1.0.0:
version "1.6.0"
resolved "http://npm.dui88.com:80/thenify-all/-/thenify-all-1.6.0.tgz"
integrity sha1-GhkY1ALY/D+Y+/I02wvMjMEOlyY=
dependencies:
thenify ">= 3.1.0 < 4"
"thenify@>= 3.1.0 < 4":
"integrity" "sha1-iTLmhqQGYDigFt2eLKRq3Zg4qV8="
"resolved" "http://npm.dui88.com:80/thenify/-/thenify-3.3.1.tgz"
"version" "3.3.1"
dependencies:
"any-promise" "^1.0.0"
"through@~2.3":
"integrity" "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU="
"resolved" "http://npm.dui88.com:80/through/-/through-2.3.8.tgz"
"version" "2.3.8"
"to-arraybuffer@^1.0.0":
"integrity" "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M="
"resolved" "http://npm.dui88.com:80/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz"
"version" "1.0.1"
"typescript@^5.3.3":
"integrity" "sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg=="
"resolved" "http://npm.dui88.com:80/typescript/-/typescript-5.7.2.tgz"
"version" "5.7.2"
"unescape@^1.0.1":
"integrity" "sha1-lW5DD2HK2KTVfYLFGPXmzF0N2pY="
"resolved" "http://npm.dui88.com:80/unescape/-/unescape-1.0.1.tgz"
"version" "1.0.1"
dependencies:
"extend-shallow" "^2.0.1"
"universalify@^2.0.0":
"integrity" "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw=="
"resolved" "http://npm.dui88.com:80/universalify/-/universalify-2.0.1.tgz"
"version" "2.0.1"
"urllib@^2.44.0":
"integrity" "sha512-zRCJqdfYllRDA9bXUtx+vccyRqtJPKsw85f44zH7zPD28PIvjMqIgw9VwoTLV7xTBWZsbebUFVHU5ghQcWku2A=="
"resolved" "http://npm.dui88.com:80/urllib/-/urllib-2.44.0.tgz"
"version" "2.44.0"
dependencies:
"any-promise" "^1.3.0"
"content-type" "^1.0.2"
"default-user-agent" "^1.0.0"
"digest-header" "^1.0.0"
"ee-first" "~1.1.1"
"formstream" "^1.1.0"
"humanize-ms" "^1.2.0"
"iconv-lite" "^0.6.3"
"pump" "^3.0.0"
"qs" "^6.4.0"
"statuses" "^1.3.1"
"utility" "^1.16.1"
"util-deprecate@~1.0.1":
"integrity" "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8="
"resolved" "http://npm.dui88.com:80/util-deprecate/-/util-deprecate-1.0.2.tgz"
"version" "1.0.2"
"utility@^1.16.1", "utility@^1.18.0":
"integrity" "sha512-PYxZDA+6QtvRvm//++aGdmKG/cI07jNwbROz0Ql+VzFV1+Z0Dy55NI4zZ7RHc9KKpBePNFwoErqIuqQv/cjiTA=="
"resolved" "http://npm.dui88.com:80/utility/-/utility-1.18.0.tgz"
"version" "1.18.0"
dependencies:
"copy-to" "^2.0.1"
"escape-html" "^1.0.3"
"mkdirp" "^0.5.1"
"mz" "^2.7.0"
"unescape" "^1.0.1"
"win-release@^1.0.0":
"integrity" "sha1-X6VeAr58qTTt/BJmVjLoSbcuUgk="
"resolved" "http://npm.dui88.com:80/win-release/-/win-release-1.1.1.tgz"
"version" "1.1.1"
dependencies:
"semver" "^5.0.1"
"wrappy@1":
"integrity" "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8="
"resolved" "http://npm.dui88.com:80/wrappy/-/wrappy-1.0.2.tgz"
"version" "1.0.2"
"xml2js@^0.6.2":
"integrity" "sha512-T4rieHaC1EXcES0Kxxj4JWgaUQHDk+qwHcYOCFHfiwKz7tOVPLq7Hjq9dM1WCMhylqMEfP7hMcOIChvotiZegA=="
"resolved" "http://npm.dui88.com:80/xml2js/-/xml2js-0.6.2.tgz"
"version" "0.6.2"
dependencies:
"sax" ">=0.6.0"
"xmlbuilder" "~11.0.0"
"xmlbuilder@~11.0.0":
"integrity" "sha1-vpuuHIoEbnazESdyY0fQrXACvrM="
"resolved" "http://npm.dui88.com:80/xmlbuilder/-/xmlbuilder-11.0.1.tgz"
"version" "11.0.1"
"xtend@^4.0.0":
"integrity" "sha1-u3J3n1+kZRhrH0OPZ0+jR/2121Q="
"resolved" "http://npm.dui88.com:80/xtend/-/xtend-4.0.2.tgz"
"version" "4.0.2"
version "3.3.1"
resolved "http://npm.dui88.com:80/thenify/-/thenify-3.3.1.tgz"
integrity sha1-iTLmhqQGYDigFt2eLKRq3Zg4qV8=
dependencies:
any-promise "^1.0.0"
through@~2.3:
version "2.3.8"
resolved "http://npm.dui88.com:80/through/-/through-2.3.8.tgz"
integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=
to-arraybuffer@^1.0.0:
version "1.0.1"
resolved "http://npm.dui88.com:80/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz"
integrity sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=
typescript@^5.3.3:
version "5.7.2"
resolved "http://npm.dui88.com:80/typescript/-/typescript-5.7.2.tgz"
integrity sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==
undici-types@~5.26.4:
version "5.26.5"
resolved "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz"
integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==
unescape@^1.0.1:
version "1.0.1"
resolved "http://npm.dui88.com:80/unescape/-/unescape-1.0.1.tgz"
integrity sha1-lW5DD2HK2KTVfYLFGPXmzF0N2pY=
dependencies:
extend-shallow "^2.0.1"
universalify@^2.0.0:
version "2.0.1"
resolved "http://npm.dui88.com:80/universalify/-/universalify-2.0.1.tgz"
integrity sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==
urllib@^2.44.0:
version "2.44.0"
resolved "http://npm.dui88.com:80/urllib/-/urllib-2.44.0.tgz"
integrity sha512-zRCJqdfYllRDA9bXUtx+vccyRqtJPKsw85f44zH7zPD28PIvjMqIgw9VwoTLV7xTBWZsbebUFVHU5ghQcWku2A==
dependencies:
any-promise "^1.3.0"
content-type "^1.0.2"
default-user-agent "^1.0.0"
digest-header "^1.0.0"
ee-first "~1.1.1"
formstream "^1.1.0"
humanize-ms "^1.2.0"
iconv-lite "^0.6.3"
pump "^3.0.0"
qs "^6.4.0"
statuses "^1.3.1"
utility "^1.16.1"
util-deprecate@~1.0.1:
version "1.0.2"
resolved "http://npm.dui88.com:80/util-deprecate/-/util-deprecate-1.0.2.tgz"
integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=
utility@^1.16.1, utility@^1.18.0:
version "1.18.0"
resolved "http://npm.dui88.com:80/utility/-/utility-1.18.0.tgz"
integrity sha512-PYxZDA+6QtvRvm//++aGdmKG/cI07jNwbROz0Ql+VzFV1+Z0Dy55NI4zZ7RHc9KKpBePNFwoErqIuqQv/cjiTA==
dependencies:
copy-to "^2.0.1"
escape-html "^1.0.3"
mkdirp "^0.5.1"
mz "^2.7.0"
unescape "^1.0.1"
win-release@^1.0.0:
version "1.1.1"
resolved "http://npm.dui88.com:80/win-release/-/win-release-1.1.1.tgz"
integrity sha1-X6VeAr58qTTt/BJmVjLoSbcuUgk=
dependencies:
semver "^5.0.1"
wrappy@1:
version "1.0.2"
resolved "http://npm.dui88.com:80/wrappy/-/wrappy-1.0.2.tgz"
integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=
xml2js@^0.6.2:
version "0.6.2"
resolved "http://npm.dui88.com:80/xml2js/-/xml2js-0.6.2.tgz"
integrity sha512-T4rieHaC1EXcES0Kxxj4JWgaUQHDk+qwHcYOCFHfiwKz7tOVPLq7Hjq9dM1WCMhylqMEfP7hMcOIChvotiZegA==
dependencies:
sax ">=0.6.0"
xmlbuilder "~11.0.0"
xmlbuilder@~11.0.0:
version "11.0.1"
resolved "http://npm.dui88.com:80/xmlbuilder/-/xmlbuilder-11.0.1.tgz"
integrity sha1-vpuuHIoEbnazESdyY0fQrXACvrM=
xtend@^4.0.0:
version "4.0.2"
resolved "http://npm.dui88.com:80/xtend/-/xtend-4.0.2.tgz"
integrity sha1-u3J3n1+kZRhrH0OPZ0+jR/2121Q=
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment