mftsccs-node 0.0.0
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/README.md +24 -0
- package/dist/bundle.js +10064 -0
- package/dist/conceptconnection.js +5 -0
- package/dist/createComposition.js +7 -0
- package/dist/index.js +5363 -0
- package/dist/listComposition.js +26 -0
- package/dist/main.js +21 -0
- package/dist/test.js +190 -0
- package/dist/tumble.js +6544 -0
- package/dist/types/Api/Create/CreateTheCharacter.d.ts +3 -0
- package/dist/types/Api/Create/CreateTheConceptApi.d.ts +2 -0
- package/dist/types/Api/Create/CreateTheConnectionApi.d.ts +2 -0
- package/dist/types/Api/Create/CreateTheTextData.d.ts +2 -0
- package/dist/types/Api/Delete/DeleteConceptInBackend.d.ts +1 -0
- package/dist/types/Api/DeleteTheConcept.d.ts +1 -0
- package/dist/types/Api/DeleteTheConnection.d.ts +1 -0
- package/dist/types/Api/GetAccessIdOfUser.d.ts +0 -0
- package/dist/types/Api/GetAiData.d.ts +1 -0
- package/dist/types/Api/GetAllConcepts.d.ts +1 -0
- package/dist/types/Api/GetAllConceptsByType.d.ts +1 -0
- package/dist/types/Api/GetAllConnections.d.ts +1 -0
- package/dist/types/Api/GetAllConnectionsOfComposition.d.ts +3 -0
- package/dist/types/Api/GetAllConnectionsOfCompositionBulk.d.ts +3 -0
- package/dist/types/Api/GetAllLinkerConnectionsFromTheConcept.d.ts +2 -0
- package/dist/types/Api/GetAllPrefetchConnections.d.ts +1 -0
- package/dist/types/Api/GetCharacterDataByCharacter.d.ts +2 -0
- package/dist/types/Api/GetCompositionConnectionsBetweenTwoConcepts.d.ts +2 -0
- package/dist/types/Api/GetConcept.d.ts +2 -0
- package/dist/types/Api/GetConceptBulk.d.ts +3 -0
- package/dist/types/Api/GetConceptByCharacterAndType.d.ts +2 -0
- package/dist/types/Api/GetConceptByCharacterValue.d.ts +2 -0
- package/dist/types/Api/GetConnection.d.ts +2 -0
- package/dist/types/Api/GetConnectionBulk.d.ts +2 -0
- package/dist/types/Api/GetConnectionOfTheConcept.d.ts +2 -0
- package/dist/types/Api/GetReservedConnectionIds.d.ts +1 -0
- package/dist/types/Api/GetReservedIds.d.ts +1 -0
- package/dist/types/Api/Login.d.ts +1 -0
- package/dist/types/Api/MakeTheNameInBackend.d.ts +1 -0
- package/dist/types/Api/MakeTheTypeConceptApi.d.ts +2 -0
- package/dist/types/Api/RecursiveSearch.d.ts +1 -0
- package/dist/types/Api/Search/Search.d.ts +1 -0
- package/dist/types/Api/Search/SearchLinkMultipleApi.d.ts +2 -0
- package/dist/types/Api/Search/SearchWithLinker.d.ts +2 -0
- package/dist/types/Api/Session/CreateSession.d.ts +2 -0
- package/dist/types/Api/Session/CreateSessionVisit.d.ts +1 -0
- package/dist/types/Api/Signin.d.ts +3 -0
- package/dist/types/Api/Signup.d.ts +3 -0
- package/dist/types/Constants/ApiConstants.d.ts +23 -0
- package/dist/types/DataStructures/BaseUrl.d.ts +42 -0
- package/dist/types/DataStructures/BinaryCharacterTree.d.ts +14 -0
- package/dist/types/DataStructures/BinaryTree.d.ts +12 -0
- package/dist/types/DataStructures/BinaryTypeTree.d.ts +15 -0
- package/dist/types/DataStructures/CharacterRepository.d.ts +8 -0
- package/dist/types/DataStructures/Composition/Composition.d.ts +14 -0
- package/dist/types/DataStructures/Composition/CompositionBinaryTree.d.ts +10 -0
- package/dist/types/DataStructures/Composition/CompositionNode.d.ts +21 -0
- package/dist/types/DataStructures/Concept.d.ts +28 -0
- package/dist/types/DataStructures/ConceptData.d.ts +20 -0
- package/dist/types/DataStructures/ConceptsToDraw.d.ts +11 -0
- package/dist/types/DataStructures/Connection.d.ts +28 -0
- package/dist/types/DataStructures/ConnectionBinaryTree/ConnectionBinaryTree.d.ts +11 -0
- package/dist/types/DataStructures/ConnectionBinaryTree/ConnectionNode.d.ts +24 -0
- package/dist/types/DataStructures/ConnectionBinaryTree/ConnectionTypeTree.d.ts +13 -0
- package/dist/types/DataStructures/ConnectionData.d.ts +18 -0
- package/dist/types/DataStructures/FilterSearch.d.ts +6 -0
- package/dist/types/DataStructures/IdentifierFlags.d.ts +11 -0
- package/dist/types/DataStructures/Local/LConcept.d.ts +19 -0
- package/dist/types/DataStructures/Local/LConnection.d.ts +18 -0
- package/dist/types/DataStructures/Local/LNode.d.ts +27 -0
- package/dist/types/DataStructures/Local/LocalBinaryCharacterTree.d.ts +12 -0
- package/dist/types/DataStructures/Local/LocalBinaryTree.d.ts +12 -0
- package/dist/types/DataStructures/Local/LocalBinaryTypeTree.d.ts +13 -0
- package/dist/types/DataStructures/Local/LocalConceptData.d.ts +14 -0
- package/dist/types/DataStructures/Local/LocalConnectionData.d.ts +16 -0
- package/dist/types/DataStructures/Local/LocalSyncData.d.ts +14 -0
- package/dist/types/DataStructures/Node.d.ts +27 -0
- package/dist/types/DataStructures/PatcherStructure.d.ts +8 -0
- package/dist/types/DataStructures/ReferentInfo.d.ts +7 -0
- package/dist/types/DataStructures/ReservedIds.d.ts +10 -0
- package/dist/types/DataStructures/Responses/StandardResponses.d.ts +6 -0
- package/dist/types/DataStructures/Returner.d.ts +7 -0
- package/dist/types/DataStructures/SearchQuery.d.ts +14 -0
- package/dist/types/DataStructures/Security/TokenStorage.d.ts +3 -0
- package/dist/types/DataStructures/Session/SessionData.d.ts +13 -0
- package/dist/types/DataStructures/SettingData.d.ts +5 -0
- package/dist/types/DataStructures/Settings.d.ts +4 -0
- package/dist/types/DataStructures/SigninModel.d.ts +4 -0
- package/dist/types/DataStructures/SignupModel.d.ts +4 -0
- package/dist/types/DataStructures/SyncData.d.ts +15 -0
- package/dist/types/DataStructures/TheCharacter.d.ts +13 -0
- package/dist/types/DataStructures/TheTexts.d.ts +14 -0
- package/dist/types/DataStructures/TokenStorage.d.ts +3 -0
- package/dist/types/DataStructures/User/UserBinaryTree.d.ts +12 -0
- package/dist/types/DataStructures/User/UserNode.d.ts +18 -0
- package/dist/types/Database/GetConceptFromIndexDb.d.ts +0 -0
- package/dist/types/Database/NoIndexDb.d.ts +9 -0
- package/dist/types/Database/indexdblocal.d.ts +3 -0
- package/dist/types/Database/indexeddb.d.ts +3 -0
- package/dist/types/Drawing/ConceptDraw.d.ts +1 -0
- package/dist/types/Drawing/ConceptEvents.d.ts +1 -0
- package/dist/types/Helpers/CheckIfExists.d.ts +8 -0
- package/dist/types/Helpers/RemoveFromArray.d.ts +4 -0
- package/dist/types/Helpers/UniqueInsert.d.ts +1 -0
- package/dist/types/Services/CheckForConnectionDeletion.d.ts +3 -0
- package/dist/types/Services/CheckIfConnection.d.ts +2 -0
- package/dist/types/Services/Composition/BuildComposition.d.ts +3 -0
- package/dist/types/Services/Composition/CompositionCache.d.ts +4 -0
- package/dist/types/Services/Composition/CreateCompositionCache.d.ts +3 -0
- package/dist/types/Services/CreateBinaryTreeFromData.d.ts +1 -0
- package/dist/types/Services/CreateCharacterBinaryTreeFromData.d.ts +1 -0
- package/dist/types/Services/CreateConnectionBetweenTwoConcepts.d.ts +3 -0
- package/dist/types/Services/CreateDefaultConcept.d.ts +2 -0
- package/dist/types/Services/CreateTheComposition.d.ts +2 -0
- package/dist/types/Services/CreateTheConcept.d.ts +4 -0
- package/dist/types/Services/CreateTheConnection.d.ts +2 -0
- package/dist/types/Services/CreateTheConnectionGeneral.d.ts +2 -0
- package/dist/types/Services/CreateTypeTreeFromData.d.ts +1 -0
- package/dist/types/Services/DeleteConcept.d.ts +1 -0
- package/dist/types/Services/DeleteConnection.d.ts +1 -0
- package/dist/types/Services/FindConeceptsFromConnection.d.ts +2 -0
- package/dist/types/Services/FindConnectionsOfCompositionBulkInMemory.d.ts +2 -0
- package/dist/types/Services/GenerateHexNumber.d.ts +1 -0
- package/dist/types/Services/GetAccessIdOfUser.d.ts +0 -0
- package/dist/types/Services/GetComposition.d.ts +10 -0
- package/dist/types/Services/GetCompositionBulk.d.ts +4 -0
- package/dist/types/Services/GetCompositionList.d.ts +2 -0
- package/dist/types/Services/GetConceptByCharacter.d.ts +2 -0
- package/dist/types/Services/GetConnections.d.ts +2 -0
- package/dist/types/Services/GetDataFromIndexDb.d.ts +2 -0
- package/dist/types/Services/GetLink.d.ts +3 -0
- package/dist/types/Services/GetLinkerConnectionFromConcept.d.ts +2 -0
- package/dist/types/Services/GetMaximumConnectionSyncTime.d.ts +2 -0
- package/dist/types/Services/GetTheConcept.d.ts +2 -0
- package/dist/types/Services/GetTheReferent.d.ts +2 -0
- package/dist/types/Services/InitializeSystem.d.ts +2 -0
- package/dist/types/Services/Local/CreateConnectionListFromDatat.d.ts +0 -0
- package/dist/types/Services/Local/CreateDefaultLConcept.d.ts +2 -0
- package/dist/types/Services/Local/CreateLocalBinaryTreeFromData.d.ts +1 -0
- package/dist/types/Services/Local/CreateLocalBinaryTypeTreeFromData.d.ts +1 -0
- package/dist/types/Services/Local/CreateLocalCharacterBinaryTree.d.ts +1 -0
- package/dist/types/Services/Local/CreateTheCompositionLocal.d.ts +2 -0
- package/dist/types/Services/Local/CreateTheConceptLocal.d.ts +2 -0
- package/dist/types/Services/Local/CreateTheConnectionLocal.d.ts +2 -0
- package/dist/types/Services/Local/GetCompositionListLocal.d.ts +2 -0
- package/dist/types/Services/Local/GetCompositionLocal.d.ts +2 -0
- package/dist/types/Services/Local/GetConceptByCharacterLocal.d.ts +1 -0
- package/dist/types/Services/Local/MakeTheConceptLocal.d.ts +2 -0
- package/dist/types/Services/Local/MakeTheInstanceConceptLocal.d.ts +2 -0
- package/dist/types/Services/Local/MakeTheTypeLocal.d.ts +2 -0
- package/dist/types/Services/MakeTheCharacter.d.ts +2 -0
- package/dist/types/Services/MakeTheCharacterData.d.ts +2 -0
- package/dist/types/Services/MakeTheConcept.d.ts +2 -0
- package/dist/types/Services/MakeTheInstanceConcept.d.ts +2 -0
- package/dist/types/Services/MakeTheLocalConcept.d.ts +0 -0
- package/dist/types/Services/MakeTheName.d.ts +2 -0
- package/dist/types/Services/MakeTheTimestamp.d.ts +2 -0
- package/dist/types/Services/MakeTheTypeConcept.d.ts +2 -0
- package/dist/types/Services/Mqtt/publishMessage.d.ts +1 -0
- package/dist/types/Services/Mqtt/subscribeMessage.d.ts +0 -0
- package/dist/types/Services/PatchComposition.d.ts +2 -0
- package/dist/types/Services/Search/SearchLinkMultiple.d.ts +3 -0
- package/dist/types/Services/Security/GetRequestHeader.d.ts +10 -0
- package/dist/types/Services/SplitStrings.d.ts +1 -0
- package/dist/types/Services/UpdateComposition.d.ts +2 -0
- package/dist/types/Services/User/UserTranslation.d.ts +3 -0
- package/dist/types/app.d.ts +70 -0
- package/package.json +173 -0
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
export { init, updateAccessToken };
|
|
2
|
+
export { SplitStrings } from './Services/SplitStrings';
|
|
3
|
+
export { GetCompositionList, GetCompositionListWithId } from './Services/GetCompositionList';
|
|
4
|
+
export { GetCompositionListLocal, GetCompositionListLocalWithId } from './Services/Local/GetCompositionListLocal';
|
|
5
|
+
export { GetAllConnectionsOfComposition } from './Api/GetAllConnectionsOfComposition';
|
|
6
|
+
export { GetComposition, GetCompositionWithId, recursiveFetch, GetCompositionWithAllIds } from './Services/GetComposition';
|
|
7
|
+
export { GetCompositionLocal, GetCompositionLocalWithId } from './Services/Local/GetCompositionLocal';
|
|
8
|
+
export { default as CreateComposition } from './Services/CreateTheComposition';
|
|
9
|
+
export { CreateTheCompositionLocal } from './Services/Local/CreateTheCompositionLocal';
|
|
10
|
+
export { CreateConnectionBetweenTwoConcepts } from './Services/CreateConnectionBetweenTwoConcepts';
|
|
11
|
+
export { default as GetTheConcept } from './Services/GetTheConcept';
|
|
12
|
+
export { default as MakeTheInstanceConcept } from './Services/MakeTheInstanceConcept';
|
|
13
|
+
export { MakeTheInstanceConceptLocal } from './Services/Local/MakeTheInstanceConceptLocal';
|
|
14
|
+
export { storeToDatabase, getFromDatabaseWithType, getFromDatabaseWithTypeOld } from './Database/NoIndexDb';
|
|
15
|
+
export { createTheConnection as CreateTheConnection } from './Services/CreateTheConnection';
|
|
16
|
+
export { default as GetConceptByCharacter } from './Services/GetConceptByCharacter';
|
|
17
|
+
export { GetLink, GetLinkRaw } from './Services/GetLink';
|
|
18
|
+
export { CreateDefaultConcept } from './Services/CreateDefaultConcept';
|
|
19
|
+
export { MakeTheTypeConcept } from './Services/MakeTheTypeConcept';
|
|
20
|
+
export { MakeTheTypeConceptApi } from './Api/MakeTheTypeConceptApi';
|
|
21
|
+
export { GetLinkerConnectionFromConcepts } from './Services/GetLinkerConnectionFromConcept';
|
|
22
|
+
export { DeleteConceptById } from './Services/DeleteConcept';
|
|
23
|
+
export { DeleteConnectionById } from './Services/DeleteConnection';
|
|
24
|
+
export { TrashTheConcept } from './Api/Delete/DeleteConceptInBackend';
|
|
25
|
+
export { GetConnectionById } from './Services/GetConnections';
|
|
26
|
+
export { MakeTheTimestamp } from './Services/MakeTheTimestamp';
|
|
27
|
+
export { RecursiveSearchApi } from './Api/RecursiveSearch';
|
|
28
|
+
export { GetCompositionBulkWithDataId, GetCompositionBulk, GetCompositionFromConnectionsWithDataId } from './Services/GetCompositionBulk';
|
|
29
|
+
export { GetConceptBulk } from './Api/GetConceptBulk';
|
|
30
|
+
export { GetConnectionBulk } from './Api/GetConnectionBulk';
|
|
31
|
+
export { GetAllConnectionsOfCompositionBulk } from './Api/GetAllConnectionsOfCompositionBulk';
|
|
32
|
+
export { LoginToBackend } from './Api/Login';
|
|
33
|
+
export { GetConnectionOfTheConcept } from './Api/GetConnectionOfTheConcept';
|
|
34
|
+
export { default as Signup } from './Api/Signup';
|
|
35
|
+
export { default as Signin } from './Api/Signin';
|
|
36
|
+
export { default as UpdateComposition } from './Services/UpdateComposition';
|
|
37
|
+
export { SearchAllConcepts } from './Api/Search/Search';
|
|
38
|
+
export { SearchWithLinker } from './Api/Search/SearchWithLinker';
|
|
39
|
+
export { GetCompositionWithCache, GetCompositionWithDataIdWithCache, GetCompositionWithDataIdBulk } from './Services/Composition/CompositionCache';
|
|
40
|
+
export { CreateSession } from './Api/Session/CreateSession';
|
|
41
|
+
export { CreateSessionVisit } from './Api/Session/CreateSessionVisit';
|
|
42
|
+
export {} from './Api/GetConceptByCharacterAndType';
|
|
43
|
+
export { recursiveFetchNew } from './Services/Composition/BuildComposition';
|
|
44
|
+
export { CreateTheCompositionWithCache } from './Services/Composition/CreateCompositionCache';
|
|
45
|
+
export { CreateDefaultLConcept } from './Services/Local/CreateDefaultLConcept';
|
|
46
|
+
export { CreateTheConnectionGeneral } from './Services/CreateTheConnectionGeneral';
|
|
47
|
+
export { CreateTheConnectionLocal } from './Services/Local/CreateTheConnectionLocal';
|
|
48
|
+
export { GetUserGhostId, AddGhostConcept } from './Services/User/UserTranslation';
|
|
49
|
+
export { SearchLinkMultipleAll } from './Services/Search/SearchLinkMultiple';
|
|
50
|
+
export { SyncData } from './DataStructures/SyncData';
|
|
51
|
+
export { Concept } from './DataStructures/Concept';
|
|
52
|
+
export { LConcept } from './DataStructures/Local/LConcept';
|
|
53
|
+
export { LConnection } from './DataStructures/Local/LConnection';
|
|
54
|
+
export { Connection } from './DataStructures/Connection';
|
|
55
|
+
export { ConceptsData } from './DataStructures/ConceptData';
|
|
56
|
+
export { ConnectionData } from './DataStructures/ConnectionData';
|
|
57
|
+
export { BinaryTree } from './DataStructures/BinaryTree';
|
|
58
|
+
export { SearchQuery } from './DataStructures/SearchQuery';
|
|
59
|
+
export { SignupModel } from './DataStructures/SignupModel';
|
|
60
|
+
export { SigninModel } from './DataStructures/SigninModel';
|
|
61
|
+
export { FreeschemaResponse } from './DataStructures/Responses/StandardResponses';
|
|
62
|
+
export { PatcherStructure } from './DataStructures/PatcherStructure';
|
|
63
|
+
export { SessionData } from './DataStructures/Session/SessionData';
|
|
64
|
+
export { Composition } from './DataStructures/Composition/Composition';
|
|
65
|
+
export { CompositionBinaryTree } from './DataStructures/Composition/CompositionBinaryTree';
|
|
66
|
+
export { CompositionNode } from './DataStructures/Composition/CompositionNode';
|
|
67
|
+
export { UserBinaryTree } from './DataStructures/User/UserBinaryTree';
|
|
68
|
+
export { BaseUrl } from './DataStructures/BaseUrl';
|
|
69
|
+
declare function updateAccessToken(accessToken?: string): void;
|
|
70
|
+
declare function init(url?: string, aiurl?: string, accessToken?: string): void;
|
package/package.json
ADDED
|
@@ -0,0 +1,173 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "mftsccs-node",
|
|
3
|
+
"version": "0.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
|
+
}
|