@r-delfino/mux-sync-engine
Version:
Mux Sync Engine to sync Mux data based on webhooks to Postgres
61 lines (60 loc) • 1.61 kB
JSON
{
"name": "@r-delfino/mux-sync-engine",
"version": "0.0.10",
"description": "Mux Sync Engine to sync Mux data based on webhooks to Postgres",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"type": "module",
"keywords": [
"mux",
"sync",
"webhook",
"postgres",
"database",
"supabase",
"deno"
],
"author": "Renzo Delfino",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/r-delfino95/mux-sync-engine.git"
},
"bugs": {
"url": "https://github.com/r-delfino95/mux-sync-engine/issues"
},
"homepage": "https://github.com/r-delfino95/mux-sync-engine#readme",
"scripts": {
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "tsup && cp -r src/database/migrations dist/migrations",
"lint": "eslint src --ext .ts",
"prepublishOnly": "npm run build"
},
"files": [
"dist"
],
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@mux/mux-node": "^12.3.0",
"pg": "^8.16.0",
"pg-node-migrations": "0.0.8",
"yesql": "^7.0.0"
},
"devDependencies": {
"@types/pg": "^8.15.2",
"@types/yesql": "^4.1.4"
}
}