mftsccs-node 0.0.0 → 0.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/dist/bundle.js +383 -107
- package/dist/types/DataStructures/BaseUrl.d.ts +1 -0
- package/dist/types/DataStructures/ConceptData.d.ts +3 -0
- package/dist/types/DataStructures/Connection.d.ts +1 -0
- package/dist/types/Helpers/CheckIfExists.d.ts +3 -0
- package/dist/types/Helpers/RemoveFromArray.d.ts +2 -0
- package/dist/types/Services/Conversion/ConvertConcepts.d.ts +6 -0
- package/dist/types/Services/GetComposition.d.ts +1 -1
- package/dist/types/Services/Local/CreateTheConnectionLocal.d.ts +1 -1
- package/dist/types/Services/Local/UpdateCompositionLocal.d.ts +2 -0
- package/dist/types/app.d.ts +1 -0
- package/package.json +173 -173
- package/dist/types/Api/GetAccessIdOfUser.d.ts +0 -0
- package/dist/types/DataStructures/TokenStorage.d.ts +0 -3
- package/dist/types/Services/CheckIfConnection.d.ts +0 -2
|
@@ -37,6 +37,7 @@ export declare class BaseUrl {
|
|
|
37
37
|
static CreateTheCharacterDataUrl(): string;
|
|
38
38
|
static CreateTheConceptUrl(): string;
|
|
39
39
|
static CreateTheConnectionUrl(): string;
|
|
40
|
+
static CreateTheConnectionNewUrl(): string;
|
|
40
41
|
static MakeTheTypeConceptUrl(): string;
|
|
41
42
|
static DeleteTheConnectionUrl(): string;
|
|
42
43
|
}
|
|
@@ -3,8 +3,11 @@ export declare class ConceptsData {
|
|
|
3
3
|
name: string;
|
|
4
4
|
constructor();
|
|
5
5
|
static conceptsArray: Concept[];
|
|
6
|
+
static NPC: number[];
|
|
6
7
|
static conceptDictionary: Concept[];
|
|
7
8
|
static CheckContains(concept: Concept): boolean;
|
|
9
|
+
static AddNpc(id: number): void;
|
|
10
|
+
static GetNpc(id: number): boolean;
|
|
8
11
|
static AddConceptToStorage(concept: Concept): void;
|
|
9
12
|
static AddConcept(concept: Concept): void;
|
|
10
13
|
static AddConceptToMemory(concept: Concept): void;
|
|
@@ -23,6 +23,7 @@ export declare class Connection {
|
|
|
23
23
|
sessionInformationUserId: number;
|
|
24
24
|
localSyncTime: Date;
|
|
25
25
|
isTemp: boolean;
|
|
26
|
+
toUpdate: boolean;
|
|
26
27
|
type: Concept;
|
|
27
28
|
constructor(id: number | undefined, ofTheConceptId: number, toTheConceptId: number, ofTheConceptUserId: number, toTheConceptUserId: number, userId: number, typeId: number, typeUserId: number, orderId: number, orderUserId: number, securityId: number, securityUserId: number, accessId: number, accessUserId: number, sessionInformationId: number, sessionInformationUserId: number);
|
|
28
29
|
}
|
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
import { Concept } from "../DataStructures/Concept";
|
|
2
2
|
import { Connection } from "../DataStructures/Connection";
|
|
3
|
+
import { LConcept, LConnection } from "../app";
|
|
3
4
|
export declare function CheckIfConceptsExistsInArray(conceptList: Concept[] | undefined, concept: Concept): Concept;
|
|
4
5
|
export declare function CheckIfTypeConceptExistsInArray(conceptList: Concept[] | undefined, concept: Concept): Concept;
|
|
5
6
|
export declare function CheckIfTypeConceptsExistsInArray(conceptList: Concept[] | undefined, concept: Concept): Concept[];
|
|
7
|
+
export declare function CheckIfTypeLConceptsExistsInArray(conceptList: LConcept[] | undefined, concept: LConcept): LConcept[];
|
|
6
8
|
export declare function CheckIfConnectionExistsInArray(connectionList: Connection[] | undefined, connection: Connection): Connection;
|
|
7
9
|
export declare function CheckIfToTheConceptExistsInConnectionArray(connectionList: Connection[] | undefined, conceptId: number): Connection;
|
|
8
10
|
export declare function CheckAllConnectionsConnectedInConnectionArray(connectionList: Connection[] | undefined, conceptId: number): Connection[];
|
|
11
|
+
export declare function CheckAllConnectionsConnectedInLConnectionArray(connectionList: LConnection[] | undefined, conceptId: number): LConnection[];
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import { Concept } from "../DataStructures/Concept";
|
|
2
2
|
import { Connection } from "../DataStructures/Connection";
|
|
3
|
+
import { LConnection } from "../app";
|
|
3
4
|
export declare function RemoveConceptFromList(conceptList: Concept[] | undefined, concept: Concept): void;
|
|
4
5
|
export declare function RemoveConnectionFromList(connectionList: Connection[] | undefined, connection: Connection): void;
|
|
6
|
+
export declare function RemoveLConnectionFromList(connectionList: LConnection[] | undefined, connection: LConnection): void;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { Concept } from "../../DataStructures/Concept";
|
|
2
|
+
import { Connection } from "../../DataStructures/Connection";
|
|
3
|
+
import { LConcept } from "../../DataStructures/Local/LConcept";
|
|
4
|
+
import { LConnection } from "../../DataStructures/Local/LConnection";
|
|
5
|
+
export declare function convertFromConceptToLConcept(concept: Concept): LConcept;
|
|
6
|
+
export declare function convertFromConnectionToLConnection(connection: Connection): LConnection;
|
|
@@ -7,4 +7,4 @@ export declare function GetCompositionWithIdAndDateFromMemory(id: number): Promi
|
|
|
7
7
|
export declare function GetCompositionWithIdFromMemoryFromConnections(id: number, connectionList: Connection[]): Promise<any>;
|
|
8
8
|
export declare function GetCompositionWithId(id: number): Promise<any>;
|
|
9
9
|
export declare function recursiveFetch(id: number, connectionList: Connection[], compositionList: number[], visitedConcepts?: number[]): Promise<any>;
|
|
10
|
-
export declare function recursiveFetchWithSubCompositions(id: number, connectionList: Connection[], compositionList: number[]): Promise<any>;
|
|
10
|
+
export declare function recursiveFetchWithSubCompositions(id: number, connectionList: Connection[], compositionList: number[], visitedConcepts?: number[]): Promise<any>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { LConnection } from "../../DataStructures/Local/LConnection";
|
|
2
|
-
export declare function CreateTheConnectionLocal(ofTheConceptId: number, toTheConceptId: number, typeId: number, orderId?: number): LConnection
|
|
2
|
+
export declare function CreateTheConnectionLocal(ofTheConceptId: number, toTheConceptId: number, typeId: number, orderId?: number): LConnection;
|
package/dist/types/app.d.ts
CHANGED
|
@@ -47,6 +47,7 @@ export { CreateTheConnectionGeneral } from './Services/CreateTheConnectionGenera
|
|
|
47
47
|
export { CreateTheConnectionLocal } from './Services/Local/CreateTheConnectionLocal';
|
|
48
48
|
export { GetUserGhostId, AddGhostConcept } from './Services/User/UserTranslation';
|
|
49
49
|
export { SearchLinkMultipleAll } from './Services/Search/SearchLinkMultiple';
|
|
50
|
+
export { UpdateCompositionLocal } from './Services/Local/UpdateCompositionLocal';
|
|
50
51
|
export { SyncData } from './DataStructures/SyncData';
|
|
51
52
|
export { Concept } from './DataStructures/Concept';
|
|
52
53
|
export { LConcept } from './DataStructures/Local/LConcept';
|
package/package.json
CHANGED
|
@@ -1,173 +1,173 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "mftsccs-node",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"environment": "production",
|
|
5
|
-
"description": "Full Pack of concept and connection system",
|
|
6
|
-
"main": "dist/bundle.js",
|
|
7
|
-
"types": "dist/types/app.d.ts",
|
|
8
|
-
"files": [
|
|
9
|
-
"dist",
|
|
10
|
-
"LICENSE",
|
|
11
|
-
"README.md",
|
|
12
|
-
"package.json"
|
|
13
|
-
],
|
|
14
|
-
"scripts": {
|
|
15
|
-
"start": "npx webpack",
|
|
16
|
-
"dev": "webpack --env NODE_ENV=development --mode development",
|
|
17
|
-
"build": "webpack --config webpack.config.js"
|
|
18
|
-
},
|
|
19
|
-
"devDependencies": {
|
|
20
|
-
"dotenv-webpack": "^8.0.1",
|
|
21
|
-
"mqtt": "^5.5.2",
|
|
22
|
-
"ts-loader": "^9.5.1",
|
|
23
|
-
"typescript": "^5.3.2",
|
|
24
|
-
"webpack": "^5.89.0",
|
|
25
|
-
"webpack-cli": "^5.1.4"
|
|
26
|
-
},
|
|
27
|
-
"dependencies": {
|
|
28
|
-
"acorn-import-assertions": "^1.9.0",
|
|
29
|
-
"acorn": "^8.11.2",
|
|
30
|
-
"ansi-styles": "^4.3.0",
|
|
31
|
-
"abort-controller": "^3.0.0",
|
|
32
|
-
"ajv": "^6.12.6",
|
|
33
|
-
"bl": "^6.0.12",
|
|
34
|
-
"braces": "^3.0.2",
|
|
35
|
-
"buffer": "^6.0.3",
|
|
36
|
-
"ajv-keywords": "^3.5.2",
|
|
37
|
-
"browserslist": "^4.22.1",
|
|
38
|
-
"caniuse-lite": "^1.0.30001565",
|
|
39
|
-
"chalk": "^4.1.2",
|
|
40
|
-
"buffer-from": "^1.1.2",
|
|
41
|
-
"base64-js": "^1.5.1",
|
|
42
|
-
"color-convert": "^2.0.1",
|
|
43
|
-
"colorette": "^2.0.20",
|
|
44
|
-
"chrome-trace-event": "^1.0.3",
|
|
45
|
-
"color-name": "^1.1.4",
|
|
46
|
-
"dotenv": "^8.6.0",
|
|
47
|
-
"clone-deep": "^4.0.1",
|
|
48
|
-
"commander": "^2.20.3",
|
|
49
|
-
"commist": "^3.2.0",
|
|
50
|
-
"electron-to-chromium": "^1.4.594",
|
|
51
|
-
"dotenv-defaults": "^2.0.2",
|
|
52
|
-
"concat-stream": "^2.0.0",
|
|
53
|
-
"enhanced-resolve": "^5.15.0",
|
|
54
|
-
"cross-spawn": "^7.0.3",
|
|
55
|
-
"es-module-lexer": "^1.4.1",
|
|
56
|
-
"debug": "^4.3.4",
|
|
57
|
-
"eslint-scope": "^5.1.1",
|
|
58
|
-
"escalade": "^3.1.1",
|
|
59
|
-
"fast-deep-equal": "^3.1.3",
|
|
60
|
-
"envinfo": "^7.11.0",
|
|
61
|
-
"estraverse": "^4.3.0",
|
|
62
|
-
"esrecurse": "^4.3.0",
|
|
63
|
-
"event-target-shim": "^5.0.1",
|
|
64
|
-
"fill-range": "^7.0.1",
|
|
65
|
-
"glob-to-regexp": "^0.4.1",
|
|
66
|
-
"function-bind": "^1.1.2",
|
|
67
|
-
"find-up": "^4.1.0",
|
|
68
|
-
"fast-json-stable-stringify": "^2.1.0",
|
|
69
|
-
"fastest-levenshtein": "^1.0.16",
|
|
70
|
-
"fast-unique-numbers": "^8.0.13",
|
|
71
|
-
"graceful-fs": "^4.2.11",
|
|
72
|
-
"has-flag": "^4.0.0",
|
|
73
|
-
"hasown": "^2.0.0",
|
|
74
|
-
"import-local": "^3.1.0",
|
|
75
|
-
"ieee754": "^1.2.1",
|
|
76
|
-
"events": "^3.3.0",
|
|
77
|
-
"flat": "^5.0.2",
|
|
78
|
-
"is-number": "^7.0.0",
|
|
79
|
-
"help-me": "^5.0.0",
|
|
80
|
-
"interpret": "^3.1.1",
|
|
81
|
-
"inherits": "^2.0.4",
|
|
82
|
-
"isobject": "^3.0.1",
|
|
83
|
-
"is-core-module": "^2.13.1",
|
|
84
|
-
"jest-worker": "^27.5.1",
|
|
85
|
-
"isexe": "^2.0.0",
|
|
86
|
-
"is-plain-object": "^2.0.4",
|
|
87
|
-
"locate-path": "^5.0.0",
|
|
88
|
-
"loader-runner": "^4.3.0",
|
|
89
|
-
"lru-cache": "^6.0.0",
|
|
90
|
-
"json-parse-even-better-errors": "^2.3.1",
|
|
91
|
-
"js-sdsl": "^4.3.0",
|
|
92
|
-
"merge-stream": "^2.0.0",
|
|
93
|
-
"mime-types": "^2.1.35",
|
|
94
|
-
"micromatch": "^4.0.5",
|
|
95
|
-
"node-releases": "^2.0.13",
|
|
96
|
-
"json-schema-traverse": "^0.4.1",
|
|
97
|
-
"mqtt-packet": "^9.0.0",
|
|
98
|
-
"ms": "^2.1.2",
|
|
99
|
-
"kind-of": "^6.0.3",
|
|
100
|
-
"mime-db": "^1.52.0",
|
|
101
|
-
"minimist": "^1.2.8",
|
|
102
|
-
"neo-async": "^2.6.2",
|
|
103
|
-
"p-limit": "^2.3.0",
|
|
104
|
-
"path-exists": "^4.0.0",
|
|
105
|
-
"p-locate": "^4.1.0",
|
|
106
|
-
"number-allocator": "^1.0.14",
|
|
107
|
-
"p-try": "^2.2.0",
|
|
108
|
-
"path-parse": "^1.0.7",
|
|
109
|
-
"picocolors": "^1.0.0",
|
|
110
|
-
"path-key": "^3.1.1",
|
|
111
|
-
"process-nextick-args": "^2.0.1",
|
|
112
|
-
"pkg-dir": "^4.2.0",
|
|
113
|
-
"process": "^0.11.10",
|
|
114
|
-
"randombytes": "^2.1.0",
|
|
115
|
-
"picomatch": "^2.3.1",
|
|
116
|
-
"punycode": "^2.3.1",
|
|
117
|
-
"readable-stream": "^4.5.2",
|
|
118
|
-
"rechoir": "^0.8.0",
|
|
119
|
-
"resolve-from": "^5.0.0",
|
|
120
|
-
"resolve-cwd": "^3.0.0",
|
|
121
|
-
"resolve": "^1.22.8",
|
|
122
|
-
"reinterval": "^1.1.0",
|
|
123
|
-
"rfdc": "^1.3.1",
|
|
124
|
-
"regenerator-runtime": "^0.14.1",
|
|
125
|
-
"schema-utils": "^3.3.0",
|
|
126
|
-
"safe-buffer": "^5.2.1",
|
|
127
|
-
"serialize-javascript": "^6.0.1",
|
|
128
|
-
"semver": "^7.5.4",
|
|
129
|
-
"source-map": "^0.7.4",
|
|
130
|
-
"shallow-clone": "^3.0.1",
|
|
131
|
-
"shebang-command": "^2.0.0",
|
|
132
|
-
"shebang-regex": "^3.0.0",
|
|
133
|
-
"source-map-support": "^0.5.21",
|
|
134
|
-
"string_decoder": "^1.3.0",
|
|
135
|
-
"tapable": "^2.2.1",
|
|
136
|
-
"to-regex-range": "^5.0.1",
|
|
137
|
-
"supports-preserve-symlinks-flag": "^1.0.0",
|
|
138
|
-
"split2": "^4.2.0",
|
|
139
|
-
"terser-webpack-plugin": "^5.3.9",
|
|
140
|
-
"terser": "^5.24.0",
|
|
141
|
-
"undici-types": "^5.26.5",
|
|
142
|
-
"typedarray": "^0.0.6",
|
|
143
|
-
"tslib": "^2.6.2",
|
|
144
|
-
"supports-color": "^7.2.0",
|
|
145
|
-
"update-browserslist-db": "^1.0.13",
|
|
146
|
-
"wildcard": "^2.0.1",
|
|
147
|
-
"util-deprecate": "^1.0.2",
|
|
148
|
-
"which": "^2.0.2",
|
|
149
|
-
"webpack-sources": "^3.2.3",
|
|
150
|
-
"worker-timers": "^7.1.7",
|
|
151
|
-
"webpack-merge": "^5.10.0",
|
|
152
|
-
"uri-js": "^4.4.1",
|
|
153
|
-
"watchpack": "^2.4.0",
|
|
154
|
-
"yallist": "^4.0.0",
|
|
155
|
-
"worker-timers-broker": "^6.1.7",
|
|
156
|
-
"ws": "^8.16.0",
|
|
157
|
-
"worker-timers-worker": "^7.0.70"
|
|
158
|
-
},
|
|
159
|
-
"repository": {
|
|
160
|
-
"type": "git",
|
|
161
|
-
"url": "git+https://github.com/Mentor-Friends/tsccs-dev.git"
|
|
162
|
-
},
|
|
163
|
-
"keywords": [
|
|
164
|
-
"node",
|
|
165
|
-
"mftsccs"
|
|
166
|
-
],
|
|
167
|
-
"author": "Mentor Friends",
|
|
168
|
-
"license": "ISC",
|
|
169
|
-
"bugs": {
|
|
170
|
-
"url": "https://github.com/Mentor-Friends/tsccs-dev/issues"
|
|
171
|
-
},
|
|
172
|
-
"homepage": "https://github.com/Mentor-Friends/tsccs-dev#readme"
|
|
173
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "mftsccs-node",
|
|
3
|
+
"version": "0.0.2",
|
|
4
|
+
"environment": "production",
|
|
5
|
+
"description": "Full Pack of concept and connection system",
|
|
6
|
+
"main": "dist/bundle.js",
|
|
7
|
+
"types": "dist/types/app.d.ts",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist",
|
|
10
|
+
"LICENSE",
|
|
11
|
+
"README.md",
|
|
12
|
+
"package.json"
|
|
13
|
+
],
|
|
14
|
+
"scripts": {
|
|
15
|
+
"start": "npx webpack",
|
|
16
|
+
"dev": "webpack --env NODE_ENV=development --mode development",
|
|
17
|
+
"build": "webpack --config webpack.config.js"
|
|
18
|
+
},
|
|
19
|
+
"devDependencies": {
|
|
20
|
+
"dotenv-webpack": "^8.0.1",
|
|
21
|
+
"mqtt": "^5.5.2",
|
|
22
|
+
"ts-loader": "^9.5.1",
|
|
23
|
+
"typescript": "^5.3.2",
|
|
24
|
+
"webpack": "^5.89.0",
|
|
25
|
+
"webpack-cli": "^5.1.4"
|
|
26
|
+
},
|
|
27
|
+
"dependencies": {
|
|
28
|
+
"acorn-import-assertions": "^1.9.0",
|
|
29
|
+
"acorn": "^8.11.2",
|
|
30
|
+
"ansi-styles": "^4.3.0",
|
|
31
|
+
"abort-controller": "^3.0.0",
|
|
32
|
+
"ajv": "^6.12.6",
|
|
33
|
+
"bl": "^6.0.12",
|
|
34
|
+
"braces": "^3.0.2",
|
|
35
|
+
"buffer": "^6.0.3",
|
|
36
|
+
"ajv-keywords": "^3.5.2",
|
|
37
|
+
"browserslist": "^4.22.1",
|
|
38
|
+
"caniuse-lite": "^1.0.30001565",
|
|
39
|
+
"chalk": "^4.1.2",
|
|
40
|
+
"buffer-from": "^1.1.2",
|
|
41
|
+
"base64-js": "^1.5.1",
|
|
42
|
+
"color-convert": "^2.0.1",
|
|
43
|
+
"colorette": "^2.0.20",
|
|
44
|
+
"chrome-trace-event": "^1.0.3",
|
|
45
|
+
"color-name": "^1.1.4",
|
|
46
|
+
"dotenv": "^8.6.0",
|
|
47
|
+
"clone-deep": "^4.0.1",
|
|
48
|
+
"commander": "^2.20.3",
|
|
49
|
+
"commist": "^3.2.0",
|
|
50
|
+
"electron-to-chromium": "^1.4.594",
|
|
51
|
+
"dotenv-defaults": "^2.0.2",
|
|
52
|
+
"concat-stream": "^2.0.0",
|
|
53
|
+
"enhanced-resolve": "^5.15.0",
|
|
54
|
+
"cross-spawn": "^7.0.3",
|
|
55
|
+
"es-module-lexer": "^1.4.1",
|
|
56
|
+
"debug": "^4.3.4",
|
|
57
|
+
"eslint-scope": "^5.1.1",
|
|
58
|
+
"escalade": "^3.1.1",
|
|
59
|
+
"fast-deep-equal": "^3.1.3",
|
|
60
|
+
"envinfo": "^7.11.0",
|
|
61
|
+
"estraverse": "^4.3.0",
|
|
62
|
+
"esrecurse": "^4.3.0",
|
|
63
|
+
"event-target-shim": "^5.0.1",
|
|
64
|
+
"fill-range": "^7.0.1",
|
|
65
|
+
"glob-to-regexp": "^0.4.1",
|
|
66
|
+
"function-bind": "^1.1.2",
|
|
67
|
+
"find-up": "^4.1.0",
|
|
68
|
+
"fast-json-stable-stringify": "^2.1.0",
|
|
69
|
+
"fastest-levenshtein": "^1.0.16",
|
|
70
|
+
"fast-unique-numbers": "^8.0.13",
|
|
71
|
+
"graceful-fs": "^4.2.11",
|
|
72
|
+
"has-flag": "^4.0.0",
|
|
73
|
+
"hasown": "^2.0.0",
|
|
74
|
+
"import-local": "^3.1.0",
|
|
75
|
+
"ieee754": "^1.2.1",
|
|
76
|
+
"events": "^3.3.0",
|
|
77
|
+
"flat": "^5.0.2",
|
|
78
|
+
"is-number": "^7.0.0",
|
|
79
|
+
"help-me": "^5.0.0",
|
|
80
|
+
"interpret": "^3.1.1",
|
|
81
|
+
"inherits": "^2.0.4",
|
|
82
|
+
"isobject": "^3.0.1",
|
|
83
|
+
"is-core-module": "^2.13.1",
|
|
84
|
+
"jest-worker": "^27.5.1",
|
|
85
|
+
"isexe": "^2.0.0",
|
|
86
|
+
"is-plain-object": "^2.0.4",
|
|
87
|
+
"locate-path": "^5.0.0",
|
|
88
|
+
"loader-runner": "^4.3.0",
|
|
89
|
+
"lru-cache": "^6.0.0",
|
|
90
|
+
"json-parse-even-better-errors": "^2.3.1",
|
|
91
|
+
"js-sdsl": "^4.3.0",
|
|
92
|
+
"merge-stream": "^2.0.0",
|
|
93
|
+
"mime-types": "^2.1.35",
|
|
94
|
+
"micromatch": "^4.0.5",
|
|
95
|
+
"node-releases": "^2.0.13",
|
|
96
|
+
"json-schema-traverse": "^0.4.1",
|
|
97
|
+
"mqtt-packet": "^9.0.0",
|
|
98
|
+
"ms": "^2.1.2",
|
|
99
|
+
"kind-of": "^6.0.3",
|
|
100
|
+
"mime-db": "^1.52.0",
|
|
101
|
+
"minimist": "^1.2.8",
|
|
102
|
+
"neo-async": "^2.6.2",
|
|
103
|
+
"p-limit": "^2.3.0",
|
|
104
|
+
"path-exists": "^4.0.0",
|
|
105
|
+
"p-locate": "^4.1.0",
|
|
106
|
+
"number-allocator": "^1.0.14",
|
|
107
|
+
"p-try": "^2.2.0",
|
|
108
|
+
"path-parse": "^1.0.7",
|
|
109
|
+
"picocolors": "^1.0.0",
|
|
110
|
+
"path-key": "^3.1.1",
|
|
111
|
+
"process-nextick-args": "^2.0.1",
|
|
112
|
+
"pkg-dir": "^4.2.0",
|
|
113
|
+
"process": "^0.11.10",
|
|
114
|
+
"randombytes": "^2.1.0",
|
|
115
|
+
"picomatch": "^2.3.1",
|
|
116
|
+
"punycode": "^2.3.1",
|
|
117
|
+
"readable-stream": "^4.5.2",
|
|
118
|
+
"rechoir": "^0.8.0",
|
|
119
|
+
"resolve-from": "^5.0.0",
|
|
120
|
+
"resolve-cwd": "^3.0.0",
|
|
121
|
+
"resolve": "^1.22.8",
|
|
122
|
+
"reinterval": "^1.1.0",
|
|
123
|
+
"rfdc": "^1.3.1",
|
|
124
|
+
"regenerator-runtime": "^0.14.1",
|
|
125
|
+
"schema-utils": "^3.3.0",
|
|
126
|
+
"safe-buffer": "^5.2.1",
|
|
127
|
+
"serialize-javascript": "^6.0.1",
|
|
128
|
+
"semver": "^7.5.4",
|
|
129
|
+
"source-map": "^0.7.4",
|
|
130
|
+
"shallow-clone": "^3.0.1",
|
|
131
|
+
"shebang-command": "^2.0.0",
|
|
132
|
+
"shebang-regex": "^3.0.0",
|
|
133
|
+
"source-map-support": "^0.5.21",
|
|
134
|
+
"string_decoder": "^1.3.0",
|
|
135
|
+
"tapable": "^2.2.1",
|
|
136
|
+
"to-regex-range": "^5.0.1",
|
|
137
|
+
"supports-preserve-symlinks-flag": "^1.0.0",
|
|
138
|
+
"split2": "^4.2.0",
|
|
139
|
+
"terser-webpack-plugin": "^5.3.9",
|
|
140
|
+
"terser": "^5.24.0",
|
|
141
|
+
"undici-types": "^5.26.5",
|
|
142
|
+
"typedarray": "^0.0.6",
|
|
143
|
+
"tslib": "^2.6.2",
|
|
144
|
+
"supports-color": "^7.2.0",
|
|
145
|
+
"update-browserslist-db": "^1.0.13",
|
|
146
|
+
"wildcard": "^2.0.1",
|
|
147
|
+
"util-deprecate": "^1.0.2",
|
|
148
|
+
"which": "^2.0.2",
|
|
149
|
+
"webpack-sources": "^3.2.3",
|
|
150
|
+
"worker-timers": "^7.1.7",
|
|
151
|
+
"webpack-merge": "^5.10.0",
|
|
152
|
+
"uri-js": "^4.4.1",
|
|
153
|
+
"watchpack": "^2.4.0",
|
|
154
|
+
"yallist": "^4.0.0",
|
|
155
|
+
"worker-timers-broker": "^6.1.7",
|
|
156
|
+
"ws": "^8.16.0",
|
|
157
|
+
"worker-timers-worker": "^7.0.70"
|
|
158
|
+
},
|
|
159
|
+
"repository": {
|
|
160
|
+
"type": "git",
|
|
161
|
+
"url": "git+https://github.com/Mentor-Friends/tsccs-dev.git"
|
|
162
|
+
},
|
|
163
|
+
"keywords": [
|
|
164
|
+
"node",
|
|
165
|
+
"mftsccs"
|
|
166
|
+
],
|
|
167
|
+
"author": "Mentor Friends",
|
|
168
|
+
"license": "ISC",
|
|
169
|
+
"bugs": {
|
|
170
|
+
"url": "https://github.com/Mentor-Friends/tsccs-dev/issues"
|
|
171
|
+
},
|
|
172
|
+
"homepage": "https://github.com/Mentor-Friends/tsccs-dev#readme"
|
|
173
|
+
}
|
|
File without changes
|