f3c46f140e
## Summary `nanoid` was pinned at exactly `3.3.8` in five manifests. Two of those five never imported it: in `internal-packages/schedule-engine` and `internal-packages/webhook-engine` the only occurrence of the string `nanoid` in the entire package was the `package.json` line itself. Both are removed rather than bumped. The three that genuinely use it move to `3.3.18`, a version already present in the tree via `postcss`, so this pulls in nothing new. | Package | Uses it | Change | | --- | --- | --- | | `internal-packages/schedule-engine` | no | removed | | `internal-packages/webhook-engine` | no | removed | | `apps/webapp` | yes | `3.3.8` to `3.3.18` | | `packages/core` | yes | `3.3.8` to `3.3.18` | | `internal-packages/run-engine` | yes | `3.3.8` to `3.3.18` | | `packages/redis-worker` | yes | `^5.0.7` to `^5.1.16` | `redis-worker` is on the 5.x line and is included because its declared range already permitted a newer release; the lockfile had simply not re-resolved, leaving it on `5.1.2`. The unused declarations were found with `pnpm run knip:deps`, which the repo already ships. `pnpm run typecheck` passes across all 57 workspaces.
37 lines
1.1 KiB
JSON
37 lines
1.1 KiB
JSON
{
|
|
"name": "@internal/webhook-engine",
|
|
"private": true,
|
|
"version": "0.0.1",
|
|
"main": "./dist/src/index.js",
|
|
"types": "./dist/src/index.d.ts",
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"@triggerdotdev/source": "./src/index.ts",
|
|
"import": "./dist/src/index.js",
|
|
"types": "./dist/src/index.d.ts",
|
|
"default": "./dist/src/index.js"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@internal/redis": "workspace:*",
|
|
"@trigger.dev/redis-worker": "workspace:*",
|
|
"@internal/tracing": "workspace:*",
|
|
"@trigger.dev/core": "workspace:*",
|
|
"@trigger.dev/database": "workspace:*",
|
|
"zod": "3.25.76"
|
|
},
|
|
"devDependencies": {
|
|
"@internal/testcontainers": "workspace:*",
|
|
"rimraf": "6.0.1"
|
|
},
|
|
"scripts": {
|
|
"clean": "rimraf dist",
|
|
"typecheck": "tsc --noEmit -p tsconfig.build.json",
|
|
"test": "vitest --sequence.concurrent=false --no-file-parallelism",
|
|
"test:coverage": "vitest --sequence.concurrent=false --no-file-parallelism --coverage.enabled",
|
|
"build": "pnpm run clean && tsc -p tsconfig.build.json",
|
|
"dev": "tsc --watch -p tsconfig.build.json"
|
|
}
|
|
}
|