nexusframework 0.3.0-beta.73 → 0.3.0-beta.74
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +55 -55
- package/README.md +12 -12
- package/about/index.json +5 -5
- package/about/index.nhp +4 -4
- package/icon.png +0 -0
- package/index.d.ts +0 -2
- package/index.js +0 -0
- package/index.js.map +1 -1
- package/index.ts +101 -101
- package/indexOfSkeleton.nhp +133 -133
- package/legacySkeleton.nhp +22 -22
- package/loader/overlay.css +1 -1
- package/loader/overlay.html +25 -25
- package/loader/overlay.scss +152 -152
- package/package.json +102 -90
- package/scripts/es5/compat.js +100 -100
- package/scripts/es5/compat.min.js +1 -1
- package/scripts/es5/loader.js +0 -0
- package/scripts/es5/loader.js.map +0 -0
- package/scripts/es5/loader.min.js +1 -1
- package/scripts/es5/loader.min.js.map +0 -0
- package/scripts/es5/nexusframeworkclient.js +1224 -1224
- package/scripts/es5/nexusframeworkclient.js.map +0 -0
- package/scripts/es5/nexusframeworkclient.min.js +1 -1
- package/scripts/es5/nexusframeworkclient.min.js.map +0 -0
- package/scripts/es6/compat.js +64 -64
- package/scripts/es6/compat.min.js +1 -1
- package/scripts/es6/loader.js +0 -0
- package/scripts/es6/loader.js.map +0 -0
- package/scripts/es6/loader.min.js +1 -1
- package/scripts/es6/loader.min.js.map +0 -0
- package/scripts/es6/nexusframeworkclient.js +1146 -1146
- package/scripts/es6/nexusframeworkclient.js.map +0 -0
- package/scripts/es6/nexusframeworkclient.min.js +1 -1
- package/scripts/es6/nexusframeworkclient.min.js.map +0 -0
- package/scripts/index.d.ts +259 -259
- package/scripts/src/compat.ts +62 -62
- package/scripts/src/loader.ts +385 -385
- package/scripts/src/nexusframeworkclient.ts +1163 -1163
- package/scripts/tsconfig.json +11 -11
- package/src/cli.d.ts +1 -0
- package/src/cli.js +102 -102
- package/src/cli.js.map +1 -1
- package/src/cli.ts +101 -101
- package/src/compileScripts.d.ts +0 -0
- package/src/compileScripts.js +0 -0
- package/src/compileScripts.js.map +1 -1
- package/src/compileScripts.ts +153 -153
- package/src/nexusframework.d.ts +5 -5
- package/src/nexusframework.js +44 -37
- package/src/nexusframework.js.map +1 -1
- package/src/nexusframework.ts +3631 -3622
- package/templates/basic/package.json +3 -3
- package/templates/basic/www/skeleton.nhp +1 -1
- package/templates/bootstrap/package.json +2 -2
- package/templates/bootstrap/www/skeleton.nhp +1 -1
- package/templates/bootstrap-material-design/package.json +2 -2
- package/templates/bootstrap-material-design/www/skeleton.nhp +1 -1
- package/tsconfig.json +25 -22
- package/types.d.ts +612 -612
package/loader/overlay.scss
CHANGED
|
@@ -1,152 +1,152 @@
|
|
|
1
|
-
@mixin transition($transition...) {
|
|
2
|
-
-moz-transition: $transition;
|
|
3
|
-
-o-transition: $transition;
|
|
4
|
-
-webkit-transition: $transition;
|
|
5
|
-
transition: $transition;
|
|
6
|
-
}
|
|
7
|
-
@mixin animation($animation...) {
|
|
8
|
-
-moz-animation: $animation;
|
|
9
|
-
-o-animation: $animation;
|
|
10
|
-
-webkit-animation: $animation;
|
|
11
|
-
animation: $animation;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
@keyframes loader-progress-bar-working {
|
|
15
|
-
0% {width:10%;left: 0%}
|
|
16
|
-
25% {width:20%}
|
|
17
|
-
50% {width:10%;left: 90%}
|
|
18
|
-
75% {width:20%}
|
|
19
|
-
100% {width:10%;left: 0%}
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
.loader-container {
|
|
23
|
-
top: 0px;
|
|
24
|
-
left: 0px;
|
|
25
|
-
width: 100%;
|
|
26
|
-
height: 100%;
|
|
27
|
-
z-index: 99999999;
|
|
28
|
-
position: absolute;
|
|
29
|
-
background: #fafafa;
|
|
30
|
-
pointer-events: none;
|
|
31
|
-
@include transition(opacity .2s);
|
|
32
|
-
position: fixed;
|
|
33
|
-
opacity: 0;
|
|
34
|
-
|
|
35
|
-
&, * {
|
|
36
|
-
box-sizing: border-box;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
&.loader-progress-container {
|
|
40
|
-
&.loader-progress-visible {
|
|
41
|
-
pointer-events: auto;
|
|
42
|
-
opacity: 1;
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
&.loader-error-container {
|
|
46
|
-
&.loader-error-visible {
|
|
47
|
-
pointer-events: auto;
|
|
48
|
-
opacity: 1;
|
|
49
|
-
}
|
|
50
|
-
.loader-error-message-container {
|
|
51
|
-
display: block;
|
|
52
|
-
position: absolute;
|
|
53
|
-
transform: translateX(-50%);
|
|
54
|
-
background: #cc4444;
|
|
55
|
-
border-radius: 1em;
|
|
56
|
-
max-width: 80%;
|
|
57
|
-
padding: 0.5em;
|
|
58
|
-
margin: 0;
|
|
59
|
-
left: 50%;
|
|
60
|
-
top: 20%;
|
|
61
|
-
|
|
62
|
-
.loader-error-message {
|
|
63
|
-
font-family: 'Courier New', Courier, Console, System, monospace;
|
|
64
|
-
background: rgba(0, 0, 0, 0.2);
|
|
65
|
-
margin-bottom: 1em;
|
|
66
|
-
border-radius: 1em;
|
|
67
|
-
overflow: auto;
|
|
68
|
-
padding: 1em;
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
.loader-error-reload {
|
|
72
|
-
text-decoration: underline;
|
|
73
|
-
color: white;
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
background: #550000;
|
|
77
|
-
color: white;
|
|
78
|
-
}
|
|
79
|
-
.loader-progress-heading,
|
|
80
|
-
.loader-progress-message-container,
|
|
81
|
-
.loader-progress-bar-container {
|
|
82
|
-
left: 50%;
|
|
83
|
-
transform: translateX(-50%);
|
|
84
|
-
position: absolute;
|
|
85
|
-
}
|
|
86
|
-
.loader-progress-message-container {
|
|
87
|
-
@include transition(opacity .2s);
|
|
88
|
-
pointer-events: none;
|
|
89
|
-
text-align: center;
|
|
90
|
-
padding: 0 12px;
|
|
91
|
-
font-size: 1em;
|
|
92
|
-
bottom: 25%;
|
|
93
|
-
width: 100%;
|
|
94
|
-
opacity: 0;
|
|
95
|
-
}
|
|
96
|
-
.loader-progress-heading {
|
|
97
|
-
top: 15%;
|
|
98
|
-
font-size: 4em;
|
|
99
|
-
min-width: 152px;
|
|
100
|
-
line-height: 1.2;
|
|
101
|
-
font-weight: 600;
|
|
102
|
-
text-align: center;
|
|
103
|
-
text-shadow: #999 0px 0px 5px;
|
|
104
|
-
color: #555;
|
|
105
|
-
|
|
106
|
-
h1 {
|
|
107
|
-
font-weight: 700;
|
|
108
|
-
}
|
|
109
|
-
small {
|
|
110
|
-
font-weight: 400;
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
&, * {
|
|
114
|
-
font-family: Helvetica, Arial, sans-serif;
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
img {
|
|
118
|
-
width: 152px;
|
|
119
|
-
height: 152px;
|
|
120
|
-
}
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
.loader-progress-bar-container {
|
|
124
|
-
width: 80%;
|
|
125
|
-
border: solid 0.8pt #999;
|
|
126
|
-
height: 10px;
|
|
127
|
-
bottom: 5%;
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
.loader-progress-bar {
|
|
131
|
-
width: 0px;
|
|
132
|
-
height: 100%;
|
|
133
|
-
background: #999;
|
|
134
|
-
@include transition(width .2s);
|
|
135
|
-
&.loader-progress-bar-immediate {
|
|
136
|
-
@include transition(none);
|
|
137
|
-
}
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
&.loader-progress-message-visible {
|
|
141
|
-
.loader-progress-message-container {
|
|
142
|
-
pointer-events: auto;
|
|
143
|
-
opacity: 1;
|
|
144
|
-
}
|
|
145
|
-
.loader-progress-bar {
|
|
146
|
-
position: relative;
|
|
147
|
-
width: 20% !important;
|
|
148
|
-
@include animation(loader-progress-bar-working 2s ease infinite);
|
|
149
|
-
@include transition(none);
|
|
150
|
-
}
|
|
151
|
-
}
|
|
152
|
-
}
|
|
1
|
+
@mixin transition($transition...) {
|
|
2
|
+
-moz-transition: $transition;
|
|
3
|
+
-o-transition: $transition;
|
|
4
|
+
-webkit-transition: $transition;
|
|
5
|
+
transition: $transition;
|
|
6
|
+
}
|
|
7
|
+
@mixin animation($animation...) {
|
|
8
|
+
-moz-animation: $animation;
|
|
9
|
+
-o-animation: $animation;
|
|
10
|
+
-webkit-animation: $animation;
|
|
11
|
+
animation: $animation;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
@keyframes loader-progress-bar-working {
|
|
15
|
+
0% {width:10%;left: 0%}
|
|
16
|
+
25% {width:20%}
|
|
17
|
+
50% {width:10%;left: 90%}
|
|
18
|
+
75% {width:20%}
|
|
19
|
+
100% {width:10%;left: 0%}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.loader-container {
|
|
23
|
+
top: 0px;
|
|
24
|
+
left: 0px;
|
|
25
|
+
width: 100%;
|
|
26
|
+
height: 100%;
|
|
27
|
+
z-index: 99999999;
|
|
28
|
+
position: absolute;
|
|
29
|
+
background: #fafafa;
|
|
30
|
+
pointer-events: none;
|
|
31
|
+
@include transition(opacity .2s);
|
|
32
|
+
position: fixed;
|
|
33
|
+
opacity: 0;
|
|
34
|
+
|
|
35
|
+
&, * {
|
|
36
|
+
box-sizing: border-box;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
&.loader-progress-container {
|
|
40
|
+
&.loader-progress-visible {
|
|
41
|
+
pointer-events: auto;
|
|
42
|
+
opacity: 1;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
&.loader-error-container {
|
|
46
|
+
&.loader-error-visible {
|
|
47
|
+
pointer-events: auto;
|
|
48
|
+
opacity: 1;
|
|
49
|
+
}
|
|
50
|
+
.loader-error-message-container {
|
|
51
|
+
display: block;
|
|
52
|
+
position: absolute;
|
|
53
|
+
transform: translateX(-50%);
|
|
54
|
+
background: #cc4444;
|
|
55
|
+
border-radius: 1em;
|
|
56
|
+
max-width: 80%;
|
|
57
|
+
padding: 0.5em;
|
|
58
|
+
margin: 0;
|
|
59
|
+
left: 50%;
|
|
60
|
+
top: 20%;
|
|
61
|
+
|
|
62
|
+
.loader-error-message {
|
|
63
|
+
font-family: 'Courier New', Courier, Console, System, monospace;
|
|
64
|
+
background: rgba(0, 0, 0, 0.2);
|
|
65
|
+
margin-bottom: 1em;
|
|
66
|
+
border-radius: 1em;
|
|
67
|
+
overflow: auto;
|
|
68
|
+
padding: 1em;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.loader-error-reload {
|
|
72
|
+
text-decoration: underline;
|
|
73
|
+
color: white;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
background: #550000;
|
|
77
|
+
color: white;
|
|
78
|
+
}
|
|
79
|
+
.loader-progress-heading,
|
|
80
|
+
.loader-progress-message-container,
|
|
81
|
+
.loader-progress-bar-container {
|
|
82
|
+
left: 50%;
|
|
83
|
+
transform: translateX(-50%);
|
|
84
|
+
position: absolute;
|
|
85
|
+
}
|
|
86
|
+
.loader-progress-message-container {
|
|
87
|
+
@include transition(opacity .2s);
|
|
88
|
+
pointer-events: none;
|
|
89
|
+
text-align: center;
|
|
90
|
+
padding: 0 12px;
|
|
91
|
+
font-size: 1em;
|
|
92
|
+
bottom: 25%;
|
|
93
|
+
width: 100%;
|
|
94
|
+
opacity: 0;
|
|
95
|
+
}
|
|
96
|
+
.loader-progress-heading {
|
|
97
|
+
top: 15%;
|
|
98
|
+
font-size: 4em;
|
|
99
|
+
min-width: 152px;
|
|
100
|
+
line-height: 1.2;
|
|
101
|
+
font-weight: 600;
|
|
102
|
+
text-align: center;
|
|
103
|
+
text-shadow: #999 0px 0px 5px;
|
|
104
|
+
color: #555;
|
|
105
|
+
|
|
106
|
+
h1 {
|
|
107
|
+
font-weight: 700;
|
|
108
|
+
}
|
|
109
|
+
small {
|
|
110
|
+
font-weight: 400;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
&, * {
|
|
114
|
+
font-family: Helvetica, Arial, sans-serif;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
img {
|
|
118
|
+
width: 152px;
|
|
119
|
+
height: 152px;
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.loader-progress-bar-container {
|
|
124
|
+
width: 80%;
|
|
125
|
+
border: solid 0.8pt #999;
|
|
126
|
+
height: 10px;
|
|
127
|
+
bottom: 5%;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.loader-progress-bar {
|
|
131
|
+
width: 0px;
|
|
132
|
+
height: 100%;
|
|
133
|
+
background: #999;
|
|
134
|
+
@include transition(width .2s);
|
|
135
|
+
&.loader-progress-bar-immediate {
|
|
136
|
+
@include transition(none);
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
&.loader-progress-message-visible {
|
|
141
|
+
.loader-progress-message-container {
|
|
142
|
+
pointer-events: auto;
|
|
143
|
+
opacity: 1;
|
|
144
|
+
}
|
|
145
|
+
.loader-progress-bar {
|
|
146
|
+
position: relative;
|
|
147
|
+
width: 20% !important;
|
|
148
|
+
@include animation(loader-progress-bar-working 2s ease infinite);
|
|
149
|
+
@include transition(none);
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
}
|
package/package.json
CHANGED
|
@@ -1,90 +1,102 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "nexusframework",
|
|
3
|
-
"author": "NexusTools <contact@nexustools.com>",
|
|
4
|
-
"contributors": [
|
|
5
|
-
"Katelyn Slater <ktaeyln@gmail.com>"
|
|
6
|
-
],
|
|
7
|
-
"homepage": "https://nexustools.com/projects/nexusframework/nodejs",
|
|
8
|
-
"version": "0.3.0-beta.
|
|
9
|
-
"license": "Apache-2.0",
|
|
10
|
-
"description": "ExpressJS and NexusFork compatible website framework.",
|
|
11
|
-
"keywords": [
|
|
12
|
-
"NexusTools",
|
|
13
|
-
"NexusFramework",
|
|
14
|
-
"dynamic",
|
|
15
|
-
"website",
|
|
16
|
-
"modular",
|
|
17
|
-
"pages",
|
|
18
|
-
"views",
|
|
19
|
-
"express",
|
|
20
|
-
"nexusfork",
|
|
21
|
-
"javascript",
|
|
22
|
-
"template",
|
|
23
|
-
"html",
|
|
24
|
-
"sass",
|
|
25
|
-
"scss",
|
|
26
|
-
"nhp"
|
|
27
|
-
],
|
|
28
|
-
"bugs": {
|
|
29
|
-
"url": "https://github.com/NexusFramework/NexusFrameworkJS/issues"
|
|
30
|
-
},
|
|
31
|
-
"repository": {
|
|
32
|
-
"type": "git",
|
|
33
|
-
"url": "https://github.com/NexusFramework/NexusFrameworkJS.git"
|
|
34
|
-
},
|
|
35
|
-
"scripts": {
|
|
36
|
-
"
|
|
37
|
-
"compile-
|
|
38
|
-
"
|
|
39
|
-
"test
|
|
40
|
-
"test-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
"
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
"
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
"@
|
|
81
|
-
"
|
|
82
|
-
"
|
|
83
|
-
"
|
|
84
|
-
"
|
|
85
|
-
"
|
|
86
|
-
"
|
|
87
|
-
"
|
|
88
|
-
"
|
|
89
|
-
|
|
90
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "nexusframework",
|
|
3
|
+
"author": "NexusTools <contact@nexustools.com>",
|
|
4
|
+
"contributors": [
|
|
5
|
+
"Katelyn Slater <ktaeyln@gmail.com>"
|
|
6
|
+
],
|
|
7
|
+
"homepage": "https://nexustools.com/projects/nexusframework/nodejs",
|
|
8
|
+
"version": "0.3.0-beta.74",
|
|
9
|
+
"license": "Apache-2.0",
|
|
10
|
+
"description": "ExpressJS and NexusFork compatible website framework.",
|
|
11
|
+
"keywords": [
|
|
12
|
+
"NexusTools",
|
|
13
|
+
"NexusFramework",
|
|
14
|
+
"dynamic",
|
|
15
|
+
"website",
|
|
16
|
+
"modular",
|
|
17
|
+
"pages",
|
|
18
|
+
"views",
|
|
19
|
+
"express",
|
|
20
|
+
"nexusfork",
|
|
21
|
+
"javascript",
|
|
22
|
+
"template",
|
|
23
|
+
"html",
|
|
24
|
+
"sass",
|
|
25
|
+
"scss",
|
|
26
|
+
"nhp"
|
|
27
|
+
],
|
|
28
|
+
"bugs": {
|
|
29
|
+
"url": "https://github.com/NexusFramework/NexusFrameworkJS/issues"
|
|
30
|
+
},
|
|
31
|
+
"repository": {
|
|
32
|
+
"type": "git",
|
|
33
|
+
"url": "https://github.com/NexusFramework/NexusFrameworkJS.git"
|
|
34
|
+
},
|
|
35
|
+
"scripts": {
|
|
36
|
+
"build": "tsc",
|
|
37
|
+
"compile-scripts": "node src/compileScripts",
|
|
38
|
+
"compile-styles": "node-sass --output-style=\"compressed\" --output=\"loader\" loader",
|
|
39
|
+
"test": "jest --runInBand --forceExit",
|
|
40
|
+
"test-coverage": "jest --runInBand --forceExit --coverage",
|
|
41
|
+
"test-travis": "jest --runInBand --forceExit --coverage --coverageReporters=lcov"
|
|
42
|
+
},
|
|
43
|
+
"jest": {
|
|
44
|
+
"testMatch": [
|
|
45
|
+
"<rootDir>/test/tests.js"
|
|
46
|
+
],
|
|
47
|
+
"transform": {
|
|
48
|
+
"^.+\\.js$": "@swc/jest"
|
|
49
|
+
},
|
|
50
|
+
"transformIgnorePatterns": []
|
|
51
|
+
},
|
|
52
|
+
"main": "index",
|
|
53
|
+
"engines": {
|
|
54
|
+
"node": ">=8.0.0",
|
|
55
|
+
"npm": ">=5.0.0"
|
|
56
|
+
},
|
|
57
|
+
"bin": {
|
|
58
|
+
"nexusframework": "./src/cli.js"
|
|
59
|
+
},
|
|
60
|
+
"dependencies": {
|
|
61
|
+
"argwrap": "^0.0.4",
|
|
62
|
+
"async": "^3.2.6",
|
|
63
|
+
"bson": "^7.3.3",
|
|
64
|
+
"chokidar": "^5.0.0",
|
|
65
|
+
"cookie-parser": "^1.4.7",
|
|
66
|
+
"express": "^5.2.1",
|
|
67
|
+
"lodash": "^4.18.1",
|
|
68
|
+
"lru-weak-cache": "^0.4.0",
|
|
69
|
+
"mime-magic": "^5.14.0",
|
|
70
|
+
"moment": "^2.31.0",
|
|
71
|
+
"multer": "^2.4.0",
|
|
72
|
+
"nhp": "^1.0.1",
|
|
73
|
+
"sharp": "^0.35.4",
|
|
74
|
+
"socket.io": "^4.8.3",
|
|
75
|
+
"socket.io-client": "^4.8.3",
|
|
76
|
+
"statuses": "^2.0.2",
|
|
77
|
+
"useragent": "^2.3.0"
|
|
78
|
+
},
|
|
79
|
+
"devDependencies": {
|
|
80
|
+
"@swc/core": "^1.16.2",
|
|
81
|
+
"@swc/jest": "^0.2.39",
|
|
82
|
+
"@types/async": "^3.2.26",
|
|
83
|
+
"@types/chokidar": "^2.1.7",
|
|
84
|
+
"@types/express": "^5.0.6",
|
|
85
|
+
"@types/jest": "latest",
|
|
86
|
+
"@types/jquery": "^4.0.1",
|
|
87
|
+
"@types/lodash": "^4.17.25",
|
|
88
|
+
"@types/lru-cache": "^7.10.10",
|
|
89
|
+
"@types/request": "^2.48.13",
|
|
90
|
+
"@types/sharp": "^0.32.0",
|
|
91
|
+
"@types/socket.io": "^3.0.2",
|
|
92
|
+
"@types/socket.io-client": "^3.0.0",
|
|
93
|
+
"@types/useragent": "^2.3.4",
|
|
94
|
+
"jest": "^30.5.2",
|
|
95
|
+
"nexusfork": "^0.5.4",
|
|
96
|
+
"request": "^2.88.2",
|
|
97
|
+
"source-map-support": "^0.5.21",
|
|
98
|
+
"typescript": "^7.0.2",
|
|
99
|
+
"uglify-es": "^3.3.10",
|
|
100
|
+
"uglify-js": "^3.19.3"
|
|
101
|
+
}
|
|
102
|
+
}
|