@cepseudo/engine 1.0.0 → 1.0.1
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/package.json +78 -78
package/package.json
CHANGED
|
@@ -1,78 +1,78 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@cepseudo/engine",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Core engine for Digital Twin framework (Engine, Scheduler, Queues, Loader, OpenAPI)",
|
|
5
|
-
"license": "MIT",
|
|
6
|
-
"author": "Axel Hoffmann",
|
|
7
|
-
"type": "module",
|
|
8
|
-
"main": "./dist/index.js",
|
|
9
|
-
"types": "./dist/index.d.ts",
|
|
10
|
-
"exports": {
|
|
11
|
-
".": {
|
|
12
|
-
"import": "./dist/index.js",
|
|
13
|
-
"types": "./dist/index.d.ts"
|
|
14
|
-
}
|
|
15
|
-
},
|
|
16
|
-
"files": [
|
|
17
|
-
"dist/",
|
|
18
|
-
"README.md",
|
|
19
|
-
"LICENSE"
|
|
20
|
-
],
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
"
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
"@cepseudo/
|
|
34
|
-
"@cepseudo/database": "
|
|
35
|
-
"@cepseudo/
|
|
36
|
-
"@cepseudo/
|
|
37
|
-
"@cepseudo/
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
"
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
"
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
|
|
63
|
-
"
|
|
64
|
-
"digitaltwin"
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
"
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
"
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
"
|
|
77
|
-
}
|
|
78
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@cepseudo/engine",
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "Core engine for Digital Twin framework (Engine, Scheduler, Queues, Loader, OpenAPI)",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": "Axel Hoffmann",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"main": "./dist/index.js",
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"import": "./dist/index.js",
|
|
13
|
+
"types": "./dist/index.d.ts"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist/",
|
|
18
|
+
"README.md",
|
|
19
|
+
"LICENSE"
|
|
20
|
+
],
|
|
21
|
+
"engines": {
|
|
22
|
+
"node": ">=20.0.0"
|
|
23
|
+
},
|
|
24
|
+
"dependencies": {
|
|
25
|
+
"bullmq": "^5.56.5",
|
|
26
|
+
"compression": "^1.7.5",
|
|
27
|
+
"cors": "^2.8.5",
|
|
28
|
+
"ioredis": "^5.6.1",
|
|
29
|
+
"lodash": "^4.17.23",
|
|
30
|
+
"multer": "^2.0.2",
|
|
31
|
+
"ultimate-express": "^2.0.9",
|
|
32
|
+
"@cepseudo/shared": "1.0.1",
|
|
33
|
+
"@cepseudo/storage": "1.0.1",
|
|
34
|
+
"@cepseudo/database": "1.0.1",
|
|
35
|
+
"@cepseudo/assets": "1.0.1",
|
|
36
|
+
"@cepseudo/components": "1.0.1",
|
|
37
|
+
"@cepseudo/auth": "1.0.1"
|
|
38
|
+
},
|
|
39
|
+
"devDependencies": {
|
|
40
|
+
"@japa/assert": "^4.1.0",
|
|
41
|
+
"@japa/runner": "^4.3.0",
|
|
42
|
+
"@testcontainers/redis": "^11.3.1",
|
|
43
|
+
"@types/compression": "^1.7.5",
|
|
44
|
+
"@types/cors": "^2.8.19",
|
|
45
|
+
"@types/lodash": "^4.17.20",
|
|
46
|
+
"@types/multer": "^2.0.0",
|
|
47
|
+
"testcontainers": "^11.3.1",
|
|
48
|
+
"ts-node-maintained": "^10.9.5"
|
|
49
|
+
},
|
|
50
|
+
"repository": {
|
|
51
|
+
"type": "git",
|
|
52
|
+
"url": "git+https://github.com/CePseudoBE/digitaltwin.git",
|
|
53
|
+
"directory": "packages/engine"
|
|
54
|
+
},
|
|
55
|
+
"keywords": [
|
|
56
|
+
"digitaltwin",
|
|
57
|
+
"engine",
|
|
58
|
+
"scheduler",
|
|
59
|
+
"bullmq",
|
|
60
|
+
"openapi",
|
|
61
|
+
"health-check"
|
|
62
|
+
],
|
|
63
|
+
"bugs": {
|
|
64
|
+
"url": "https://github.com/CePseudoBE/digitaltwin/issues"
|
|
65
|
+
},
|
|
66
|
+
"homepage": "https://github.com/CePseudoBE/digitaltwin#readme",
|
|
67
|
+
"publishConfig": {
|
|
68
|
+
"access": "public"
|
|
69
|
+
},
|
|
70
|
+
"scripts": {
|
|
71
|
+
"build": "tsc",
|
|
72
|
+
"dev": "tsc --watch",
|
|
73
|
+
"clean": "rimraf dist tsconfig.tsbuildinfo",
|
|
74
|
+
"test": "node -r ./bin/set-test-env.cjs --import ts-node-maintained/register/esm --enable-source-maps bin/test.ts",
|
|
75
|
+
"lint": "eslint src tests --no-error-on-unmatched-pattern",
|
|
76
|
+
"lint:fix": "eslint src tests --fix --no-error-on-unmatched-pattern"
|
|
77
|
+
}
|
|
78
|
+
}
|