vpn-split 13.1.23 → 16.0.2
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/assets/shared/shared_folder_info.txt +7 -0
- package/bin/vpn-split +11 -11
- package/bin/vpn-split-debug +11 -11
- package/browser/README.md +24 -24
- package/{client/esm2020 → browser/esm2022}/lib/index.mjs +2 -2
- package/{client/fesm2015 → browser/fesm2022}/vpn-split.mjs +1 -1
- package/browser/fesm2022/vpn-split.mjs.map +1 -0
- package/browser/package.json +6 -12
- package/client/README.md +24 -24
- package/{browser/esm2020 → client/esm2022}/lib/index.mjs +2 -2
- package/{browser/fesm2015 → client/fesm2022}/vpn-split.mjs +1 -1
- package/client/fesm2022/vpn-split.mjs.map +1 -0
- package/client/package.json +307 -25
- package/index.js.map +1 -1
- package/lib/hostile.backend.js.map +1 -1
- package/lib/index.js.map +1 -1
- package/lib/models.backend.d.ts +2 -2
- package/lib/models.backend.js.map +1 -1
- package/lib/start.backend.js.map +1 -1
- package/lib/vpn-split.backend.d.ts +6 -4
- package/lib/vpn-split.backend.js +29 -14
- package/lib/vpn-split.backend.js.map +1 -1
- package/package.json +38 -6
- package/package.json_devDependencies.json +222 -222
- package/package.json_tnp.json5 +39 -33
- package/tmp-environment.json +243 -204
- package/websql/README.md +24 -24
- package/websql/{esm2020 → esm2022}/lib/index.mjs +2 -2
- package/{browser/fesm2020 → websql/fesm2022}/vpn-split.mjs +1 -1
- package/websql/fesm2022/vpn-split.mjs.map +1 -0
- package/websql/package.json +6 -12
- package/app.d.ts +0 -0
- package/app.js +0 -6
- package/app.js.map +0 -1
- package/browser/fesm2015/vpn-split.mjs.map +0 -1
- package/browser/fesm2020/vpn-split.mjs.map +0 -1
- package/client/fesm2015/vpn-split.mjs.map +0 -1
- package/client/fesm2020/vpn-split.mjs +0 -14
- package/client/fesm2020/vpn-split.mjs.map +0 -1
- package/websql/fesm2015/vpn-split.mjs +0 -14
- package/websql/fesm2015/vpn-split.mjs.map +0 -1
- package/websql/fesm2020/vpn-split.mjs +0 -14
- package/websql/fesm2020/vpn-split.mjs.map +0 -1
- /package/browser/{esm2020 → esm2022}/public-api.mjs +0 -0
- /package/browser/{esm2020 → esm2022}/vpn-split.mjs +0 -0
- /package/browser/{vpn-split.d.ts → index.d.ts} +0 -0
- /package/client/{esm2020 → esm2022}/public-api.mjs +0 -0
- /package/client/{esm2020 → esm2022}/vpn-split.mjs +0 -0
- /package/client/{vpn-split.d.ts → index.d.ts} +0 -0
- /package/websql/{esm2020 → esm2022}/public-api.mjs +0 -0
- /package/websql/{esm2020 → esm2022}/vpn-split.mjs +0 -0
- /package/websql/{vpn-split.d.ts → index.d.ts} +0 -0
package/tmp-environment.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"domain": "vpn-split.example.domain.com",
|
|
3
|
-
"
|
|
3
|
+
"isCoreProject": false,
|
|
4
4
|
"ip": "localhost",
|
|
5
5
|
"packageJSON": {
|
|
6
6
|
"tnp": {
|
|
@@ -16,7 +16,8 @@
|
|
|
16
16
|
"hostile",
|
|
17
17
|
"is-elevated"
|
|
18
18
|
],
|
|
19
|
-
"dependencies": {}
|
|
19
|
+
"dependencies": {},
|
|
20
|
+
"npmFixes": []
|
|
20
21
|
},
|
|
21
22
|
"linkedProjects": [],
|
|
22
23
|
"smartContainerBuildTarget": "",
|
|
@@ -24,19 +25,20 @@
|
|
|
24
25
|
"libReleaseOptions": {
|
|
25
26
|
"nodts": false,
|
|
26
27
|
"obscure": false,
|
|
27
|
-
"ugly": false
|
|
28
|
+
"ugly": false,
|
|
29
|
+
"includeNodeModules": false
|
|
28
30
|
},
|
|
29
31
|
"smartContainerTarget": "",
|
|
30
32
|
"type": "isomorphic-lib",
|
|
31
|
-
"version": "
|
|
33
|
+
"version": "v4",
|
|
32
34
|
"license": "MIT",
|
|
33
35
|
"private": false,
|
|
34
36
|
"workerPlugins": {}
|
|
35
37
|
},
|
|
36
38
|
"dependencies": {
|
|
37
|
-
"hostile": "
|
|
38
|
-
"is-elevated": "
|
|
39
|
-
"tnp-db": "~
|
|
39
|
+
"hostile": "1.3.3",
|
|
40
|
+
"is-elevated": "3.0.0",
|
|
41
|
+
"tnp-db": "~16.0.27"
|
|
40
42
|
},
|
|
41
43
|
"name": "vpn-split",
|
|
42
44
|
"license": "MIT",
|
|
@@ -45,249 +47,286 @@
|
|
|
45
47
|
"vpn-split": "bin/vpn-split",
|
|
46
48
|
"vpn-split-debug": "bin/vpn-split-debug"
|
|
47
49
|
},
|
|
48
|
-
"version": "
|
|
49
|
-
"lastBuildTagHash": "
|
|
50
|
+
"version": "16.0.2",
|
|
51
|
+
"lastBuildTagHash": "c60da2d17e14c6eeb448fb04f51775e94d984793",
|
|
50
52
|
"devDependencies": {
|
|
51
|
-
"@angular-devkit/build-angular": "~
|
|
52
|
-
"@angular-devkit/core": "~
|
|
53
|
-
"@angular/
|
|
54
|
-
"@angular/
|
|
55
|
-
"@angular/
|
|
56
|
-
"@angular/
|
|
57
|
-
"@angular/
|
|
58
|
-
"@angular/
|
|
59
|
-
"@angular/
|
|
60
|
-
"@angular/
|
|
61
|
-
"@angular/
|
|
62
|
-
"@angular/
|
|
63
|
-
"@angular/
|
|
64
|
-
"@angular/
|
|
65
|
-
"@angular/
|
|
66
|
-
"@angular/
|
|
67
|
-
"@
|
|
53
|
+
"@angular-devkit/build-angular": "~16.0.5",
|
|
54
|
+
"@angular-devkit/core": "~16.0.5",
|
|
55
|
+
"@angular-material-extensions/password-strength": "~12.1.0",
|
|
56
|
+
"@angular/animations": "~16.0.0",
|
|
57
|
+
"@angular/cdk": "~16.0.3",
|
|
58
|
+
"@angular/cli": "~16.0.5",
|
|
59
|
+
"@angular/common": "~16.0.0",
|
|
60
|
+
"@angular/compiler": "~16.0.0",
|
|
61
|
+
"@angular/compiler-cli": "~16.0.4",
|
|
62
|
+
"@angular/core": "~16.0.0",
|
|
63
|
+
"@angular/elements": "~16.0.4",
|
|
64
|
+
"@angular/forms": "~16.0.0",
|
|
65
|
+
"@angular/material": "~16.0.3",
|
|
66
|
+
"@angular/platform-browser": "~16.0.4",
|
|
67
|
+
"@angular/platform-browser-dynamic": "~16.0.4",
|
|
68
|
+
"@angular/pwa": "~16.0.5",
|
|
69
|
+
"@angular/router": "~16.0.0",
|
|
70
|
+
"@angular/service-worker": "~16.0.4",
|
|
71
|
+
"@babel/cli": "7.18.6",
|
|
72
|
+
"@compodoc/compodoc": "1.1.20",
|
|
73
|
+
"@cypress/schematic": "2.5.0",
|
|
68
74
|
"@iconify/icons-fa-solid": "1.2.2",
|
|
69
75
|
"@iconify/icons-mdi": "1.2.1",
|
|
70
|
-
"@mdi/js": "
|
|
71
|
-
"@
|
|
72
|
-
"@
|
|
73
|
-
"@
|
|
74
|
-
"@
|
|
75
|
-
"@
|
|
76
|
-
"@ngrx/
|
|
77
|
-
"@ngrx/
|
|
78
|
-
"@ngrx/
|
|
79
|
-
"@
|
|
80
|
-
"@
|
|
81
|
-
"@
|
|
82
|
-
"@
|
|
83
|
-
"@
|
|
84
|
-
"@ngx-
|
|
85
|
-
"@ngx-
|
|
86
|
-
"@ngx-translate/core": "
|
|
87
|
-
"@ngx-translate/http-loader": "
|
|
88
|
-
"@
|
|
89
|
-
"@
|
|
76
|
+
"@mdi/js": "7.2.96",
|
|
77
|
+
"@ng-matero/extensions": "16.0.0",
|
|
78
|
+
"@ngneat/falso": "6.4.0",
|
|
79
|
+
"@ngneat/hot-toast": "5.0.1",
|
|
80
|
+
"@ngneat/overview": "5.0.0",
|
|
81
|
+
"@ngneat/spectator": "15.0.0",
|
|
82
|
+
"@ngrx/component-store": "~16.0.1",
|
|
83
|
+
"@ngrx/data": "~16.0.1",
|
|
84
|
+
"@ngrx/effects": "~16.0.1",
|
|
85
|
+
"@ngrx/entity": "~16.0.1",
|
|
86
|
+
"@ngrx/router-store": "~16.0.1",
|
|
87
|
+
"@ngrx/schematics": "~16.0.1",
|
|
88
|
+
"@ngrx/store": "~16.0.1",
|
|
89
|
+
"@ngrx/store-devtools": "~16.0.1",
|
|
90
|
+
"@ngx-formly/core": "6.1.7",
|
|
91
|
+
"@ngx-formly/material": "6.1.7",
|
|
92
|
+
"@ngx-translate/core": "15.0.0",
|
|
93
|
+
"@ngx-translate/http-loader": "8.0.0",
|
|
94
|
+
"@sweetalert2/ngx-sweetalert2": "12.1.0",
|
|
95
|
+
"@testdeck/jest": "0.3.3",
|
|
96
|
+
"@testdeck/mocha": "0.3.3",
|
|
97
|
+
"@types/chai": "4.1.2",
|
|
90
98
|
"@types/chokidar": "2.1.3",
|
|
91
|
-
"@types/dateformat": "
|
|
92
|
-
"@types/diff": "
|
|
93
|
-
"@types/express": "
|
|
94
|
-
"@types/express-fileupload": "
|
|
95
|
-
"@types/fs-extra": "
|
|
96
|
-
"@types/glob": "
|
|
97
|
-
"@types/http-proxy": "
|
|
99
|
+
"@types/dateformat": "1.0.1",
|
|
100
|
+
"@types/diff": "3.2.2",
|
|
101
|
+
"@types/express": "4.11.0",
|
|
102
|
+
"@types/express-fileupload": "1.4.1",
|
|
103
|
+
"@types/fs-extra": "7.0.0",
|
|
104
|
+
"@types/glob": "5.0.35",
|
|
105
|
+
"@types/http-proxy": "1.16.0",
|
|
98
106
|
"@types/http-proxy-middleware": "0.19.2",
|
|
99
|
-
"@types/
|
|
100
|
-
"@types/
|
|
101
|
-
"@types/json-stringify-safe": "^5.0.0",
|
|
107
|
+
"@types/jest": "29.5.2",
|
|
108
|
+
"@types/json-stringify-safe": "5.0.0",
|
|
102
109
|
"@types/json5": "0.0.29",
|
|
103
|
-
"@types/lockfile": "
|
|
110
|
+
"@types/lockfile": "1.0.0",
|
|
104
111
|
"@types/lodash": "4.14.92",
|
|
105
|
-
"@types/lowdb": "
|
|
106
|
-
"@types/mocha": "
|
|
107
|
-
"@types/node": "
|
|
108
|
-
"@types/node-notifier": "
|
|
109
|
-
"@types/oauth2orize": "
|
|
110
|
-
"@types/password-hash": "
|
|
111
|
-
"@types/progress": "
|
|
112
|
+
"@types/lowdb": "1.0.6",
|
|
113
|
+
"@types/mocha": "5.2.5",
|
|
114
|
+
"@types/node": "16.18.21",
|
|
115
|
+
"@types/node-notifier": "5.4.0",
|
|
116
|
+
"@types/oauth2orize": "1.8.0",
|
|
117
|
+
"@types/password-hash": "1.2.19",
|
|
118
|
+
"@types/progress": "2.0.3",
|
|
112
119
|
"@types/q": "1.5.5",
|
|
113
|
-
"@types/rimraf": "
|
|
120
|
+
"@types/rimraf": "2.0.2",
|
|
114
121
|
"@types/semver": "6.0.1",
|
|
115
|
-
"@types/systeminformation": "
|
|
116
|
-
"@types/vinyl": "
|
|
117
|
-
"@types/watch": "
|
|
118
|
-
"accepts": "
|
|
119
|
-
"
|
|
120
|
-
"
|
|
121
|
-
"
|
|
122
|
+
"@types/systeminformation": "3.23.0",
|
|
123
|
+
"@types/vinyl": "2.0.2",
|
|
124
|
+
"@types/watch": "1.0.0",
|
|
125
|
+
"accepts": "1.3.4",
|
|
126
|
+
"angular-material-css-vars": "5.0.2",
|
|
127
|
+
"animate.css": "4.1.1 ",
|
|
128
|
+
"any-project-cli": "~16.0.32",
|
|
129
|
+
"axios": "1.3.5",
|
|
130
|
+
"background-worker-process": "~16.0.49",
|
|
131
|
+
"base32": "0.0.7",
|
|
122
132
|
"bcryptjs": "2.4.3",
|
|
123
133
|
"better-sqlite3": "7.6.2",
|
|
124
|
-
"body-parser": "
|
|
125
|
-
"bootstrap": "
|
|
126
|
-
"
|
|
127
|
-
"buffer-shims": "^1.0.0",
|
|
134
|
+
"body-parser": "1.18.2",
|
|
135
|
+
"bootstrap": "4.6.2",
|
|
136
|
+
"buffer-shims": "1.0.0",
|
|
128
137
|
"callsite-record": "4.1.3",
|
|
129
|
-
"chai": "
|
|
130
|
-
"chalk": "
|
|
131
|
-
"check-node-version": "
|
|
138
|
+
"chai": "4.3.7",
|
|
139
|
+
"chalk": "2.3.2",
|
|
140
|
+
"check-node-version": "3.2.0",
|
|
132
141
|
"cheerio": "1.0.0-rc.3",
|
|
133
142
|
"chokidar": "3.5.1",
|
|
134
|
-
"circular-json": "
|
|
135
|
-
"
|
|
143
|
+
"circular-json": "0.5.1",
|
|
144
|
+
"class-validator": "0.14.0",
|
|
145
|
+
"command-exists": "1.2.2",
|
|
136
146
|
"compression": "1.7.4",
|
|
137
|
-
"concurrently": "
|
|
138
|
-
"content-type": "
|
|
139
|
-
"
|
|
140
|
-
"
|
|
141
|
-
"
|
|
142
|
-
"
|
|
143
|
-
"
|
|
144
|
-
"
|
|
147
|
+
"concurrently": "3.5.1",
|
|
148
|
+
"content-type": "1.0.4",
|
|
149
|
+
"conventional-changelog-cli": "3.0.0",
|
|
150
|
+
"cookie-parser": "1.4.3",
|
|
151
|
+
"copy-paste": "1.5.3",
|
|
152
|
+
"cors": "2.8.4",
|
|
153
|
+
"cpr": "3.0.1",
|
|
154
|
+
"cross-spawn": "7.0.3",
|
|
155
|
+
"cypress": "latest",
|
|
156
|
+
"dateformat": "3.0.3",
|
|
145
157
|
"detect-mocha": "0.1.0",
|
|
146
|
-
"diff": "
|
|
158
|
+
"diff": "3.2.0",
|
|
159
|
+
"electron": "25.2.0",
|
|
160
|
+
"electron-builder": "24.4.0",
|
|
161
|
+
"electron-debug": "3.2.0",
|
|
162
|
+
"electron-reloader": "1.2.3",
|
|
147
163
|
"element-resize-detector": "1.1.15",
|
|
148
|
-
"enquirer": "
|
|
164
|
+
"enquirer": "2.3.0",
|
|
149
165
|
"enum-values": "1.2.1",
|
|
150
|
-
"errorhandler": "
|
|
166
|
+
"errorhandler": "1.5.0",
|
|
151
167
|
"eslint": "7.13.0",
|
|
152
168
|
"eslint-plugin-import": "2.22.1",
|
|
153
169
|
"eslint-plugin-jsdoc": "30.7.8",
|
|
154
170
|
"eslint-plugin-prefer-arrow": "1.2.2",
|
|
155
|
-
"express": "
|
|
156
|
-
"express-fileupload": "
|
|
171
|
+
"express": "4.16.3",
|
|
172
|
+
"express-fileupload": "1.4.0",
|
|
157
173
|
"express-session": "1.17.3",
|
|
158
|
-
"
|
|
159
|
-
"file-
|
|
160
|
-
"
|
|
161
|
-
"firedev
|
|
162
|
-
"firedev-
|
|
163
|
-
"firedev-
|
|
164
|
-
"firedev-
|
|
174
|
+
"file-loader": "1.1.5",
|
|
175
|
+
"file-saver": "2.0.5",
|
|
176
|
+
"file-type": "18.5.0",
|
|
177
|
+
"firedev": "^16",
|
|
178
|
+
"firedev-crud": "~16.0.54",
|
|
179
|
+
"firedev-crud-deamon": "~16.0.44",
|
|
180
|
+
"firedev-ports": "~16.0.49",
|
|
181
|
+
"firedev-storage": "~16.0.41",
|
|
182
|
+
"firedev-type-sql": "~16.0.2",
|
|
183
|
+
"firedev-typeorm": "~16.0.39",
|
|
184
|
+
"firedev-ui": "~16.0.9",
|
|
165
185
|
"fkill": "6.1.0",
|
|
166
|
-
"font-awesome": "
|
|
186
|
+
"font-awesome": "4.7.0",
|
|
187
|
+
"form-data": "4.0.0",
|
|
167
188
|
"fs-extra": "8.1.0",
|
|
168
|
-
"fuzzy": "
|
|
169
|
-
"glob": "
|
|
170
|
-
"gulp": "
|
|
171
|
-
"
|
|
189
|
+
"fuzzy": "0.1.3",
|
|
190
|
+
"glob": "7.1.2",
|
|
191
|
+
"gulp": "3.9.1",
|
|
192
|
+
"helmet": "7.0.0",
|
|
193
|
+
"howler": "2.2.3",
|
|
194
|
+
"http-proxy": "1.16.2",
|
|
172
195
|
"http-proxy-middleware": "0.19.1",
|
|
173
196
|
"http-server": "0.11.1",
|
|
174
|
-
"
|
|
175
|
-
"
|
|
176
|
-
"
|
|
177
|
-
"
|
|
178
|
-
"
|
|
179
|
-
"
|
|
180
|
-
"
|
|
181
|
-
"
|
|
182
|
-
"
|
|
183
|
-
"
|
|
184
|
-
"
|
|
185
|
-
"
|
|
186
|
-
"
|
|
187
|
-
"
|
|
188
|
-
"
|
|
189
|
-
"
|
|
190
|
-
"
|
|
191
|
-
"
|
|
192
|
-
"
|
|
193
|
-
"
|
|
194
|
-
"
|
|
195
|
-
"
|
|
196
|
-
"
|
|
197
|
-
"
|
|
198
|
-
"
|
|
199
|
-
"
|
|
200
|
-
"
|
|
201
|
-
"
|
|
197
|
+
"image-focus": "1.2.1",
|
|
198
|
+
"immer": "10.0.2",
|
|
199
|
+
"immutable": "4.3.0",
|
|
200
|
+
"incremental-compiler": "~16.0.31",
|
|
201
|
+
"inquirer": "7.3.3",
|
|
202
|
+
"inquirer-autocomplete-prompt": "1.3.0",
|
|
203
|
+
"isomorphic-region-loader": "~16.0.42",
|
|
204
|
+
"istanbul-instrumenter-loader": "2.0.0",
|
|
205
|
+
"jest": "29.5.0",
|
|
206
|
+
"jest-date-mock": "1.0.8",
|
|
207
|
+
"jest-junit": "16.0.0",
|
|
208
|
+
"jest-marbles": "latest",
|
|
209
|
+
"jest-preset-angular": "13.1.1",
|
|
210
|
+
"jimp": "0.22.8",
|
|
211
|
+
"joi": "17.9.2",
|
|
212
|
+
"jscodeshift": "0.6.3",
|
|
213
|
+
"json-stringify-safe": "5.0.1",
|
|
214
|
+
"json10": "~16.0.49",
|
|
215
|
+
"json10-writer": "~16.0.45",
|
|
216
|
+
"json5": "2.2.1",
|
|
217
|
+
"json5-writer": "0.2.0",
|
|
218
|
+
"jszip": "3.10.1",
|
|
219
|
+
"karma-cli": "1.0.1",
|
|
220
|
+
"lnk": "1.0.1",
|
|
221
|
+
"localforage": "1.10.0",
|
|
222
|
+
"lockfile": "1.0.4",
|
|
223
|
+
"lodash": "4.17.20",
|
|
224
|
+
"lodash-walk-object": "~16.0.49",
|
|
225
|
+
"lowdb": "1.0.0",
|
|
226
|
+
"magic-renamer": "~16.0.47",
|
|
202
227
|
"material-design-icons": "3.0.1",
|
|
203
|
-
"method-override": "
|
|
204
|
-
"minimist": "
|
|
205
|
-
"mkdirp": "
|
|
206
|
-
"mocha": "
|
|
207
|
-
"moment": "
|
|
208
|
-
"morphi": "~
|
|
209
|
-
"ng-
|
|
210
|
-
"ng-
|
|
211
|
-
"
|
|
212
|
-
"
|
|
213
|
-
"
|
|
214
|
-
"
|
|
215
|
-
"
|
|
216
|
-
"ngx-
|
|
228
|
+
"method-override": "2.3.10",
|
|
229
|
+
"minimist": "1.2.0",
|
|
230
|
+
"mkdirp": "0.5.1",
|
|
231
|
+
"mocha": "10.2.0",
|
|
232
|
+
"moment": "2.29.3",
|
|
233
|
+
"morphi": "~16.2.3",
|
|
234
|
+
"ng-for-track-by-property": "16.0.1",
|
|
235
|
+
"ng-in-viewport": "15.0.2",
|
|
236
|
+
"ng-lock": "16.0.1",
|
|
237
|
+
"ng-packagr": "16.0.1",
|
|
238
|
+
"ng-talkback": "~16.2.1",
|
|
239
|
+
"ng2-logger": "~16.0.7",
|
|
240
|
+
"ng2-rest": "~16.0.14",
|
|
241
|
+
"ngx-ace-wrapper": "14.0.0",
|
|
242
|
+
"ngx-editor": "15.3.0",
|
|
243
|
+
"ngx-highlightjs": "9.0.0",
|
|
217
244
|
"ngx-moment": "6.0.2",
|
|
218
|
-
"ngx-pipes": "3.
|
|
245
|
+
"ngx-pipes": "3.2.2",
|
|
246
|
+
"ngx-progressbar": "11.0.0",
|
|
247
|
+
"ngx-scrollbar": "12.0.0",
|
|
248
|
+
"ngx-scrolltop": "6.0.0",
|
|
219
249
|
"ngx-store": "3.1.1",
|
|
220
|
-
"ngx-
|
|
221
|
-
"
|
|
222
|
-
"node-cli-tester": "~13.1.19",
|
|
250
|
+
"ngx-typed-js": "2.1.1",
|
|
251
|
+
"node-cli-tester": "~16.0.2",
|
|
223
252
|
"node-localstorage": "2.1.6",
|
|
224
|
-
"node-notifier": "
|
|
225
|
-
"
|
|
226
|
-
"
|
|
227
|
-
"npm-
|
|
228
|
-
"
|
|
253
|
+
"node-notifier": "6.0.0",
|
|
254
|
+
"node-polyfill-webpack-plugin": "2.0.1",
|
|
255
|
+
"nodemon": "1.14.11",
|
|
256
|
+
"npm-get-dependents": "1.0.1",
|
|
257
|
+
"npm-run": "4.1.2",
|
|
258
|
+
"omelette": "0.4.5",
|
|
229
259
|
"open": "7.2.1",
|
|
230
260
|
"ora": "3.4.0",
|
|
231
|
-
"passport": "
|
|
232
|
-
"passport-http-bearer": "
|
|
233
|
-
"password-hash": "
|
|
261
|
+
"passport": "0.3.2",
|
|
262
|
+
"passport-http-bearer": "1.0.1",
|
|
263
|
+
"password-hash": "1.2.2",
|
|
264
|
+
"pica": "9.0.1",
|
|
234
265
|
"portfinder": "1.0.21",
|
|
235
266
|
"prettier": "2.5.1",
|
|
236
|
-
"progress": "
|
|
237
|
-
"prompts": "
|
|
267
|
+
"progress": "2.0.3",
|
|
268
|
+
"prompts": "0.1.8",
|
|
238
269
|
"ps-list": "6.1.0",
|
|
239
|
-
"ps-node": "
|
|
240
|
-
"q": "
|
|
241
|
-
"
|
|
242
|
-
"
|
|
243
|
-
"
|
|
244
|
-
"
|
|
245
|
-
"
|
|
270
|
+
"ps-node": "0.1.6",
|
|
271
|
+
"q": "1.5.1",
|
|
272
|
+
"rallax.js": "2.0.4",
|
|
273
|
+
"randomcolor": "0.5.3",
|
|
274
|
+
"record-replay-req-res-scenario": "~16.0.1",
|
|
275
|
+
"reflect-metadata": "0.1.10",
|
|
276
|
+
"rimraf": "2.6.2",
|
|
277
|
+
"rxjs": "~7.8.0",
|
|
246
278
|
"semver": "6.3.0",
|
|
247
|
-
"simple-git": "
|
|
248
|
-
"
|
|
249
|
-
"
|
|
250
|
-
"
|
|
251
|
-
"
|
|
252
|
-
"
|
|
253
|
-
"
|
|
254
|
-
"
|
|
255
|
-
"
|
|
256
|
-
"
|
|
257
|
-
"
|
|
258
|
-
"
|
|
259
|
-
"
|
|
260
|
-
"
|
|
261
|
-
"tnp-
|
|
262
|
-
"tnp-
|
|
263
|
-
"
|
|
264
|
-
"
|
|
265
|
-
"
|
|
266
|
-
"
|
|
267
|
-
"
|
|
268
|
-
"
|
|
269
|
-
"
|
|
270
|
-
"
|
|
271
|
-
"
|
|
272
|
-
"
|
|
273
|
-
"
|
|
274
|
-
"
|
|
275
|
-
"
|
|
276
|
-
"
|
|
279
|
+
"simple-git": "1.96.0",
|
|
280
|
+
"sinon": "15.2.0",
|
|
281
|
+
"sloc": "0.2.0",
|
|
282
|
+
"socket.io": "2.4.1",
|
|
283
|
+
"sort-package-json": "1.11.0",
|
|
284
|
+
"sql.js": "1.8.0",
|
|
285
|
+
"static-columns": "~16.0.7",
|
|
286
|
+
"string-similarity": "4.0.2",
|
|
287
|
+
"sudo-block": "3.0.0",
|
|
288
|
+
"supertest": "6.3.3",
|
|
289
|
+
"sweetalert2": "11.7.12",
|
|
290
|
+
"systeminformation": "3.45.7",
|
|
291
|
+
"task.js": "0.1.5",
|
|
292
|
+
"threads": "1.7.0",
|
|
293
|
+
"tnp-cli": "~16.0.6",
|
|
294
|
+
"tnp-config": "~16.0.13",
|
|
295
|
+
"tnp-core": "~16.0.14",
|
|
296
|
+
"tnp-helpers": "~16.0.9",
|
|
297
|
+
"tnp-models": "~16.0.36",
|
|
298
|
+
"ts-debug": "1.3.0",
|
|
299
|
+
"ts-loader": "2.3.1",
|
|
300
|
+
"ts-node": "10.9.1",
|
|
301
|
+
"tslib": "~2.3.0",
|
|
302
|
+
"tslint": "5.9.1",
|
|
303
|
+
"turndown": "7.1.2",
|
|
304
|
+
"typeorm": "~0.3.10",
|
|
305
|
+
"typescript": "~5.0.2",
|
|
306
|
+
"typescript-class-helpers": "~16.0.17",
|
|
307
|
+
"typescript-formatter": "~7.2.2",
|
|
308
|
+
"underscore": "1.9.1",
|
|
309
|
+
"uuid": "8.3.2",
|
|
310
|
+
"validator": "9.2.0",
|
|
311
|
+
"video.js": "8.3.0",
|
|
312
|
+
"vpn-split": "~16.0.1",
|
|
313
|
+
"watch": "1.0.2",
|
|
314
|
+
"yup": "1.1.1",
|
|
315
|
+
"zone.js": "~0.13.0"
|
|
277
316
|
}
|
|
278
317
|
},
|
|
279
318
|
"build": {
|
|
280
|
-
"number":
|
|
281
|
-
"date": "
|
|
282
|
-
"hash": "
|
|
319
|
+
"number": 138,
|
|
320
|
+
"date": "2023-07-04T06:32:25.000Z",
|
|
321
|
+
"hash": "9c314a9e026d36a16fb3fadf45fb8d5aed83da5c",
|
|
283
322
|
"options": {}
|
|
284
323
|
},
|
|
285
324
|
"currentProjectName": "vpn-split",
|
|
286
|
-
"
|
|
325
|
+
"currentProjectGenericName": "vpn-split",
|
|
287
326
|
"currentProjectLaunchConfiguration": "{\"version\":\"0.2.0\",\"configurations\":[{\"type\":\"node\",\"request\":\"launch\",\"name\":\"Launch Server standalone\",\"program\":\"${workspaceFolder}/run.js\",\"args\":[\"--ENVoverride=%7B%0A%20%20%20%20%22clientProjectName%22%3A%20%22vpn-split%22%0A%7D\"],\"runtimeArgs\":[\"--nolazy\",\"-r\",\"ts-node/register\",\"--experimental-worker\"]},{\"name\":\"Debugger with ng serve\",\"type\":\"chrome\",\"request\":\"launch\",\"preLaunchTask\":\"Ng Serve\",\"postDebugTask\":\"terminateall\",\"sourceMaps\":true,\"webRoot\":\"${workspaceFolder}\",\"sourceMapPathOverrides\":{\"webpack:/*\":\"${webRoot}/*\",\"/./*\":\"${webRoot}/*\",\"/tmp-src/*\":\"${webRoot}/*\",\"/*\":\"*\",\"/./~/*\":\"${webRoot}/node_modules/*\"}},{\"type\":\"node\",\"request\":\"attach\",\"name\":\"Attach to global cli tool\",\"port\":9229,\"skipFiles\":[\"<node_internals>/**\"]}],\"compounds\":[{\"name\":\"Debug backend/frontend\",\"configurations\":[\"Launch Server standalone\",\"Debugger with ng serve\"]}]}",
|
|
288
327
|
"currentProjectTasksConfiguration": "{\"version\":\"2.0.0\",\"tasks\":[{\"label\":\"terminateall\",\"command\":\"echo ${input:terminate}\",\"type\":\"shell\",\"problemMatcher\":[]},{\"label\":\"Ng Serve\",\"type\":\"shell\",\"command\":\"tnp build\",\"isBackground\":true,\"presentation\":{\"reveal\":\"always\"},\"group\":{\"kind\":\"build\",\"isDefault\":true},\"problemMatcher\":{\"owner\":\"typescript\",\"source\":\"ts\",\"applyTo\":\"closedDocuments\",\"fileLocation\":[\"relative\",\"${cwd}\"],\"pattern\":\"$tsc\",\"background\":{\"activeOnStart\":true,\"beginsPattern\":{\"regexp\":\"(.*?)\"},\"endsPattern\":{\"regexp\":\"Compiled |Failed to compile.\"}}}}],\"inputs\":[{\"id\":\"terminate\",\"type\":\"command\",\"command\":\"workbench.action.tasks.terminate\",\"args\":\"terminateAll\"}]}",
|
|
289
328
|
"currentProjectType": "isomorphic-lib",
|
|
290
|
-
"currentFrameworkVersion": "
|
|
329
|
+
"currentFrameworkVersion": "16.0.20",
|
|
291
330
|
"currentProjectIsStrictSite": false,
|
|
292
331
|
"currentProjectIsDependencySite": false,
|
|
293
332
|
"currentProjectIsStatic": false,
|
package/websql/README.md
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
# MyLib
|
|
2
|
-
|
|
3
|
-
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.2.0.
|
|
4
|
-
|
|
5
|
-
## Code scaffolding
|
|
6
|
-
|
|
7
|
-
Run `ng generate component component-name --project my-lib` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project my-lib`.
|
|
8
|
-
> Note: Don't forget to add `--project my-lib` or else it will be added to the default project in your `angular.json` file.
|
|
9
|
-
|
|
10
|
-
## Build
|
|
11
|
-
|
|
12
|
-
Run `ng build my-lib` to build the project. The build artifacts will be stored in the `dist/` directory.
|
|
13
|
-
|
|
14
|
-
## Publishing
|
|
15
|
-
|
|
16
|
-
After building your library with `ng build my-lib`, go to the dist folder `cd dist/my-lib` and run `npm publish`.
|
|
17
|
-
|
|
18
|
-
## Running unit tests
|
|
19
|
-
|
|
20
|
-
Run `ng test my-lib` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
|
21
|
-
|
|
22
|
-
## Further help
|
|
23
|
-
|
|
24
|
-
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
|
|
1
|
+
# MyLib
|
|
2
|
+
|
|
3
|
+
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.2.0.
|
|
4
|
+
|
|
5
|
+
## Code scaffolding
|
|
6
|
+
|
|
7
|
+
Run `ng generate component component-name --project my-lib` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project my-lib`.
|
|
8
|
+
> Note: Don't forget to add `--project my-lib` or else it will be added to the default project in your `angular.json` file.
|
|
9
|
+
|
|
10
|
+
## Build
|
|
11
|
+
|
|
12
|
+
Run `ng build my-lib` to build the project. The build artifacts will be stored in the `dist/` directory.
|
|
13
|
+
|
|
14
|
+
## Publishing
|
|
15
|
+
|
|
16
|
+
After building your library with `ng build my-lib`, go to the dist folder `cd dist/my-lib` and run `npm publish`.
|
|
17
|
+
|
|
18
|
+
## Running unit tests
|
|
19
|
+
|
|
20
|
+
Run `ng test my-lib` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
|
21
|
+
|
|
22
|
+
## Further help
|
|
23
|
+
|
|
24
|
+
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
|
|
@@ -4,5 +4,5 @@
|
|
|
4
4
|
export function helloWorld() {
|
|
5
5
|
}
|
|
6
6
|
;
|
|
7
|
-
({}); // @--end-of-file-for-module=vpn-split
|
|
8
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
7
|
+
({}); // @--end-of-file-for-module=vpn-split lib/index.ts
|
|
8
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi90bXAtbGlicy1mb3ItYnVuZGxlLXdlYnNxbC92cG4tc3BsaXQvcHJvamVjdHMvdnBuLXNwbGl0L3NyYy9saWIvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsS0FBSztBQUNMLEtBQUs7QUFDTCxLQUFLO0FBSUwsTUFBTSxVQUFVLFVBQVU7QUFFMUIsQ0FBQztBQUVBLENBQUM7QUFBQSxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUMsbURBQW1EIiwic291cmNlc0NvbnRlbnQiOlsiLyogKi9cbi8qICovXG4vKiAqL1xuICBcblxuXG5leHBvcnQgZnVuY3Rpb24gaGVsbG9Xb3JsZCgpIHtcblxufVxuXG4gOyh7fSk7IC8vIEAtLWVuZC1vZi1maWxlLWZvci1tb2R1bGU9dnBuLXNwbGl0IGxpYi9pbmRleC50cyJdfQ==
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"vpn-split.mjs","sources":["../../../tmp-libs-for-bundle-websql/vpn-split/projects/vpn-split/src/lib/index.ts","../../../tmp-libs-for-bundle-websql/vpn-split/projects/vpn-split/src/vpn-split.ts"],"sourcesContent":["/* */\n/* */\n/* */\n \n\n\nexport function helloWorld() {\n\n}\n\n ;({}); // @--end-of-file-for-module=vpn-split lib/index.ts","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"AAAA;AACA;AACA;SAIgB,UAAU,GAAA;AAE1B,CAAC;AAEA,CAAC;AAAA,CAAC,EAAE,EAAE;;ACVP;;AAEG;;;;"}
|