Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33,668 changes: 16,579 additions & 17,089 deletions package-lock.json

Large diffs are not rendered by default.

19 changes: 10 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,17 @@
"@eslint/js": "^10.0.1",
"@nx/nuxt": "23.1.0",
"@nx/vite": "23.1.0",
"@vue/language-core": "^3.3.7",
"eslint": "^10.7.0",
"eslint-plugin-simple-import-sort": "^13.0.0",
"@vue/language-core": "^3.3.8",
"eslint": "^10.8.0",
"eslint-plugin-simple-import-sort": "^14.0.0",
"eslint-plugin-vue": "^10.9.2",
"globals": "^17.7.0",
"knip": "^6.27.0",
"nuxt": "^4.5.0",
"globals": "^17.8.0",
"knip": "^6.29.0",
"nuxt": "^4.5.1",
"nx": "23.1.0",
"prettier": "^3.9.5",
"prettier": "^3.9.6",
"typescript": "^6.0.3",
"typescript-eslint": "^8.64.0",
"typescript-eslint": "^8.65.0",
"vue-eslint-parser": "^10.4.0",
"ws": "8.21.1"
},
Expand All @@ -56,6 +56,7 @@
"better-sqlite3": "^12.10.0",
"tmp": ">=0.2.6",
"form-data": "4.0.6",
"ws": "8.21.1"
"ws": "8.21.1",
"tar": "^7.5.22"
}
}
10 changes: 5 additions & 5 deletions packages/api-node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@
"node": "^22.12.0 || ^24.11.0 || >=26.0.0"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1090.0",
"@aws-sdk/s3-request-presigner": "^3.1090.0",
"@aws-sdk/client-s3": "^3.1098.0",
"@aws-sdk/s3-request-presigner": "^3.1098.0",
"@smithy/fetch-http-handler": "^5.6.6",
"@vmp/storage": "file:../storage",
"postgres": "^3.4.7"
},
"devDependencies": {
"@cloudflare/workers-types": "^5.20260719.1",
"@sentry/cloudflare": "^10.66.0",
"@types/node": "^26.1.1",
"@cloudflare/workers-types": "^5.20260730.1",
"@sentry/cloudflare": "^10.69.0",
"@types/node": "^26.1.2",
"esbuild": "^0.28.1",
"tsx": "^4.23.1",
"typescript": "^6.0.3"
Expand Down
8 changes: 4 additions & 4 deletions packages/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@
"db:migration-verify": "bash ./scripts/migration_integrity_check.sh"
},
"dependencies": {
"@sentry/cloudflare": "^10.66.0",
"@sentry/cloudflare": "^10.69.0",
"@vmp/payments": "*",
"@vmp/shared": "*",
"@vmp/storage": "*"
},
"devDependencies": {
"@cloudflare/workers-types": "^5.20260719.1",
"@types/node": "^26.1.1",
"@cloudflare/workers-types": "^5.20260730.1",
"@types/node": "^26.1.2",
"tsx": "^4.23.1",
"wrangler": "^4.112.0"
"wrangler": "^4.115.0"
}
}
4 changes: 2 additions & 2 deletions packages/media-pipeline/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@
"test": "npm run build && node --test dist/test/*.test.js"
},
"devDependencies": {
"@types/node": "^26.1.1",
"@types/node": "^26.1.2",
"typescript": "^6.0.3"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@vmp/storage": "*",
"redis": "^5.8.2"
"redis": "^6.1.0"
}
}
15 changes: 11 additions & 4 deletions packages/media-pipeline/packagingQueue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,22 @@ import { createClient } from 'redis'
const REDIS_URL = (process.env.REDIS_URL || 'redis://127.0.0.1:6379').trim()
const REDIS_QUEUE = (process.env.REDIS_QUEUE || 'packaging-queue').trim()

let client: ReturnType<typeof createClient> | null = null
let connectPromise: Promise<ReturnType<typeof createClient>> | null = null
/** Concrete client type from default createClient() (RESP3 in redis@6). */
type PackagingRedisClient = ReturnType<typeof createPackagingClient>

async function getRedis(): Promise<ReturnType<typeof createClient>> {
function createPackagingClient() {
return createClient({ url: REDIS_URL })
}

let client: PackagingRedisClient | null = null
let connectPromise: Promise<PackagingRedisClient> | null = null

async function getRedis(): Promise<PackagingRedisClient> {
if (client?.isOpen) return client
if (connectPromise) return connectPromise

connectPromise = (async () => {
const newClient = createClient({ url: REDIS_URL })
const newClient = createPackagingClient()
newClient.on('error', (err) => {
process.stderr.write(`[packaging-queue] redis error: ${err instanceof Error ? err.message : String(err)}\n`)
})
Expand Down
2 changes: 1 addition & 1 deletion packages/offloading/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"@vmp/storage": "*"
},
"devDependencies": {
"@types/node": "^26.1.1",
"@types/node": "^26.1.2",
"typescript": "^6.0.3"
},
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion packages/payments/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"typecheck": "tsc --noEmit -p tsconfig.json"
},
"devDependencies": {
"@types/node": "^26.1.1",
"@types/node": "^26.1.2",
"typescript": "^6.0.3"
}
}
8 changes: 4 additions & 4 deletions packages/storage/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
"test": "tsx --test ./test/*.test.ts"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1090.0",
"@aws-sdk/s3-request-presigner": "^3.1090.0"
"@aws-sdk/client-s3": "^3.1098.0",
"@aws-sdk/s3-request-presigner": "^3.1098.0"
},
"peerDependencies": {
"@cloudflare/workers-types": "*"
Expand All @@ -39,8 +39,8 @@
}
},
"devDependencies": {
"@cloudflare/workers-types": "^5.20260719.1",
"@types/node": "^26.1.1",
"@cloudflare/workers-types": "^5.20260730.1",
"@types/node": "^26.1.2",
"tsx": "^4.23.1",
"typescript": "^6.0.3"
}
Expand Down
26 changes: 13 additions & 13 deletions packages/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,19 +27,19 @@
"@moq/net": "^0.1.9",
"@moq/watch": "^0.3.2",
"@nuxtjs/color-mode": "^4.0.0",
"@sentry/nuxt": "^10.66.0",
"@stripe/stripe-js": "^9.10.0",
"@tiptap/core": "^3.28.0",
"@tiptap/extension-link": "^3.28.0",
"@tiptap/extension-placeholder": "^3.28.0",
"@tiptap/html": "^3.28.0",
"@tiptap/pm": "^3.28.0",
"@tiptap/starter-kit": "^3.28.0",
"@tiptap/vue-3": "^3.28.0",
"@sentry/nuxt": "^10.69.0",
"@stripe/stripe-js": "^9.12.1",
"@tiptap/core": "^3.29.2",
"@tiptap/extension-link": "^3.29.2",
"@tiptap/extension-placeholder": "^3.29.2",
"@tiptap/html": "^3.29.2",
"@tiptap/pm": "^3.29.2",
"@tiptap/starter-kit": "^3.29.2",
"@tiptap/vue-3": "^3.29.2",
"@vite-pwa/nuxt": "^1.1.1",
"@vmp/shared": "*",
"media-chrome": "^4.19.0",
"nuxt": "^4.5.0",
"nuxt": "^4.5.1",
"qrcode": "^1.5.4",
"tus-js-client": "^4.3.1",
"unsane": "^0.0.19",
Expand All @@ -49,12 +49,12 @@
},
"devDependencies": {
"@nuxtjs/tailwindcss": "^6.14.0",
"@types/node": "^26.1.1",
"@types/node": "^26.1.2",
"@types/qrcode": "^1.5.6",
"tsx": "^4.23.1",
"typescript": "^6.0.3",
"vue-tsc": "^3.3.7",
"wrangler": "^4.112.0"
"vue-tsc": "^3.3.8",
"wrangler": "^4.115.0"
},
"nx": {
"targets": {
Expand Down
Loading