@forklaunch/core 0.8.3 → 0.8.5

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forklaunch/core",
3
- "version": "0.8.3",
3
+ "version": "0.8.5",
4
4
  "description": "forklaunch-js core package. Contains useful building blocks.",
5
5
  "homepage": "https://github.com/forklaunch/forklaunch-js#readme",
6
6
  "bugs": {
@@ -96,16 +96,17 @@
96
96
  "pino-pretty": "^13.0.0",
97
97
  "redis": "^5.1.1",
98
98
  "uuid": "^11.1.0",
99
- "@forklaunch/common": "0.3.2",
100
- "@forklaunch/validator": "0.6.2"
99
+ "@forklaunch/common": "0.3.4",
100
+ "@forklaunch/validator": "0.6.4"
101
101
  },
102
102
  "devDependencies": {
103
- "@eslint/js": "^9.27.0",
103
+ "@eslint/js": "^9.28.0",
104
104
  "@scalar/express-api-reference": "^0.8.1",
105
105
  "@types/cors": "^2.8.18",
106
106
  "@types/jest": "^29.5.14",
107
107
  "@types/qs": "^6.14.0",
108
108
  "@types/uuid": "^10.0.0",
109
+ "@typescript/native-preview": "7.0.0-dev.20250531.1",
109
110
  "globals": "^16.2.0",
110
111
  "jest": "^29.7.0",
111
112
  "prettier": "^3.5.3",
@@ -118,7 +119,7 @@
118
119
  "typescript-eslint": "^8.33.0"
119
120
  },
120
121
  "scripts": {
121
- "build": "tsc --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 ./__test__/index.ts --format cjs,esm --no-splitting --dts --tsconfig tsconfig.json --out-dir lib --clean --sourcemap",
122
+ "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 ./__test__/index.ts --format cjs,esm --no-splitting --dts --tsconfig tsconfig.json --out-dir lib --clean --sourcemap",
122
123
  "clean": "rm -rf lib pnpm.lock.yaml node_modules",
123
124
  "docs": "typedoc --out docs *",
124
125
  "format": "prettier --ignore-path=.prettierignore --config .prettierrc '**/*.{ts,tsx,json}' --write",