tnp-core 16.444.16 → 18.0.3

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.
Files changed (77) hide show
  1. package/assets/shared/shared_folder_info.txt +1 -1
  2. package/browser/esm2022/lib/core-imports.mjs +6 -6
  3. package/browser/esm2022/lib/core-models.mjs +7 -1
  4. package/browser/esm2022/lib/helpers-isomorphic.mjs +1 -1
  5. package/browser/esm2022/lib/helpers-messages.mjs +45 -41
  6. package/browser/esm2022/lib/helpers.mjs +124 -3
  7. package/browser/esm2022/lib/node-chalk-mock.mjs +1 -1
  8. package/browser/esm2022/lib/node-path-mock.mjs +1 -1
  9. package/browser/esm2022/lib/progress-data.mjs +1 -1
  10. package/browser/esm2022/lib/utils.mjs +83 -1
  11. package/browser/fesm2022/tnp-core.mjs +260 -48
  12. package/browser/fesm2022/tnp-core.mjs.map +1 -1
  13. package/browser/lib/core-imports.d.ts +2 -3
  14. package/browser/lib/core-models.d.ts +2 -0
  15. package/browser/lib/helpers-messages.d.ts +16 -0
  16. package/browser/lib/helpers.d.ts +9 -0
  17. package/browser/lib/utils.d.ts +13 -5
  18. package/cli.backend.js +2 -3
  19. package/cli.backend.js.map +1 -1
  20. package/client/esm2022/lib/core-imports.mjs +6 -6
  21. package/client/esm2022/lib/core-models.mjs +7 -1
  22. package/client/esm2022/lib/helpers-isomorphic.mjs +1 -1
  23. package/client/esm2022/lib/helpers-messages.mjs +45 -41
  24. package/client/esm2022/lib/helpers.mjs +124 -3
  25. package/client/esm2022/lib/node-chalk-mock.mjs +1 -1
  26. package/client/esm2022/lib/node-path-mock.mjs +1 -1
  27. package/client/esm2022/lib/progress-data.mjs +1 -1
  28. package/client/esm2022/lib/utils.mjs +83 -1
  29. package/client/fesm2022/tnp-core.mjs +260 -48
  30. package/client/fesm2022/tnp-core.mjs.map +1 -1
  31. package/client/lib/core-imports.d.ts +2 -3
  32. package/client/lib/core-models.d.ts +2 -0
  33. package/client/lib/helpers-messages.d.ts +16 -0
  34. package/client/lib/helpers.d.ts +9 -0
  35. package/client/lib/utils.d.ts +13 -5
  36. package/firedev.jsonc +5 -7
  37. package/lib/core-imports.d.ts +3 -4
  38. package/lib/core-imports.js +8 -9
  39. package/lib/core-imports.js.map +1 -1
  40. package/lib/core-models.d.ts +2 -1
  41. package/lib/core-models.js +7 -1
  42. package/lib/core-models.js.map +1 -1
  43. package/lib/helpers-isomorphic.js.map +1 -1
  44. package/lib/helpers-messages.js +8 -7
  45. package/lib/helpers-messages.js.map +1 -1
  46. package/lib/helpers.d.ts +9 -2
  47. package/lib/helpers.js +152 -26
  48. package/lib/helpers.js.map +1 -1
  49. package/lib/node-chalk-mock.js +2 -3
  50. package/lib/node-chalk-mock.js.map +1 -1
  51. package/lib/node-path-mock.js +2 -3
  52. package/lib/node-path-mock.js.map +1 -1
  53. package/lib/progress-data.js.map +1 -1
  54. package/lib/utils.d.ts +14 -7
  55. package/lib/utils.js +134 -11
  56. package/lib/utils.js.map +1 -1
  57. package/package.json +12 -12
  58. package/tmp-environment.json +204 -204
  59. package/websql/esm2022/lib/core-imports.mjs +6 -6
  60. package/websql/esm2022/lib/core-models.mjs +7 -1
  61. package/websql/esm2022/lib/helpers-isomorphic.mjs +1 -1
  62. package/websql/esm2022/lib/helpers-messages.mjs +45 -41
  63. package/websql/esm2022/lib/helpers.mjs +124 -3
  64. package/websql/esm2022/lib/node-chalk-mock.mjs +1 -1
  65. package/websql/esm2022/lib/node-path-mock.mjs +1 -1
  66. package/websql/esm2022/lib/progress-data.mjs +1 -1
  67. package/websql/esm2022/lib/utils.mjs +83 -1
  68. package/websql/fesm2022/tnp-core.mjs +260 -48
  69. package/websql/fesm2022/tnp-core.mjs.map +1 -1
  70. package/websql/lib/core-imports.d.ts +2 -3
  71. package/websql/lib/core-models.d.ts +2 -0
  72. package/websql/lib/helpers-messages.d.ts +16 -0
  73. package/websql/lib/helpers.d.ts +9 -0
  74. package/websql/lib/utils.d.ts +13 -5
  75. package/browser/package.json +0 -25
  76. package/client/package.json +0 -377
  77. package/websql/package.json +0 -25
@@ -1,15 +1,14 @@
1
1
  // @ts-nocheck
2
- /// <reference types="node" />
3
2
  import * as _ from 'lodash';
4
3
  import * as q from 'q';
5
4
  import * as moment from 'moment';
6
- import * as dateformat from 'dateformat';
5
+ import dateformat from 'dateformat';
7
6
  import { Chalk } from 'chalk';
8
7
  import * as json5 from 'json5';
9
8
  import type jQueryType from 'jquery';
10
9
  import type * as pathBaseType from 'path';
11
10
  declare let $: jQueryType;
12
- declare let path: pathBaseType.PlatformPath;
11
+ declare let path: typeof pathBaseType;
13
12
  declare let chalk: Chalk;
14
13
  /**
15
14
  * transform unix path to win32 path
@@ -18,6 +18,8 @@ export declare namespace CoreModels {
18
18
  };
19
19
  export type InstalationType = '-g' | '--save' | '--save-dev';
20
20
  export const InstalationTypeArr: string[];
21
+ export type PackageJsonDependencyObj = 'dependencies' | 'devDependencies' | 'peerDependencies' | 'resolutions';
22
+ export const PackageJsonDependencyObjArr: PackageJsonDependencyObj[];
21
23
  export type LibraryType = 'angular' | 'typescript';
22
24
  export type ReleaseType = 'major' | 'minor' | 'patch';
23
25
  export type PreReleaseType = 'alpha' | 'beta' | 'rc';
@@ -15,5 +15,21 @@ export declare class HelpersMessages extends HelpersIsomorphic {
15
15
  taskStarted(details: any | string, isLogTask?: boolean): void;
16
16
  taskDone(details?: any | string, isLessImportant?: boolean): void;
17
17
  log(details: any, debugLevel?: number): void;
18
+ /**
19
+ * Logs not visible in normal use of firedev-cli
20
+ */
21
+ logSuccess(details: any | string): any;
22
+ /**
23
+ * Logs not visible in normal use of firedev-cli
24
+ */
25
+ logInfo(details: string, repeatable?: boolean): any;
26
+ /**
27
+ * Logs not visible in normal use of firedev-cli
28
+ */
29
+ logError(details: any, noExit?: boolean, noTrace?: boolean): any;
30
+ /**
31
+ * Logs not visible in normal use of firedev-cli
32
+ */
33
+ logWarn(details: string, trace?: boolean): any;
18
34
  warn(details: string, trace?: boolean): void;
19
35
  }
@@ -20,7 +20,9 @@ export declare class HelpersCore extends HelpersMessages {
20
20
  static get InstanceCore(): HelpersCore;
21
21
  readonly bigMaxBuffer: number;
22
22
  constructor();
23
+ get isWsl(): any;
23
24
  isRunningInDocker(): any;
25
+ clearConsole(): void;
24
26
  /**
25
27
  * get electron browser ipc renderer
26
28
  */
@@ -121,7 +123,14 @@ export declare class HelpersCore extends HelpersMessages {
121
123
  * start command as asynchronous nodej proces inside promise
122
124
  */
123
125
  asyncAsPromise(): Promise<void>;
126
+ unitlOutput(optionsOutput: {
127
+ stdoutMsg: string | string[];
128
+ stderMsg?: string | string[];
129
+ timeout?: number;
130
+ stdoutOutputContainsCallback?: () => any;
131
+ }): Promise<void>;
124
132
  /**
133
+ * @deprecated use unitOutput
125
134
  * start command as asynchronous nodej proces inside promise
126
135
  * and wait until output contains some string
127
136
  */
@@ -1,12 +1,19 @@
1
1
  // @ts-nocheck
2
2
  import { CoreModels } from './core-models';
3
3
  export declare namespace Utils {
4
- enum DbBinaryFormatEnum {
4
+ interface AttrJsoncProp {
5
+ name: string;
6
+ value?: any;
7
+ }
8
+ export namespace json {
9
+ const getAtrributies: (jsonDeepPath: string, fileContent: string) => AttrJsoncProp[];
10
+ }
11
+ export enum DbBinaryFormatEnum {
5
12
  Blob = "Blob",
6
13
  File = "File",
7
14
  string = "string"
8
15
  }
9
- type DbBinaryFormatForBrowser = Blob | File | string;
16
+ export type DbBinaryFormatForBrowser = Blob | File | string;
10
17
  /**
11
18
  * Binary format that can be stored in database
12
19
  *
@@ -14,8 +21,8 @@ export declare namespace Utils {
14
21
  * for sql.js => string (shoulb be blob - but not supported)
15
22
  *
16
23
  */
17
- type DbBinaryFormat = DbBinaryFormatForBrowser;
18
- namespace binary {
24
+ export type DbBinaryFormat = DbBinaryFormatForBrowser;
25
+ export namespace binary {
19
26
  /**
20
27
  * This is for BROWSER ONLY
21
28
  *
@@ -59,7 +66,7 @@ export declare namespace Utils {
59
66
  function blobToJson(blob: Blob): Promise<string>;
60
67
  function getBlobFrom(url: string): Promise<Blob>;
61
68
  }
62
- namespace css {
69
+ export namespace css {
63
70
  /**
64
71
  *
65
72
  * @param pixelsCss pixels ex. 100px
@@ -67,4 +74,5 @@ export declare namespace Utils {
67
74
  */
68
75
  function numValue(pixelsCss: string | number): number;
69
76
  }
77
+ export {};
70
78
  }
@@ -1,25 +0,0 @@
1
- {
2
- "name": "tnp-core",
3
- "version": "0.0.1",
4
- "peerDependencies": {
5
- "@angular/common": "^13.2.0",
6
- "@angular/core": "^13.2.0"
7
- },
8
- "dependencies": {
9
- "tslib": "^2.3.0"
10
- },
11
- "module": "fesm2022/tnp-core.mjs",
12
- "typings": "index.d.ts",
13
- "exports": {
14
- "./package.json": {
15
- "default": "./package.json"
16
- },
17
- ".": {
18
- "types": "./index.d.ts",
19
- "esm2022": "./esm2022/tnp-core.mjs",
20
- "esm": "./esm2022/tnp-core.mjs",
21
- "default": "./fesm2022/tnp-core.mjs"
22
- }
23
- },
24
- "sideEffects": false
25
- }
@@ -1,377 +0,0 @@
1
- {
2
- "tnp": {
3
- "resources": [
4
- "README.md"
5
- ],
6
- "overrided": {
7
- "ignoreDepsPattern": [],
8
- "includeAsDev": [],
9
- "includeOnly": [
10
- "axios",
11
- "glob",
12
- "moment",
13
- "fkill",
14
- "copy-paste",
15
- "chokidar",
16
- "fs-extra",
17
- "rimraf",
18
- "mkdirp",
19
- "lodash",
20
- "@types/lodash",
21
- "ps-list",
22
- "ps-node",
23
- "q",
24
- "@types/q",
25
- "json5",
26
- "is-elevated",
27
- "portfinder",
28
- "cross-spawn",
29
- "chalk",
30
- "copy-paste",
31
- "is-root",
32
- "is-admin",
33
- "dateformat"
34
- ],
35
- "dependencies": {},
36
- "linkedFolders": [],
37
- "npmFixes": []
38
- },
39
- "smartContainerBuildTarget": "",
40
- "linkedRepos": [],
41
- "libReleaseOptions": {
42
- "nodts": false,
43
- "obscure": false,
44
- "ugly": false,
45
- "includeNodeModules": false,
46
- "cliBuildNoDts": false,
47
- "cliBuildObscure": false,
48
- "cliBuildIncludeNodeModules": false,
49
- "cliBuildUglify": false
50
- },
51
- "smartContainerTarget": "",
52
- "type": "isomorphic-lib",
53
- "isCoreProject": false,
54
- "useFramework": false,
55
- "required": [],
56
- "version": "v16",
57
- "additionalNpmNames": [
58
- "firedev-core"
59
- ],
60
- "isGenerated": false,
61
- "requiredServers": [],
62
- "license": "MIT",
63
- "private": false,
64
- "main": "index.js",
65
- "workerPlugins": {}
66
- },
67
- "dependencies": {
68
- "@types/lodash": "4.14.92",
69
- "@types/q": "1.5.5",
70
- "axios": "1.3.5",
71
- "chalk": "2.3.2",
72
- "chokidar": "3.5.3",
73
- "copy-paste": "1.5.3",
74
- "cross-spawn": "7.0.3",
75
- "dateformat": "3.0.3",
76
- "fkill": "6.1.0",
77
- "fs-extra": "8.1.0",
78
- "glob": "7.1.2",
79
- "is-elevated": "3.0.0",
80
- "json5": "2.2.1",
81
- "lodash": "4.17.20",
82
- "mkdirp": "0.5.1",
83
- "moment": "2.29.3",
84
- "portfinder": "1.0.21",
85
- "ps-list": "6.1.0",
86
- "ps-node": "0.1.6",
87
- "q": "1.5.1",
88
- "rimraf": "2.6.2"
89
- },
90
- "devDependencies": {
91
- "@angular-builders/custom-webpack": "~16.0.2-beta.2",
92
- "@angular-devkit/build-angular": "~16.0.5",
93
- "@angular-devkit/core": "~16.0.5",
94
- "@angular-eslint/builder": "~16.3.1",
95
- "@angular-eslint/eslint-plugin": "~16.3.1",
96
- "@angular-eslint/eslint-plugin-template": "~16.3.1",
97
- "@angular-eslint/schematics": "~16.3.1",
98
- "@angular-eslint/template-parser": "~16.3.1",
99
- "@angular-material-extensions/password-strength": "~12.1.0",
100
- "@angular/animations": "~16.0.0",
101
- "@angular/cdk": "~16.0.3",
102
- "@angular/cli": "~16.0.5",
103
- "@angular/common": "~16.0.0",
104
- "@angular/compiler": "~16.0.0",
105
- "@angular/compiler-cli": "~16.0.4",
106
- "@angular/core": "~16.0.0",
107
- "@angular/elements": "~16.0.4",
108
- "@angular/forms": "~16.0.0",
109
- "@angular/material": "~16.0.3",
110
- "@angular/platform-browser": "~16.0.4",
111
- "@angular/platform-browser-dynamic": "~16.0.4",
112
- "@angular/pwa": "~16.0.5",
113
- "@angular/router": "~16.0.0",
114
- "@angular/service-worker": "~16.0.4",
115
- "@babel/cli": "7.18.6",
116
- "@compodoc/compodoc": "1.1.23",
117
- "@iconify/icons-fa-solid": "1.2.2",
118
- "@iconify/icons-mdi": "1.2.1",
119
- "@inquirer/prompts": "5.3.2",
120
- "@mdi/js": "7.2.96",
121
- "@ng-matero/extensions": "16.0.0",
122
- "@ngneat/falso": "6.4.0",
123
- "@ngneat/hot-toast": "5.0.1",
124
- "@ngneat/overview": "5.0.0",
125
- "@ngneat/spectator": "15.0.0",
126
- "@ngrx/component-store": "~16.0.1",
127
- "@ngrx/data": "~16.0.1",
128
- "@ngrx/effects": "~16.0.1",
129
- "@ngrx/entity": "~16.0.1",
130
- "@ngrx/router-store": "~16.0.1",
131
- "@ngrx/schematics": "~16.0.1",
132
- "@ngrx/store": "~16.0.1",
133
- "@ngrx/store-devtools": "~16.0.1",
134
- "@ngx-formly/core": "6.1.7",
135
- "@ngx-formly/material": "6.1.8",
136
- "@ngx-translate/core": "15.0.0",
137
- "@ngx-translate/http-loader": "8.0.0",
138
- "@sqltools/formatter": "1.2.2",
139
- "@sweetalert2/ngx-sweetalert2": "12.1.0",
140
- "@testdeck/jest": "0.3.3",
141
- "@testdeck/mocha": "0.3.3",
142
- "@types/chai": "4.1.2",
143
- "@types/chokidar": "2.1.3",
144
- "@types/dateformat": "1.0.1",
145
- "@types/diff": "3.2.2",
146
- "@types/express": "4.11.0",
147
- "@types/express-fileupload": "1.4.1",
148
- "@types/fs-extra": "7.0.0",
149
- "@types/glob": "5.0.35",
150
- "@types/http-proxy": "1.16.0",
151
- "@types/http-proxy-middleware": "0.19.2",
152
- "@types/jest": "29.5.2",
153
- "@types/json-stringify-safe": "5.0.0",
154
- "@types/json5": "0.0.29",
155
- "@types/lockfile": "1.0.0",
156
- "@types/mocha": "5.2.5",
157
- "@types/node": "16.18.21",
158
- "@types/node-notifier": "5.4.0",
159
- "@types/oauth2orize": "1.8.0",
160
- "@types/password-hash": "1.2.19",
161
- "@types/progress": "2.0.3",
162
- "@types/rimraf": "2.0.2",
163
- "@types/semver": "6.0.1",
164
- "@types/systeminformation": "3.23.0",
165
- "@types/vinyl": "2.0.2",
166
- "@types/watch": "1.0.0",
167
- "@typescript-eslint/eslint-plugin": "5.62.0",
168
- "@typescript-eslint/parser": "5.62.0",
169
- "@vercel/ncc": "0.38.1",
170
- "accepts": "1.3.4",
171
- "ajv": "8.12.0",
172
- "angular-material-css-vars": "5.0.2",
173
- "angular-resize-event": "3.2.0",
174
- "animate.css": "4.1.1 ",
175
- "any-project-cli": "16.444.12",
176
- "app-root-path": "3.0.0",
177
- "background-worker-process": "~16.100.10",
178
- "base32": "0.0.7",
179
- "bcryptjs": "2.4.3",
180
- "body-parser": "1.18.2",
181
- "bootstrap": "4.6.2",
182
- "buffer-shims": "1.0.0",
183
- "bun": "1.1.17",
184
- "callsite-record": "4.1.3",
185
- "chai": "4.3.7",
186
- "check-node-version": "3.2.0",
187
- "cheerio": "1.0.0-rc.3",
188
- "circular-json": "0.5.1",
189
- "class-transformer": "0.5.1",
190
- "class-validator": "0.14.0",
191
- "cli-highlight": "2.1.11",
192
- "command-exists": "1.2.2",
193
- "compression": "1.7.4",
194
- "concurrently": "3.5.1",
195
- "content-type": "1.0.4",
196
- "conventional-changelog-cli": "3.0.0",
197
- "cookie-parser": "1.4.3",
198
- "cors": "2.8.4",
199
- "cpr": "3.0.1",
200
- "cross-env": "7.0.2",
201
- "detect-mocha": "0.1.0",
202
- "diff": "3.2.0",
203
- "electron": "25.2.0",
204
- "electron-builder": "24.4.0",
205
- "electron-debug": "3.2.0",
206
- "electron-reloader": "1.2.3",
207
- "element-resize-detector": "1.1.15",
208
- "enquirer": "2.3.0",
209
- "enum-values": "1.2.1",
210
- "errorhandler": "1.5.0",
211
- "eslint": "8.51.0",
212
- "eslint-config-prettier": "9.1.0",
213
- "eslint-plugin-import": "latest",
214
- "eslint-plugin-jsdoc": "latest",
215
- "eslint-plugin-prefer-arrow": "latest",
216
- "eslint-plugin-prettier": "5.1.3",
217
- "eslint-plugin-react": "latest",
218
- "express": "4.16.3",
219
- "express-fileupload": "1.4.0",
220
- "express-session": "1.17.3",
221
- "file-loader": "1.1.5",
222
- "file-saver": "2.0.5",
223
- "file-type": "18.5.0",
224
- "firedev": "^16",
225
- "firedev-crud": "~16.444.13",
226
- "firedev-crud-deamon": "~16.444.13",
227
- "firedev-ports": "~16.444.13",
228
- "firedev-storage": "~16.444.9",
229
- "firedev-type-sql": "~16.444.13",
230
- "firedev-typeorm": "~16.444.9",
231
- "firedev-ui": "16.444.1",
232
- "font-awesome": "4.7.0",
233
- "form-data": "4.0.0",
234
- "fuzzy": "0.1.3",
235
- "google-libphonenumber": "3.2.25",
236
- "gulp": "3.9.1",
237
- "helmet": "7.0.0",
238
- "hostile": "1.3.3",
239
- "howler": "2.2.3",
240
- "http-proxy": "1.18.1",
241
- "http-proxy-middleware": "0.19.1",
242
- "http-server": "0.11.1",
243
- "image-focus": "1.2.1",
244
- "immer": "10.0.2",
245
- "immutable": "4.3.0",
246
- "incremental-compiler": "~16.444.14",
247
- "inquirer": "7.3.3",
248
- "inquirer-autocomplete-prompt": "1.3.0",
249
- "isomorphic-region-loader": "~16.444.13",
250
- "istanbul-instrumenter-loader": "2.0.0",
251
- "jest": "29.5.0",
252
- "jest-date-mock": "1.0.8",
253
- "jest-junit": "16.0.0",
254
- "jest-marbles": "latest",
255
- "jest-preset-angular": "13.1.1",
256
- "jimp": "0.22.8",
257
- "joi": "17.9.2",
258
- "jscodeshift": "0.6.3",
259
- "json-stringify-safe": "5.0.1",
260
- "json10": "~16.444.13",
261
- "json10-writer": "~16.444.13",
262
- "json5-writer": "0.2.0",
263
- "jszip": "3.10.1",
264
- "karma-cli": "1.0.1",
265
- "lnk": "1.0.1",
266
- "localforage": "1.10.0",
267
- "lockfile": "1.0.4",
268
- "lodash-walk-object": "~16.444.12",
269
- "lowdb": "7.0.1",
270
- "magic-renamer": "~16.444.12",
271
- "material-design-icons": "3.0.1",
272
- "method-override": "2.3.10",
273
- "minimist": "1.2.0",
274
- "mocha": "10.2.0",
275
- "ng-for-track-by-property": "16.0.1",
276
- "ng-in-viewport": "15.0.2",
277
- "ng-lock": "16.0.1",
278
- "ng-packagr": "16.0.1",
279
- "ng-talkback": "~16.444.5",
280
- "ng2-logger": "~16.444.13",
281
- "ng2-pdfjs-viewer": "16.0.4",
282
- "ng2-rest": "~16.444.12",
283
- "ngx-ace-wrapper": "14.0.0",
284
- "ngx-editor": "15.3.0",
285
- "ngx-highlightjs": "9.0.0",
286
- "ngx-moment": "6.0.2",
287
- "ngx-monaco-editor": "12.0.0",
288
- "ngx-photo-editor": "0.4.4",
289
- "ngx-pipes": "3.2.2",
290
- "ngx-progressbar": "11.0.0",
291
- "ngx-scrollbar": "12.0.0",
292
- "ngx-scrolltop": "6.0.0",
293
- "ngx-store": "3.1.1",
294
- "ngx-typed-js": "2.1.1",
295
- "node-cli-tester": "~16.444.5",
296
- "node-localstorage": "2.1.6",
297
- "node-notifier": "6.0.0",
298
- "node-polyfill-webpack-plugin": "2.0.1",
299
- "nodemon": "1.14.11",
300
- "npm-get-dependents": "1.0.1",
301
- "npm-run": "4.1.2",
302
- "omelette": "0.4.5",
303
- "open": "7.2.1",
304
- "ora": "3.4.0",
305
- "passport": "0.3.2",
306
- "passport-http-bearer": "1.0.1",
307
- "password-hash": "1.2.2",
308
- "path-to-regexp": "6.2.2",
309
- "pica": "9.0.1",
310
- "prettier": "3.2.5",
311
- "prettier-eslint": "16.3.0",
312
- "pretty-error": "4.0.0",
313
- "primeflex": "3.3.1",
314
- "primeicons": "6.0.1",
315
- "primeng": "16.7.0",
316
- "progress": "2.0.3",
317
- "prompts": "0.1.8",
318
- "rallax.js": "2.0.4",
319
- "randomcolor": "0.5.3",
320
- "record-replay-req-res-scenario": "~16.444.5",
321
- "reflect-metadata": "0.1.10",
322
- "rxjs": "~7.8.0",
323
- "semver": "6.3.0",
324
- "simple-git": "3.25.0",
325
- "sinon": "15.2.0",
326
- "sloc": "0.2.0",
327
- "socket.io": "4.7.5",
328
- "socket.io-client": "4.7.5",
329
- "sort-package-json": "1.11.0",
330
- "sql.js": "1.8.0",
331
- "static-columns": "~16.444.8",
332
- "string-similarity": "4.0.2",
333
- "sudo-block": "3.0.0",
334
- "supertest": "6.3.3",
335
- "sweetalert2": "11.7.12",
336
- "systeminformation": "3.45.7",
337
- "task.js": "0.1.5",
338
- "threads": "1.7.0",
339
- "tnp-cli": "~16.444.5",
340
- "tnp-config": "~16.444.13",
341
- "tnp-core": "~16.444.15",
342
- "tnp-db": "~16.444.12",
343
- "tnp-helpers": "~16.444.20",
344
- "tnp-models": "~16.444.13",
345
- "ts-debug": "1.3.0",
346
- "ts-json-schema-generator": "2.1.1",
347
- "ts-loader": "2.3.1",
348
- "ts-node": "10.9.1",
349
- "tslib": "~2.3.0",
350
- "tslint": "5.9.1",
351
- "turndown": "7.1.2",
352
- "typedoc": "0.25.13",
353
- "typedoc-plugin-markdown": "4.0.3",
354
- "typescript": "~5.0.2",
355
- "typescript-class-helpers": "~16.444.13",
356
- "typescript-formatter": "~7.2.2",
357
- "underscore": "1.9.1",
358
- "uuid": "8.3.2",
359
- "validator": "9.2.0",
360
- "video.js": "8.3.0",
361
- "vpn-split": "~16.444.5",
362
- "vscode": "1.1.37",
363
- "wait-on": "7.0.1",
364
- "watch": "1.0.2",
365
- "webpack": "~5.80",
366
- "webpack-dev-middleware": "~6.0.2",
367
- "webpack-dev-server": "~4.13.2",
368
- "yup": "1.1.1",
369
- "zone.js": "~0.13.0"
370
- },
371
- "license": "MIT",
372
- "private": false,
373
- "name": "tnp-core",
374
- "version": "16.444.16",
375
- "lastBuildTagHash": "fc83c1f73e5d7a12562ae56cc244953e94cdf60a",
376
- "main": "dist/app.electron.js"
377
- }
@@ -1,25 +0,0 @@
1
- {
2
- "name": "tnp-core",
3
- "version": "0.0.1",
4
- "peerDependencies": {
5
- "@angular/common": "^13.2.0",
6
- "@angular/core": "^13.2.0"
7
- },
8
- "dependencies": {
9
- "tslib": "^2.3.0"
10
- },
11
- "module": "fesm2022/tnp-core.mjs",
12
- "typings": "index.d.ts",
13
- "exports": {
14
- "./package.json": {
15
- "default": "./package.json"
16
- },
17
- ".": {
18
- "types": "./index.d.ts",
19
- "esm2022": "./esm2022/tnp-core.mjs",
20
- "esm": "./esm2022/tnp-core.mjs",
21
- "default": "./fesm2022/tnp-core.mjs"
22
- }
23
- },
24
- "sideEffects": false
25
- }