@api-buddy/sendgrid
Version:
API Buddy integration for SendGrid - Email delivery service for transactional and marketing emails
63 lines • 1.96 kB
JSON
{
"name": "@api-buddy/sendgrid",
"version": "3.0.0",
"description": "API Buddy integration for SendGrid - Email delivery service for transactional and marketing emails",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"peerDependencies": {
"@sendgrid/mail": "^8.0.0",
"next": ">=13.0.0",
"react": ">=18.0.0"
},
"dependencies": {
"@api-buddy/plugin-core": "3.0.0"
},
"devDependencies": {
"@types/node": "^20.11.28",
"@types/react": "^18.3.23",
"@types/react-dom": "^19.1.6",
"tsup": "^8.0.0",
"typescript": "^5.8.3",
"rimraf": "^5.0.5",
"@api-buddy/tsup-config": "3.0.0"
},
"bin": {
"api-buddy-sendgrid": "./cli.cjs"
},
"keywords": [
"sendgrid",
"email",
"transactional",
"marketing",
"nextjs",
"api"
],
"author": "API Buddy Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/api-buddy/api-buddy/tree/main/packages/email/sendgrid"
},
"bugs": {
"url": "https://github.com/api-buddy/api-buddy/issues"
},
"homepage": "https://github.com/api-buddy/api-buddy/tree/main/packages/email/sendgrid#readme",
"publishConfig": {
"access": "public"
},
"_updated": true,
"scripts": {
"build": "pnpm clean && tsup",
"dev": "tsup --watch",
"clean": "rimraf dist",
"test": "jest",
"lint": "eslint src --ext .ts,.tsx",
"type-check": "tsc --noEmit",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"prebuild": "node -e \"const { execSync } = require('child_process'); const path = require('path'); const fs = require('fs'); let root = process.cwd(); while (root !== '/' && !fs.existsSync(path.join(root, 'pnpm-workspace.yaml'))) { root = path.dirname(root); } if (root === '/') { console.error('❌ Could not find project root directory'); process.exit(1); } require(path.join(root, 'scripts/ensure-tsup-config.js'));\""
}
}