@forklaunch/core 0.12.3 → 0.13.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/lib/http/index.d.mts +347 -118
- package/lib/http/index.d.ts +347 -118
- package/lib/http/index.js +258 -78
- package/lib/http/index.js.map +1 -1
- package/lib/http/index.mjs +256 -77
- package/lib/http/index.mjs.map +1 -1
- package/package.json +12 -11
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@forklaunch/core",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.13.0",
|
4
4
|
"description": "forklaunch-js core package. Contains useful building blocks.",
|
5
5
|
"homepage": "https://github.com/forklaunch/forklaunch-js#readme",
|
6
6
|
"bugs": {
|
@@ -86,32 +86,33 @@
|
|
86
86
|
"dotenv": "^17.2.1",
|
87
87
|
"jose": "^6.0.12",
|
88
88
|
"openapi3-ts": "^4.5.0",
|
89
|
-
"pino": "^9.
|
89
|
+
"pino": "^9.9.0",
|
90
90
|
"pino-http": "^10.5.0",
|
91
91
|
"pino-pretty": "^13.1.1",
|
92
|
-
"redis": "^5.
|
92
|
+
"redis": "^5.8.2",
|
93
93
|
"uuid": "^11.1.0",
|
94
|
-
"@forklaunch/
|
95
|
-
"@forklaunch/
|
94
|
+
"@forklaunch/common": "0.5.0",
|
95
|
+
"@forklaunch/validator": "0.9.0"
|
96
96
|
},
|
97
97
|
"devDependencies": {
|
98
|
-
"@eslint/js": "^9.
|
98
|
+
"@eslint/js": "^9.33.0",
|
99
99
|
"@scalar/express-api-reference": "^0.8.13",
|
100
100
|
"@types/cors": "^2.8.19",
|
101
101
|
"@types/jest": "^30.0.0",
|
102
102
|
"@types/qs": "^6.14.0",
|
103
103
|
"@types/uuid": "^10.0.0",
|
104
|
-
"@typescript/native-preview": "7.0.0-dev.
|
104
|
+
"@typescript/native-preview": "7.0.0-dev.20250820.1",
|
105
105
|
"globals": "^16.3.0",
|
106
106
|
"jest": "^30.0.5",
|
107
|
+
"jose": "^6.0.12",
|
107
108
|
"prettier": "^3.6.2",
|
108
|
-
"testcontainers": "^11.5.
|
109
|
-
"ts-jest": "^29.4.
|
109
|
+
"testcontainers": "^11.5.1",
|
110
|
+
"ts-jest": "^29.4.1",
|
110
111
|
"ts-node": "^10.9.2",
|
111
112
|
"tsup": "^8.5.0",
|
112
|
-
"typedoc": "^0.28.
|
113
|
+
"typedoc": "^0.28.10",
|
113
114
|
"typescript": "^5.9.2",
|
114
|
-
"typescript-eslint": "^8.
|
115
|
+
"typescript-eslint": "^8.40.0"
|
115
116
|
},
|
116
117
|
"scripts": {
|
117
118
|
"build": "tsgo --noEmit && tsup ./src/cache/index.ts ./src/controllers/index.ts ./src/mappers/index.ts ./src/objectstore/index.ts ./src/persistence/index.ts ./src/http/index.ts ./src/services/index.ts --format cjs,esm --no-splitting --dts --tsconfig tsconfig.json --out-dir lib --clean --sourcemap",
|