Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
wfc13
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
wildfirecode13
wfc13
Commits
0611d057
Commit
0611d057
authored
Aug 10, 2021
by
wildfirecode13
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
u
parent
cf8c5925
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
424 additions
and
10 deletions
+424
-10
package.json
project/package.json
+2
-0
Main.ts
project/src/Main.ts
+13
-0
ResJson.ts
project/src/ResJson.ts
+1
-1
monitor.ts
project/src/monitor.ts
+16
-0
NewbieScene.ts
project/src/scenes/NewbieScene.ts
+2
-0
ShareScene.ts
project/src/scenes/ShareScene.ts
+4
-1
yarn.lock
project/yarn.lock
+386
-8
No files found.
project/package.json
View file @
0611d057
...
@@ -22,6 +22,8 @@
...
@@ -22,6 +22,8 @@
"webpack-merge"
:
"^4.1.2"
"webpack-merge"
:
"^4.1.2"
},
},
"dependencies"
:
{
"dependencies"
:
{
"performance-sdk"
:
"^0.0.5"
,
"@spark/monitor-sdk"
:
"^1.1.3"
,
"@spark/share"
:
"^2.0.90"
,
"@spark/share"
:
"^2.0.90"
,
"@spark/utils"
:
"^2.0.46"
,
"@spark/utils"
:
"^2.0.46"
,
"duiba-utils"
:
"^1.0.9"
,
"duiba-utils"
:
"^1.0.9"
,
...
...
project/src/Main.ts
View file @
0611d057
...
@@ -11,7 +11,20 @@ import { ShareScene } from "./scenes/ShareScene";
...
@@ -11,7 +11,20 @@ import { ShareScene } from "./scenes/ShareScene";
import
{
SkinJson
}
from
"./SkinJson"
;
import
{
SkinJson
}
from
"./SkinJson"
;
import
updateShareFunc
from
"./share"
;
import
updateShareFunc
from
"./share"
;
import
{
destroyWebNetData
,
sendWebNet
,
WebNetName
}
from
"./WebNet"
;
import
{
destroyWebNetData
,
sendWebNet
,
WebNetName
}
from
"./WebNet"
;
import
'./monitor'
;
// 引入包
import
{
init
,
CustomPerformance
}
from
'performance-sdk'
;
window
[
'__loading__'
]
=
new
CustomPerformance
(
'__loading__'
);
// 执行初始化方法
init
(
window
[
'CFG'
].
projectId
,
null
,{
report
:{
interval
:[
3
],
//单位分钟
times
:[
10
]
//单位秒
},
debug
:
true
});
const
isShare
=
()
=>
{
const
isShare
=
()
=>
{
const
query
=
getQueryParams
();
const
query
=
getQueryParams
();
...
...
project/src/ResJson.ts
View file @
0611d057
...
@@ -912,5 +912,5 @@ export const ResJson = {
...
@@ -912,5 +912,5 @@ export const ResJson = {
"name"
:
"svga"
"name"
:
"svga"
}
}
],
],
"path"
:
"https://yun.duiba.com.cn/db_games/activity/template/162858
0956
/resource/"
"path"
:
"https://yun.duiba.com.cn/db_games/activity/template/162858
7071
/resource/"
}
}
\ No newline at end of file
project/src/monitor.ts
0 → 100644
View file @
0611d057
import
{
SentryInit
}
from
'@spark/monitor-sdk'
;
window
[
'CFG'
].
MONITOR
=
true
;
window
[
'CFG'
].
projectName
=
'三湘体验金'
;
window
[
'CFG'
].
SOURCEVERSION
=
'sanxiang_money'
;
if
(
window
[
'CFG'
]
&&
window
[
'CFG'
].
MONITOR
)
{
SentryInit
({
projectId
:
window
[
'CFG'
].
projectId
,
name
:
window
[
'CFG'
].
projectName
,
// 线上正式项目的名称
sourcemapVersion
:
window
[
'CFG'
].
SOURCEVERSION
,
users
:
[
"15068753667"
]
// 前端开发者的钉钉手机号,字符串类型,可多个, 例如 ['176xxxx', '151xxxx']
});
}
\ No newline at end of file
project/src/scenes/NewbieScene.ts
View file @
0611d057
...
@@ -30,6 +30,8 @@ export class NewbieScene extends Scene {
...
@@ -30,6 +30,8 @@ export class NewbieScene extends Scene {
async
start
(
data
)
{
async
start
(
data
)
{
super
.
start
();
super
.
start
();
window
[
'__loading__'
].
over
();
const
query
=
getQueryParams
();
const
query
=
getQueryParams
();
if
(
query
.
autoprize
==
1
)
{
if
(
query
.
autoprize
==
1
)
{
this
.
openPrize
();
this
.
openPrize
();
...
...
project/src/scenes/ShareScene.ts
View file @
0611d057
...
@@ -25,8 +25,11 @@ export class ShareScene extends Scene {
...
@@ -25,8 +25,11 @@ export class ShareScene extends Scene {
case
'200303'
:
case
'200303'
:
showToast
(
'助力机会已用完,明天再来吧~'
);
showToast
(
'助力机会已用完,明天再来吧~'
);
break
;
break
;
case
'200305'
:
showToast
(
'给当前用户的助力次数已用完~'
);
break
;
default
:
default
:
showToast
(
'
助力机会已用完,明天再来吧~
'
);
showToast
(
'
网络异常~
'
);
break
;
break
;
}
}
}
}
...
...
project/yarn.lock
View file @
0611d057
...
@@ -30,6 +30,81 @@
...
@@ -30,6 +30,81 @@
dependencies:
dependencies:
regenerator-runtime "^0.13.4"
regenerator-runtime "^0.13.4"
"@sentry/browser@5.30.0":
version "5.30.0"
resolved "http://npm.dui88.com:80/@sentry%2fbrowser/-/browser-5.30.0.tgz#c28f49d551db3172080caef9f18791a7fd39e3b3"
integrity sha1-wo9J1VHbMXIIDK758YeRp/0547M=
dependencies:
"@sentry/core" "5.30.0"
"@sentry/types" "5.30.0"
"@sentry/utils" "5.30.0"
tslib "^1.9.3"
"@sentry/core@5.30.0":
version "5.30.0"
resolved "http://npm.dui88.com:80/@sentry%2fcore/-/core-5.30.0.tgz#6b203664f69e75106ee8b5a2fe1d717379b331f3"
integrity sha1-ayA2ZPaedRBu6LWi/h1xc3mzMfM=
dependencies:
"@sentry/hub" "5.30.0"
"@sentry/minimal" "5.30.0"
"@sentry/types" "5.30.0"
"@sentry/utils" "5.30.0"
tslib "^1.9.3"
"@sentry/hub@5.30.0":
version "5.30.0"
resolved "http://npm.dui88.com:80/@sentry%2fhub/-/hub-5.30.0.tgz#2453be9b9cb903404366e198bd30c7ca74cdc100"
integrity sha1-JFO+m5y5A0BDZuGYvTDHynTNwQA=
dependencies:
"@sentry/types" "5.30.0"
"@sentry/utils" "5.30.0"
tslib "^1.9.3"
"@sentry/integrations@^6.4.1":
version "6.11.0"
resolved "http://npm.dui88.com:80/@sentry%2fintegrations/-/integrations-6.11.0.tgz#da0706306b5ff13eaae5771095d7fc82c9f4c68b"
integrity sha1-2gcGMGtf8T6q5XcQldf8gsn0xos=
dependencies:
"@sentry/types" "6.11.0"
"@sentry/utils" "6.11.0"
localforage "^1.8.1"
tslib "^1.9.3"
"@sentry/minimal@5.30.0":
version "5.30.0"
resolved "http://npm.dui88.com:80/@sentry%2fminimal/-/minimal-5.30.0.tgz#ce3d3a6a273428e0084adcb800bc12e72d34637b"
integrity sha1-zj06aic0KOAISty4ALwS5y00Y3s=
dependencies:
"@sentry/hub" "5.30.0"
"@sentry/types" "5.30.0"
tslib "^1.9.3"
"@sentry/types@5.30.0":
version "5.30.0"
resolved "http://npm.dui88.com:80/@sentry%2ftypes/-/types-5.30.0.tgz#19709bbe12a1a0115bc790b8942917da5636f402"
integrity sha1-GXCbvhKhoBFbx5C4lCkX2lY29AI=
"@sentry/types@6.11.0":
version "6.11.0"
resolved "http://npm.dui88.com:80/@sentry%2ftypes/-/types-6.11.0.tgz#5122685478d32ddacd3a891cbcf550012df85f7c"
integrity sha1-USJoVHjTLdrNOokcvPVQAS34X3w=
"@sentry/utils@5.30.0":
version "5.30.0"
resolved "http://npm.dui88.com:80/@sentry%2futils/-/utils-5.30.0.tgz#9a5bd7ccff85ccfe7856d493bffa64cabc41e980"
integrity sha1-mlvXzP+FzP54VtSTv/pkyrxB6YA=
dependencies:
"@sentry/types" "5.30.0"
tslib "^1.9.3"
"@sentry/utils@6.11.0":
version "6.11.0"
resolved "http://npm.dui88.com:80/@sentry%2futils/-/utils-6.11.0.tgz#d1dee4faf4d9c42c54bba88d5a66fb96b902a14c"
integrity sha1-0d7k+vTZxCxUu6iNWmb7lrkCoUw=
dependencies:
"@sentry/types" "6.11.0"
tslib "^1.9.3"
"@spark/api-base@^2.0.2", "@spark/api-base@^2.0.30", "@spark/api-base@^2.0.7", "@spark/api-base@^2.0.9":
"@spark/api-base@^2.0.2", "@spark/api-base@^2.0.30", "@spark/api-base@^2.0.7", "@spark/api-base@^2.0.9":
version "2.0.30"
version "2.0.30"
resolved "http://npm.dui88.com:80/@spark%2fapi-base/-/api-base-2.0.30.tgz#08ce13031be554fc3de737912ac5dad1aee0c4ab"
resolved "http://npm.dui88.com:80/@spark%2fapi-base/-/api-base-2.0.30.tgz#08ce13031be554fc3de737912ac5dad1aee0c4ab"
...
@@ -58,6 +133,17 @@
...
@@ -58,6 +133,17 @@
"@spark/projectx" "^2.0.10"
"@spark/projectx" "^2.0.10"
duiba-utils "^1.0.6"
duiba-utils "^1.0.6"
"@spark/monitor-sdk@^1.1.3":
version "1.1.3"
resolved "http://npm.dui88.com:80/@spark%2fmonitor-sdk/-/monitor-sdk-1.1.3.tgz#88c6f1c4b8c7aacc2945d72a9612dd3f147d25f5"
integrity sha512-Z5tlpjdyWNY0ZPWNpnCT3S7169pDNOlADt+YtogOv12+GA07UMkL0tWLdgL3x1UYghFrqT3rbnZrlrcE/pJYRA==
dependencies:
"@sentry/browser" "5.30.0"
"@sentry/integrations" "^6.4.1"
commander "^7.2.0"
inquirer "^8.1.0"
ora "^5.4.0"
"@spark/projectx@^2.0.10":
"@spark/projectx@^2.0.10":
version "2.0.13"
version "2.0.13"
resolved "http://npm.dui88.com:80/@spark%2fprojectx/-/projectx-2.0.13.tgz#a87cb7642a9a5e93e5aee752f04eb5f5814972eb"
resolved "http://npm.dui88.com:80/@spark%2fprojectx/-/projectx-2.0.13.tgz#a87cb7642a9a5e93e5aee752f04eb5f5814972eb"
...
@@ -354,6 +440,13 @@ ansi-colors@^3.0.0:
...
@@ -354,6 +440,13 @@ ansi-colors@^3.0.0:
resolved "http://npm.dui88.com:80/ansi-colors/-/ansi-colors-3.2.4.tgz#e3a3da4bfbae6c86a9c285625de124a234026fbf"
resolved "http://npm.dui88.com:80/ansi-colors/-/ansi-colors-3.2.4.tgz#e3a3da4bfbae6c86a9c285625de124a234026fbf"
integrity sha1-46PaS/uubIapwoViXeEkojQCb78=
integrity sha1-46PaS/uubIapwoViXeEkojQCb78=
ansi-escapes@^4.2.1:
version "4.3.2"
resolved "http://npm.dui88.com:80/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e"
integrity sha1-ayKR0dt9mLZSHV8e+kLQ86n+tl4=
dependencies:
type-fest "^0.21.3"
ansi-html@0.0.7:
ansi-html@0.0.7:
version "0.0.7"
version "0.0.7"
resolved "http://npm.dui88.com:80/ansi-html/-/ansi-html-0.0.7.tgz#813584021962a9e9e6fd039f940d12f56ca7859e"
resolved "http://npm.dui88.com:80/ansi-html/-/ansi-html-0.0.7.tgz#813584021962a9e9e6fd039f940d12f56ca7859e"
...
@@ -369,6 +462,11 @@ ansi-regex@^4.1.0:
...
@@ -369,6 +462,11 @@ ansi-regex@^4.1.0:
resolved "http://npm.dui88.com:80/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997"
resolved "http://npm.dui88.com:80/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997"
integrity sha1-i5+PCM8ay4Q3Vqg5yox+MWjFGZc=
integrity sha1-i5+PCM8ay4Q3Vqg5yox+MWjFGZc=
ansi-regex@^5.0.0:
version "5.0.0"
resolved "http://npm.dui88.com:80/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75"
integrity sha1-OIU59VF5vzkznIGvMKZU1p+Hy3U=
ansi-styles@^3.2.0, ansi-styles@^3.2.1:
ansi-styles@^3.2.0, ansi-styles@^3.2.1:
version "3.2.1"
version "3.2.1"
resolved "http://npm.dui88.com:80/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
resolved "http://npm.dui88.com:80/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
...
@@ -376,6 +474,13 @@ ansi-styles@^3.2.0, ansi-styles@^3.2.1:
...
@@ -376,6 +474,13 @@ ansi-styles@^3.2.0, ansi-styles@^3.2.1:
dependencies:
dependencies:
color-convert "^1.9.0"
color-convert "^1.9.0"
ansi-styles@^4.1.0:
version "4.3.0"
resolved "http://npm.dui88.com:80/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
integrity sha1-7dgDYornHATIWuegkG7a00tkiTc=
dependencies:
color-convert "^2.0.1"
any-promise@^1.0.0, any-promise@^1.3.0:
any-promise@^1.0.0, any-promise@^1.3.0:
version "1.3.0"
version "1.3.0"
resolved "http://npm.dui88.com:80/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f"
resolved "http://npm.dui88.com:80/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f"
...
@@ -513,7 +618,7 @@ balanced-match@^1.0.0:
...
@@ -513,7 +618,7 @@ balanced-match@^1.0.0:
resolved "http://npm.dui88.com:80/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
resolved "http://npm.dui88.com:80/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
integrity sha1-6D46fj8wCzTLnYf2FfoMvzV2kO4=
integrity sha1-6D46fj8wCzTLnYf2FfoMvzV2kO4=
base64-js@^1.0.2:
base64-js@^1.0.2
, base64-js@^1.3.1
:
version "1.5.1"
version "1.5.1"
resolved "http://npm.dui88.com:80/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a"
resolved "http://npm.dui88.com:80/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a"
integrity sha1-GxtEAWClv3rUC2UPCVljSBkDkwo=
integrity sha1-GxtEAWClv3rUC2UPCVljSBkDkwo=
...
@@ -558,6 +663,15 @@ bindings@^1.5.0:
...
@@ -558,6 +663,15 @@ bindings@^1.5.0:
dependencies:
dependencies:
file-uri-to-path "1.0.0"
file-uri-to-path "1.0.0"
bl@^4.1.0:
version "4.1.0"
resolved "http://npm.dui88.com:80/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a"
integrity sha1-RRU1JkGCvsL7vIOmKrmM8R2fezo=
dependencies:
buffer "^5.5.0"
inherits "^2.0.4"
readable-stream "^3.4.0"
bluebird@^3.5.5:
bluebird@^3.5.5:
version "3.7.2"
version "3.7.2"
resolved "http://npm.dui88.com:80/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f"
resolved "http://npm.dui88.com:80/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f"
...
@@ -727,6 +841,14 @@ buffer@^4.3.0:
...
@@ -727,6 +841,14 @@ buffer@^4.3.0:
ieee754 "^1.1.4"
ieee754 "^1.1.4"
isarray "^1.0.0"
isarray "^1.0.0"
buffer@^5.5.0:
version "5.7.1"
resolved "http://npm.dui88.com:80/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0"
integrity sha1-umLnwTEzBTWCGXFghRqPZI6Z7tA=
dependencies:
base64-js "^1.3.1"
ieee754 "^1.1.13"
builtin-modules@^1.1.1:
builtin-modules@^1.1.1:
version "1.1.1"
version "1.1.1"
resolved "http://npm.dui88.com:80/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f"
resolved "http://npm.dui88.com:80/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f"
...
@@ -805,6 +927,19 @@ chalk@^2.0.0, chalk@^2.3.0, chalk@^2.4.2:
...
@@ -805,6 +927,19 @@ chalk@^2.0.0, chalk@^2.3.0, chalk@^2.4.2:
escape-string-regexp "^1.0.5"
escape-string-regexp "^1.0.5"
supports-color "^5.3.0"
supports-color "^5.3.0"
chalk@^4.1.0, chalk@^4.1.1:
version "4.1.2"
resolved "http://npm.dui88.com:80/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01"
integrity sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=
dependencies:
ansi-styles "^4.1.0"
supports-color "^7.1.0"
chardet@^0.7.0:
version "0.7.0"
resolved "http://npm.dui88.com:80/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e"
integrity sha1-kAlISfCTfy7twkJdDSip5fDLrZ4=
chokidar@^2.1.8:
chokidar@^2.1.8:
version "2.1.8"
version "2.1.8"
resolved "http://npm.dui88.com:80/chokidar/-/chokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917"
resolved "http://npm.dui88.com:80/chokidar/-/chokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917"
...
@@ -867,6 +1002,23 @@ class-utils@^0.3.5:
...
@@ -867,6 +1002,23 @@ class-utils@^0.3.5:
isobject "^3.0.0"
isobject "^3.0.0"
static-extend "^0.1.1"
static-extend "^0.1.1"
cli-cursor@^3.1.0:
version "3.1.0"
resolved "http://npm.dui88.com:80/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307"
integrity sha1-JkMFp65JDR0Dvwybp8kl0XU68wc=
dependencies:
restore-cursor "^3.1.0"
cli-spinners@^2.5.0:
version "2.6.0"
resolved "http://npm.dui88.com:80/cli-spinners/-/cli-spinners-2.6.0.tgz#36c7dc98fb6a9a76bd6238ec3f77e2425627e939"
integrity sha1-NsfcmPtqmna9YjjsP3fiQlYn6Tk=
cli-width@^3.0.0:
version "3.0.0"
resolved "http://npm.dui88.com:80/cli-width/-/cli-width-3.0.0.tgz#a2f48437a2caa9a22436e794bf071ec9e61cedf6"
integrity sha1-ovSEN6LKqaIkNueUvwceyeYc7fY=
cliui@^5.0.0:
cliui@^5.0.0:
version "5.0.0"
version "5.0.0"
resolved "http://npm.dui88.com:80/cliui/-/cliui-5.0.0.tgz#deefcfdb2e800784aa34f46fa08e06851c7bbbc5"
resolved "http://npm.dui88.com:80/cliui/-/cliui-5.0.0.tgz#deefcfdb2e800784aa34f46fa08e06851c7bbbc5"
...
@@ -876,6 +1028,11 @@ cliui@^5.0.0:
...
@@ -876,6 +1028,11 @@ cliui@^5.0.0:
strip-ansi "^5.2.0"
strip-ansi "^5.2.0"
wrap-ansi "^5.1.0"
wrap-ansi "^5.1.0"
clone@^1.0.2:
version "1.0.4"
resolved "http://npm.dui88.com:80/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e"
integrity sha1-2jCcwmPfFZlMaIypAheco8fNfH4=
co-defer@^1.0.0:
co-defer@^1.0.0:
version "1.0.0"
version "1.0.0"
resolved "http://npm.dui88.com:80/co-defer/-/co-defer-1.0.0.tgz#3e4a787a8eed6b0a21ee287c094f7e8de0d3c818"
resolved "http://npm.dui88.com:80/co-defer/-/co-defer-1.0.0.tgz#3e4a787a8eed6b0a21ee287c094f7e8de0d3c818"
...
@@ -918,16 +1075,33 @@ color-convert@^1.9.0:
...
@@ -918,16 +1075,33 @@ color-convert@^1.9.0:
dependencies:
dependencies:
color-name "1.1.3"
color-name "1.1.3"
color-convert@^2.0.1:
version "2.0.1"
resolved "http://npm.dui88.com:80/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
integrity sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=
dependencies:
color-name "~1.1.4"
color-name@1.1.3:
color-name@1.1.3:
version "1.1.3"
version "1.1.3"
resolved "http://npm.dui88.com:80/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
resolved "http://npm.dui88.com:80/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=
integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=
color-name@~1.1.4:
version "1.1.4"
resolved "http://npm.dui88.com:80/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
integrity sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=
commander@^2.12.1, commander@^2.20.0:
commander@^2.12.1, commander@^2.20.0:
version "2.20.3"
version "2.20.3"
resolved "http://npm.dui88.com:80/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33"
resolved "http://npm.dui88.com:80/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33"
integrity sha1-/UhehMA+tIgcIHIrpIA16FMa6zM=
integrity sha1-/UhehMA+tIgcIHIrpIA16FMa6zM=
commander@^7.2.0:
version "7.2.0"
resolved "http://npm.dui88.com:80/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7"
integrity sha1-o2y1fQtQHOEI5NIFWaFQo5HZerc=
commondir@^1.0.1:
commondir@^1.0.1:
version "1.0.1"
version "1.0.1"
resolved "http://npm.dui88.com:80/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
resolved "http://npm.dui88.com:80/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
...
@@ -1179,6 +1353,13 @@ default-user-agent@^1.0.0:
...
@@ -1179,6 +1353,13 @@ default-user-agent@^1.0.0:
dependencies:
dependencies:
os-name "~1.0.3"
os-name "~1.0.3"
defaults@^1.0.3:
version "1.0.3"
resolved "http://npm.dui88.com:80/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d"
integrity sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=
dependencies:
clone "^1.0.2"
define-properties@^1.1.3:
define-properties@^1.1.3:
version "1.1.3"
version "1.1.3"
resolved "http://npm.dui88.com:80/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1"
resolved "http://npm.dui88.com:80/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1"
...
@@ -1355,6 +1536,11 @@ emoji-regex@^7.0.1:
...
@@ -1355,6 +1536,11 @@ emoji-regex@^7.0.1:
resolved "http://npm.dui88.com:80/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156"
resolved "http://npm.dui88.com:80/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156"
integrity sha1-kzoEBShgyF6DwSJHnEdIqOTHIVY=
integrity sha1-kzoEBShgyF6DwSJHnEdIqOTHIVY=
emoji-regex@^8.0.0:
version "8.0.0"
resolved "http://npm.dui88.com:80/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37"
integrity sha1-6Bj9ac5cz8tARZT4QpY79TFkzDc=
emojis-list@^3.0.0:
emojis-list@^3.0.0:
version "3.0.0"
version "3.0.0"
resolved "http://npm.dui88.com:80/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78"
resolved "http://npm.dui88.com:80/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78"
...
@@ -1564,6 +1750,15 @@ extend-shallow@^3.0.0, extend-shallow@^3.0.2:
...
@@ -1564,6 +1750,15 @@ extend-shallow@^3.0.0, extend-shallow@^3.0.2:
assign-symbols "^1.0.0"
assign-symbols "^1.0.0"
is-extendable "^1.0.1"
is-extendable "^1.0.1"
external-editor@^3.0.3:
version "3.1.0"
resolved "http://npm.dui88.com:80/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495"
integrity sha1-ywP3QL764D6k0oPK7SdBqD8zVJU=
dependencies:
chardet "^0.7.0"
iconv-lite "^0.4.24"
tmp "^0.0.33"
extglob@^2.0.4:
extglob@^2.0.4:
version "2.0.4"
version "2.0.4"
resolved "http://npm.dui88.com:80/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543"
resolved "http://npm.dui88.com:80/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543"
...
@@ -1605,6 +1800,13 @@ figgy-pudding@^3.5.1:
...
@@ -1605,6 +1800,13 @@ figgy-pudding@^3.5.1:
resolved "http://npm.dui88.com:80/figgy-pudding/-/figgy-pudding-3.5.2.tgz#b4eee8148abb01dcf1d1ac34367d59e12fa61d6e"
resolved "http://npm.dui88.com:80/figgy-pudding/-/figgy-pudding-3.5.2.tgz#b4eee8148abb01dcf1d1ac34367d59e12fa61d6e"
integrity sha1-tO7oFIq7Adzx0aw0Nn1Z4S+mHW4=
integrity sha1-tO7oFIq7Adzx0aw0Nn1Z4S+mHW4=
figures@^3.0.0:
version "3.2.0"
resolved "http://npm.dui88.com:80/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af"
integrity sha1-YlwYvSk8YE3EqN2y/r8MiDQXRq8=
dependencies:
escape-string-regexp "^1.0.5"
file-uri-to-path@1.0.0:
file-uri-to-path@1.0.0:
version "1.0.0"
version "1.0.0"
resolved "http://npm.dui88.com:80/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd"
resolved "http://npm.dui88.com:80/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd"
...
@@ -1922,6 +2124,11 @@ has-flag@^3.0.0:
...
@@ -1922,6 +2124,11 @@ has-flag@^3.0.0:
resolved "http://npm.dui88.com:80/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
resolved "http://npm.dui88.com:80/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0=
integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0=
has-flag@^4.0.0:
version "4.0.0"
resolved "http://npm.dui88.com:80/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
integrity sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=
has-symbols@^1.0.1, has-symbols@^1.0.2:
has-symbols@^1.0.1, has-symbols@^1.0.2:
version "1.0.2"
version "1.0.2"
resolved "http://npm.dui88.com:80/has-symbols/-/has-symbols-1.0.2.tgz#165d3070c00309752a1236a479331e3ac56f1423"
resolved "http://npm.dui88.com:80/has-symbols/-/has-symbols-1.0.2.tgz#165d3070c00309752a1236a479331e3ac56f1423"
...
@@ -2120,14 +2327,14 @@ humanize-ms@^1.2.0, humanize-ms@^1.2.1:
...
@@ -2120,14 +2327,14 @@ humanize-ms@^1.2.0, humanize-ms@^1.2.1:
dependencies:
dependencies:
ms "^2.0.0"
ms "^2.0.0"
iconv-lite@0.4.24, iconv-lite@^0.4.15:
iconv-lite@0.4.24, iconv-lite@^0.4.15
, iconv-lite@^0.4.24
:
version "0.4.24"
version "0.4.24"
resolved "http://npm.dui88.com:80/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
resolved "http://npm.dui88.com:80/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
integrity sha1-ICK0sl+93CHS9SSXSkdKr+czkIs=
integrity sha1-ICK0sl+93CHS9SSXSkdKr+czkIs=
dependencies:
dependencies:
safer-buffer ">= 2.1.2 < 3"
safer-buffer ">= 2.1.2 < 3"
ieee754@^1.1.4:
ieee754@^1.1.
13, ieee754@^1.1.
4:
version "1.2.1"
version "1.2.1"
resolved "http://npm.dui88.com:80/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352"
resolved "http://npm.dui88.com:80/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352"
integrity sha1-jrehCmP/8l0VpXsAFYbRd9Gw01I=
integrity sha1-jrehCmP/8l0VpXsAFYbRd9Gw01I=
...
@@ -2137,6 +2344,11 @@ iferr@^0.1.5:
...
@@ -2137,6 +2344,11 @@ iferr@^0.1.5:
resolved "http://npm.dui88.com:80/iferr/-/iferr-0.1.5.tgz#c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501"
resolved "http://npm.dui88.com:80/iferr/-/iferr-0.1.5.tgz#c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501"
integrity sha1-xg7taebY/bazEEofy8ocGS3FtQE=
integrity sha1-xg7taebY/bazEEofy8ocGS3FtQE=
immediate@~3.0.5:
version "3.0.6"
resolved "http://npm.dui88.com:80/immediate/-/immediate-3.0.6.tgz#9db1dbd0faf8de6fbe0f5dd5e56bb606280de69b"
integrity sha1-nbHb0Pr43m++D13V5Wu2BigN5ps=
import-local@^2.0.0:
import-local@^2.0.0:
version "2.0.0"
version "2.0.0"
resolved "http://npm.dui88.com:80/import-local/-/import-local-2.0.0.tgz#55070be38a5993cf18ef6db7e961f5bee5c5a09d"
resolved "http://npm.dui88.com:80/import-local/-/import-local-2.0.0.tgz#55070be38a5993cf18ef6db7e961f5bee5c5a09d"
...
@@ -2183,6 +2395,26 @@ ini@^1.3.4, ini@^1.3.5:
...
@@ -2183,6 +2395,26 @@ ini@^1.3.4, ini@^1.3.5:
resolved "http://npm.dui88.com:80/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c"
resolved "http://npm.dui88.com:80/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c"
integrity sha1-op2kJbSIBvNHZ6Tvzjlyaa8oQyw=
integrity sha1-op2kJbSIBvNHZ6Tvzjlyaa8oQyw=
inquirer@^8.1.0:
version "8.1.2"
resolved "http://npm.dui88.com:80/inquirer/-/inquirer-8.1.2.tgz#65b204d2cd7fb63400edd925dfe428bafd422e3d"
integrity sha1-ZbIE0s1/tjQA7dkl3+Qouv1CLj0=
dependencies:
ansi-escapes "^4.2.1"
chalk "^4.1.1"
cli-cursor "^3.1.0"
cli-width "^3.0.0"
external-editor "^3.0.3"
figures "^3.0.0"
lodash "^4.17.21"
mute-stream "0.0.8"
ora "^5.3.0"
run-async "^2.4.0"
rxjs "^7.2.0"
string-width "^4.1.0"
strip-ansi "^6.0.0"
through "^2.3.6"
internal-ip@^4.3.0:
internal-ip@^4.3.0:
version "4.3.0"
version "4.3.0"
resolved "http://npm.dui88.com:80/internal-ip/-/internal-ip-4.3.0.tgz#845452baad9d2ca3b69c635a137acb9a0dad0907"
resolved "http://npm.dui88.com:80/internal-ip/-/internal-ip-4.3.0.tgz#845452baad9d2ca3b69c635a137acb9a0dad0907"
...
@@ -2327,6 +2559,11 @@ is-fullwidth-code-point@^2.0.0:
...
@@ -2327,6 +2559,11 @@ is-fullwidth-code-point@^2.0.0:
resolved "http://npm.dui88.com:80/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
resolved "http://npm.dui88.com:80/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=
integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=
is-fullwidth-code-point@^3.0.0:
version "3.0.0"
resolved "http://npm.dui88.com:80/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d"
integrity sha1-8Rb4Bk/pCz94RKOJl8C3UFEmnx0=
is-glob@^3.1.0:
is-glob@^3.1.0:
version "3.1.0"
version "3.1.0"
resolved "http://npm.dui88.com:80/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a"
resolved "http://npm.dui88.com:80/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a"
...
@@ -2341,6 +2578,11 @@ is-glob@^4.0.0, is-glob@^4.0.1, is-glob@~4.0.1:
...
@@ -2341,6 +2578,11 @@ is-glob@^4.0.0, is-glob@^4.0.1, is-glob@~4.0.1:
dependencies:
dependencies:
is-extglob "^2.1.1"
is-extglob "^2.1.1"
is-interactive@^1.0.0:
version "1.0.0"
resolved "http://npm.dui88.com:80/is-interactive/-/is-interactive-1.0.0.tgz#cea6e6ae5c870a7b0a0004070b7b587e0252912e"
integrity sha1-zqbmrlyHCnsKAAQHC3tYfgJSkS4=
is-number@^3.0.0:
is-number@^3.0.0:
version "3.0.0"
version "3.0.0"
resolved "http://npm.dui88.com:80/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195"
resolved "http://npm.dui88.com:80/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195"
...
@@ -2420,6 +2662,11 @@ is-type-of@^1.0.0:
...
@@ -2420,6 +2662,11 @@ is-type-of@^1.0.0:
is-class-hotfix "~0.0.6"
is-class-hotfix "~0.0.6"
isstream "~0.1.2"
isstream "~0.1.2"
is-unicode-supported@^0.1.0:
version "0.1.0"
resolved "http://npm.dui88.com:80/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7"
integrity sha1-PybHaoCVk7Ur+i7LVxDtJ3m1Iqc=
is-windows@^1.0.1, is-windows@^1.0.2:
is-windows@^1.0.1, is-windows@^1.0.2:
version "1.0.2"
version "1.0.2"
resolved "http://npm.dui88.com:80/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d"
resolved "http://npm.dui88.com:80/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d"
...
@@ -2546,6 +2793,13 @@ levn@~0.3.0:
...
@@ -2546,6 +2793,13 @@ levn@~0.3.0:
prelude-ls "~1.1.2"
prelude-ls "~1.1.2"
type-check "~0.3.2"
type-check "~0.3.2"
lie@3.1.1:
version "3.1.1"
resolved "http://npm.dui88.com:80/lie/-/lie-3.1.1.tgz#9a436b2cc7746ca59de7a41fa469b3efb76bd87e"
integrity sha1-mkNrLMd0bKWd56QfpGmz77dr2H4=
dependencies:
immediate "~3.0.5"
loader-runner@^2.4.0:
loader-runner@^2.4.0:
version "2.4.0"
version "2.4.0"
resolved "http://npm.dui88.com:80/loader-runner/-/loader-runner-2.4.0.tgz#ed47066bfe534d7e84c4c7b9998c2a75607d9357"
resolved "http://npm.dui88.com:80/loader-runner/-/loader-runner-2.4.0.tgz#ed47066bfe534d7e84c4c7b9998c2a75607d9357"
...
@@ -2560,6 +2814,13 @@ loader-utils@^1.0.2, loader-utils@^1.2.3, loader-utils@^1.4.0:
...
@@ -2560,6 +2814,13 @@ loader-utils@^1.0.2, loader-utils@^1.2.3, loader-utils@^1.4.0:
emojis-list "^3.0.0"
emojis-list "^3.0.0"
json5 "^1.0.1"
json5 "^1.0.1"
localforage@^1.8.1:
version "1.9.0"
resolved "http://npm.dui88.com:80/localforage/-/localforage-1.9.0.tgz#f3e4d32a8300b362b4634cc4e066d9d00d2f09d1"
integrity sha1-8+TTKoMAs2K0Y0zE4GbZ0A0vCdE=
dependencies:
lie "3.1.1"
locate-path@^3.0.0:
locate-path@^3.0.0:
version "3.0.0"
version "3.0.0"
resolved "http://npm.dui88.com:80/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e"
resolved "http://npm.dui88.com:80/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e"
...
@@ -2568,11 +2829,19 @@ locate-path@^3.0.0:
...
@@ -2568,11 +2829,19 @@ locate-path@^3.0.0:
p-locate "^3.0.0"
p-locate "^3.0.0"
path-exists "^3.0.0"
path-exists "^3.0.0"
lodash@^4.17.11, lodash@^4.17.14, lodash@^4.17.15:
lodash@^4.17.11, lodash@^4.17.14, lodash@^4.17.15
, lodash@^4.17.21
:
version "4.17.21"
version "4.17.21"
resolved "http://npm.dui88.com:80/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
resolved "http://npm.dui88.com:80/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
integrity sha1-Z5WRxWTDv/quhFTPCz3zcMPWkRw=
integrity sha1-Z5WRxWTDv/quhFTPCz3zcMPWkRw=
log-symbols@^4.1.0:
version "4.1.0"
resolved "http://npm.dui88.com:80/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503"
integrity sha1-P727lbRoOsn8eFER55LlWNSr1QM=
dependencies:
chalk "^4.1.0"
is-unicode-supported "^0.1.0"
loglevel@^1.6.8:
loglevel@^1.6.8:
version "1.7.1"
version "1.7.1"
resolved "http://npm.dui88.com:80/loglevel/-/loglevel-1.7.1.tgz#005fde2f5e6e47068f935ff28573e125ef72f197"
resolved "http://npm.dui88.com:80/loglevel/-/loglevel-1.7.1.tgz#005fde2f5e6e47068f935ff28573e125ef72f197"
...
@@ -2694,6 +2963,11 @@ mime@^2.4.4, mime@^2.5.2:
...
@@ -2694,6 +2963,11 @@ mime@^2.4.4, mime@^2.5.2:
resolved "http://npm.dui88.com:80/mime/-/mime-2.5.2.tgz#6e3dc6cc2b9510643830e5f19d5cb753da5eeabe"
resolved "http://npm.dui88.com:80/mime/-/mime-2.5.2.tgz#6e3dc6cc2b9510643830e5f19d5cb753da5eeabe"
integrity sha1-bj3GzCuVEGQ4MOXxnVy3U9pe6r4=
integrity sha1-bj3GzCuVEGQ4MOXxnVy3U9pe6r4=
mimic-fn@^2.1.0:
version "2.1.0"
resolved "http://npm.dui88.com:80/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b"
integrity sha1-ftLCzMyvhNP/y3pptXcR/CCDQBs=
minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1:
minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1:
version "1.0.1"
version "1.0.1"
resolved "http://npm.dui88.com:80/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7"
resolved "http://npm.dui88.com:80/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7"
...
@@ -2799,6 +3073,11 @@ multicast-dns@^6.0.1:
...
@@ -2799,6 +3073,11 @@ multicast-dns@^6.0.1:
dns-packet "^1.3.1"
dns-packet "^1.3.1"
thunky "^1.0.2"
thunky "^1.0.2"
mute-stream@0.0.8:
version "0.0.8"
resolved "http://npm.dui88.com:80/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d"
integrity sha1-FjDEKyJR/4HiooPelqVJfqkuXg0=
mz@^2.7.0:
mz@^2.7.0:
version "2.7.0"
version "2.7.0"
resolved "http://npm.dui88.com:80/mz/-/mz-2.7.0.tgz#95008057a56cafadc2bc63dde7f9ff6955948e32"
resolved "http://npm.dui88.com:80/mz/-/mz-2.7.0.tgz#95008057a56cafadc2bc63dde7f9ff6955948e32"
...
@@ -2973,6 +3252,13 @@ once@^1.3.0, once@^1.3.1, once@^1.4.0:
...
@@ -2973,6 +3252,13 @@ once@^1.3.0, once@^1.3.1, once@^1.4.0:
dependencies:
dependencies:
wrappy "1"
wrappy "1"
onetime@^5.1.0:
version "5.1.2"
resolved "http://npm.dui88.com:80/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e"
integrity sha1-0Oluu1awdHbfHdnEgG5SN5hcpF4=
dependencies:
mimic-fn "^2.1.0"
opn@^5.5.0:
opn@^5.5.0:
version "5.5.0"
version "5.5.0"
resolved "http://npm.dui88.com:80/opn/-/opn-5.5.0.tgz#fc7164fab56d235904c51c3b27da6758ca3b9bfc"
resolved "http://npm.dui88.com:80/opn/-/opn-5.5.0.tgz#fc7164fab56d235904c51c3b27da6758ca3b9bfc"
...
@@ -2992,6 +3278,21 @@ optionator@^0.8.1:
...
@@ -2992,6 +3278,21 @@ optionator@^0.8.1:
type-check "~0.3.2"
type-check "~0.3.2"
word-wrap "~1.2.3"
word-wrap "~1.2.3"
ora@^5.3.0, ora@^5.4.0:
version "5.4.1"
resolved "http://npm.dui88.com:80/ora/-/ora-5.4.1.tgz#1b2678426af4ac4a509008e5e4ac9e9959db9e18"
integrity sha1-GyZ4Qmr0rEpQkAjl5KyemVnbnhg=
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"
original@^1.0.0:
original@^1.0.0:
version "1.0.2"
version "1.0.2"
resolved "http://npm.dui88.com:80/original/-/original-1.0.2.tgz#e442a61cffe1c5fd20a65f3261c26663b303f25f"
resolved "http://npm.dui88.com:80/original/-/original-1.0.2.tgz#e442a61cffe1c5fd20a65f3261c26663b303f25f"
...
@@ -3012,6 +3313,11 @@ os-name@~1.0.3:
...
@@ -3012,6 +3313,11 @@ os-name@~1.0.3:
osx-release "^1.0.0"
osx-release "^1.0.0"
win-release "^1.0.0"
win-release "^1.0.0"
os-tmpdir@~1.0.2:
version "1.0.2"
resolved "http://npm.dui88.com:80/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=
osx-release@^1.0.0:
osx-release@^1.0.0:
version "1.1.0"
version "1.1.0"
resolved "http://npm.dui88.com:80/osx-release/-/osx-release-1.1.0.tgz#f217911a28136949af1bf9308b241e2737d3cd6c"
resolved "http://npm.dui88.com:80/osx-release/-/osx-release-1.1.0.tgz#f217911a28136949af1bf9308b241e2737d3cd6c"
...
@@ -3185,6 +3491,11 @@ pbkdf2@^3.0.3:
...
@@ -3185,6 +3491,11 @@ pbkdf2@^3.0.3:
safe-buffer "^5.0.1"
safe-buffer "^5.0.1"
sha.js "^2.4.8"
sha.js "^2.4.8"
performance-sdk@^0.0.5:
version "0.0.5"
resolved "http://npm.dui88.com:80/performance-sdk/-/performance-sdk-0.0.5.tgz#1a184ee5d2aabd4c6979f3ac19cda606f40a9b5f"
integrity sha512-xlKmXIRROEYjipOaF3J8cddprdYdVMW69BpKA4CZeHfzCScRnRSaOZwP99Kz+HZXoT8kJyrw2kPLpZp19CETlQ==
picomatch@^2.0.4, picomatch@^2.2.1:
picomatch@^2.0.4, picomatch@^2.2.1:
version "2.3.0"
version "2.3.0"
resolved "http://npm.dui88.com:80/picomatch/-/picomatch-2.3.0.tgz#f1f061de8f6a4bf022892e2d128234fb98302972"
resolved "http://npm.dui88.com:80/picomatch/-/picomatch-2.3.0.tgz#f1f061de8f6a4bf022892e2d128234fb98302972"
...
@@ -3437,7 +3748,7 @@ readable-stream@1.1.x:
...
@@ -3437,7 +3748,7 @@ readable-stream@1.1.x:
isarray "0.0.1"
isarray "0.0.1"
string_decoder "~0.10.x"
string_decoder "~0.10.x"
readable-stream@^3.0.6, readable-stream@^3.6.0:
readable-stream@^3.0.6, readable-stream@^3.
4.0, readable-stream@^3.
6.0:
version "3.6.0"
version "3.6.0"
resolved "http://npm.dui88.com:80/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198"
resolved "http://npm.dui88.com:80/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198"
integrity sha1-M3u9o63AcGvT4CRCaihtS0sskZg=
integrity sha1-M3u9o63AcGvT4CRCaihtS0sskZg=
...
@@ -3551,6 +3862,14 @@ resolve@^1.3.2:
...
@@ -3551,6 +3862,14 @@ resolve@^1.3.2:
is-core-module "^2.2.0"
is-core-module "^2.2.0"
path-parse "^1.0.6"
path-parse "^1.0.6"
restore-cursor@^3.1.0:
version "3.1.0"
resolved "http://npm.dui88.com:80/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e"
integrity sha1-OfZ8VLOnpYzqUjbZXPADQjljH34=
dependencies:
onetime "^5.1.0"
signal-exit "^3.0.2"
ret@~0.1.10:
ret@~0.1.10:
version "0.1.15"
version "0.1.15"
resolved "http://npm.dui88.com:80/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc"
resolved "http://npm.dui88.com:80/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc"
...
@@ -3576,6 +3895,11 @@ ripemd160@^2.0.0, ripemd160@^2.0.1:
...
@@ -3576,6 +3895,11 @@ ripemd160@^2.0.0, ripemd160@^2.0.1:
hash-base "^3.0.0"
hash-base "^3.0.0"
inherits "^2.0.1"
inherits "^2.0.1"
run-async@^2.4.0:
version "2.4.1"
resolved "http://npm.dui88.com:80/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455"
integrity sha1-hEDsz5nqPnC9QJ1JqriOEMGJpFU=
run-queue@^1.0.0, run-queue@^1.0.3:
run-queue@^1.0.0, run-queue@^1.0.3:
version "1.0.3"
version "1.0.3"
resolved "http://npm.dui88.com:80/run-queue/-/run-queue-1.0.3.tgz#e848396f057d223f24386924618e25694161ec47"
resolved "http://npm.dui88.com:80/run-queue/-/run-queue-1.0.3.tgz#e848396f057d223f24386924618e25694161ec47"
...
@@ -3583,6 +3907,13 @@ run-queue@^1.0.0, run-queue@^1.0.3:
...
@@ -3583,6 +3907,13 @@ run-queue@^1.0.0, run-queue@^1.0.3:
dependencies:
dependencies:
aproba "^1.1.1"
aproba "^1.1.1"
rxjs@^7.2.0:
version "7.3.0"
resolved "http://npm.dui88.com:80/rxjs/-/rxjs-7.3.0.tgz#39fe4f3461dc1e50be1475b2b85a0a88c1e938c6"
integrity sha1-Of5PNGHcHlC+FHWyuFoKiMHpOMY=
dependencies:
tslib "~2.1.0"
safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
version "5.1.2"
version "5.1.2"
resolved "http://npm.dui88.com:80/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
resolved "http://npm.dui88.com:80/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
...
@@ -3756,7 +4087,7 @@ side-channel@^1.0.4:
...
@@ -3756,7 +4087,7 @@ side-channel@^1.0.4:
get-intrinsic "^1.0.2"
get-intrinsic "^1.0.2"
object-inspect "^1.9.0"
object-inspect "^1.9.0"
signal-exit@^3.0.0:
signal-exit@^3.0.0
, signal-exit@^3.0.2
:
version "3.0.3"
version "3.0.3"
resolved "http://npm.dui88.com:80/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c"
resolved "http://npm.dui88.com:80/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c"
integrity sha1-oUEMLt2PB3sItOJTyOrPyvBXRhw=
integrity sha1-oUEMLt2PB3sItOJTyOrPyvBXRhw=
...
@@ -3974,6 +4305,15 @@ string-width@^3.0.0, string-width@^3.1.0:
...
@@ -3974,6 +4305,15 @@ string-width@^3.0.0, string-width@^3.1.0:
is-fullwidth-code-point "^2.0.0"
is-fullwidth-code-point "^2.0.0"
strip-ansi "^5.1.0"
strip-ansi "^5.1.0"
string-width@^4.1.0:
version "4.2.2"
resolved "http://npm.dui88.com:80/string-width/-/string-width-4.2.2.tgz#dafd4f9559a7585cfba529c6a0a4f73488ebd4c5"
integrity sha1-2v1PlVmnWFz7pSnGoKT3NIjr1MU=
dependencies:
emoji-regex "^8.0.0"
is-fullwidth-code-point "^3.0.0"
strip-ansi "^6.0.0"
string_decoder@^1.0.0, string_decoder@^1.1.1:
string_decoder@^1.0.0, string_decoder@^1.1.1:
version "1.3.0"
version "1.3.0"
resolved "http://npm.dui88.com:80/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e"
resolved "http://npm.dui88.com:80/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e"
...
@@ -4007,6 +4347,13 @@ strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0:
...
@@ -4007,6 +4347,13 @@ strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0:
dependencies:
dependencies:
ansi-regex "^4.1.0"
ansi-regex "^4.1.0"
strip-ansi@^6.0.0:
version "6.0.0"
resolved "http://npm.dui88.com:80/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532"
integrity sha1-CxVx3XZpzNTz4G4U7x7tJiJa5TI=
dependencies:
ansi-regex "^5.0.0"
strip-eof@^1.0.0:
strip-eof@^1.0.0:
version "1.0.0"
version "1.0.0"
resolved "http://npm.dui88.com:80/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf"
resolved "http://npm.dui88.com:80/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf"
...
@@ -4026,6 +4373,13 @@ supports-color@^6.1.0:
...
@@ -4026,6 +4373,13 @@ supports-color@^6.1.0:
dependencies:
dependencies:
has-flag "^3.0.0"
has-flag "^3.0.0"
supports-color@^7.1.0:
version "7.2.0"
resolved "http://npm.dui88.com:80/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
integrity sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=
dependencies:
has-flag "^4.0.0"
svga-parser@^2.0.0:
svga-parser@^2.0.0:
version "2.0.0"
version "2.0.0"
resolved "http://npm.dui88.com:80/svga-parser/-/svga-parser-2.0.0.tgz#c1e17e64b8ac4dced28fa4dfc6c53d11a5121446"
resolved "http://npm.dui88.com:80/svga-parser/-/svga-parser-2.0.0.tgz#c1e17e64b8ac4dced28fa4dfc6c53d11a5121446"
...
@@ -4082,7 +4436,7 @@ through2@^2.0.0:
...
@@ -4082,7 +4436,7 @@ through2@^2.0.0:
readable-stream "~2.3.6"
readable-stream "~2.3.6"
xtend "~4.0.1"
xtend "~4.0.1"
through@~2.3:
through@
^2.3.6, through@
~2.3:
version "2.3.8"
version "2.3.8"
resolved "http://npm.dui88.com:80/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
resolved "http://npm.dui88.com:80/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=
integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=
...
@@ -4099,6 +4453,13 @@ timers-browserify@^2.0.4:
...
@@ -4099,6 +4453,13 @@ timers-browserify@^2.0.4:
dependencies:
dependencies:
setimmediate "^1.0.4"
setimmediate "^1.0.4"
tmp@^0.0.33:
version "0.0.33"
resolved "http://npm.dui88.com:80/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9"
integrity sha1-bTQzWIl2jSGyvNoKonfO07G/rfk=
dependencies:
os-tmpdir "~1.0.2"
to-arraybuffer@^1.0.0:
to-arraybuffer@^1.0.0:
version "1.0.1"
version "1.0.1"
resolved "http://npm.dui88.com:80/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43"
resolved "http://npm.dui88.com:80/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43"
...
@@ -4152,7 +4513,7 @@ ts-loader@^4.0.0:
...
@@ -4152,7 +4513,7 @@ ts-loader@^4.0.0:
micromatch "^3.1.4"
micromatch "^3.1.4"
semver "^5.0.1"
semver "^5.0.1"
tslib@^1.8.0, tslib@^1.8.1:
tslib@^1.8.0, tslib@^1.8.1
, tslib@^1.9.3
:
version "1.14.1"
version "1.14.1"
resolved "http://npm.dui88.com:80/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00"
resolved "http://npm.dui88.com:80/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00"
integrity sha1-zy04vcNKE0vK8QkcQfZhni9nLQA=
integrity sha1-zy04vcNKE0vK8QkcQfZhni9nLQA=
...
@@ -4162,6 +4523,11 @@ tslib@^2.0.1, tslib@^2.3.0:
...
@@ -4162,6 +4523,11 @@ tslib@^2.0.1, tslib@^2.3.0:
resolved "http://npm.dui88.com:80/tslib/-/tslib-2.3.0.tgz#803b8cdab3e12ba581a4ca41c8839bbb0dacb09e"
resolved "http://npm.dui88.com:80/tslib/-/tslib-2.3.0.tgz#803b8cdab3e12ba581a4ca41c8839bbb0dacb09e"
integrity sha1-gDuM2rPhK6WBpMpByIObuw2ssJ4=
integrity sha1-gDuM2rPhK6WBpMpByIObuw2ssJ4=
tslib@~2.1.0:
version "2.1.0"
resolved "http://npm.dui88.com:80/tslib/-/tslib-2.1.0.tgz#da60860f1c2ecaa5703ab7d39bc05b6bf988b97a"
integrity sha1-2mCGDxwuyqVwOrfTm8Bba/mIuXo=
tslint@^5.9.1:
tslint@^5.9.1:
version "5.20.1"
version "5.20.1"
resolved "http://npm.dui88.com:80/tslint/-/tslint-5.20.1.tgz#e401e8aeda0152bc44dd07e614034f3f80c67b7d"
resolved "http://npm.dui88.com:80/tslint/-/tslint-5.20.1.tgz#e401e8aeda0152bc44dd07e614034f3f80c67b7d"
...
@@ -4200,6 +4566,11 @@ type-check@~0.3.2:
...
@@ -4200,6 +4566,11 @@ type-check@~0.3.2:
dependencies:
dependencies:
prelude-ls "~1.1.2"
prelude-ls "~1.1.2"
type-fest@^0.21.3:
version "0.21.3"
resolved "http://npm.dui88.com:80/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37"
integrity sha1-0mCiSwGYQ24TP6JqUkptZfo7Ljc=
type-is@~1.6.17, type-is@~1.6.18:
type-is@~1.6.17, type-is@~1.6.18:
version "1.6.18"
version "1.6.18"
resolved "http://npm.dui88.com:80/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131"
resolved "http://npm.dui88.com:80/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131"
...
@@ -4420,6 +4791,13 @@ wbuf@^1.1.0, wbuf@^1.7.3:
...
@@ -4420,6 +4791,13 @@ wbuf@^1.1.0, wbuf@^1.7.3:
dependencies:
dependencies:
minimalistic-assert "^1.0.0"
minimalistic-assert "^1.0.0"
wcwidth@^1.0.1:
version "1.0.1"
resolved "http://npm.dui88.com:80/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8"
integrity sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=
dependencies:
defaults "^1.0.3"
webpack-cli@^3.1.1:
webpack-cli@^3.1.1:
version "3.3.12"
version "3.3.12"
resolved "http://npm.dui88.com:80/webpack-cli/-/webpack-cli-3.3.12.tgz#94e9ada081453cd0aa609c99e500012fd3ad2d4a"
resolved "http://npm.dui88.com:80/webpack-cli/-/webpack-cli-3.3.12.tgz#94e9ada081453cd0aa609c99e500012fd3ad2d4a"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment