@supabase/stripe-sync-engine
Version:
Stripe Sync Engine to sync Stripe data based on webhooks to Postgres
59 lines (58 loc) • 1.38 kB
JSON
{
"name": "@supabase/stripe-sync-engine",
"version": "0.40.1",
"private": false,
"description": "Stripe Sync Engine to sync Stripe data based on webhooks to Postgres",
"type": "module",
"main": "./dist/index.cjs",
"exports": {
"import": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"require": "./dist/index.cjs"
}
},
"scripts": {
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "tsup src/index.ts --format esm,cjs --dts && cp -r src/database/migrations dist/migrations",
"lint": "eslint src --ext .ts"
},
"files": [
"dist"
],
"dependencies": {
"pg": "^8.16.0",
"pg-node-migrations": "0.0.8",
"yesql": "^7.0.0"
},
"peerDependencies": {
"stripe": "> 11"
},
"devDependencies": {
"@types/pg": "^8.15.2",
"@types/yesql": "^4.1.4"
},
"repository": {
"type": "git",
"url": "https://github.com/supabase/stripe-sync-engine.git"
},
"homepage": "https://github.com/supabase/stripe-sync-engine#readme",
"bugs": {
"url": "https://github.com/supabase/stripe-sync-engine/issues"
},
"keywords": [
"stripe",
"postgres",
"sync",
"webhooks",
"supabase",
"billing",
"database",
"typescript"
],
"author": "Supabase <https://supabase.com/>"
}