Files
triggerdotdev--trigger.dev/integrations/stripe/package.json
T
github-actions[bot] b697a19954 chore: Update version for release (#579)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2023-10-13 13:21:10 +01:00

38 lines
843 B
JSON

{
"name": "@trigger.dev/stripe",
"version": "2.2.0",
"description": "Trigger.dev integration for stripe",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"files": [
"dist/index.js",
"dist/index.d.ts",
"dist/index.js.map"
],
"devDependencies": {
"@types/node": "16.x",
"rimraf": "^3.0.2",
"stripe-event-types": "^2.4.0",
"tsup": "7.1.x",
"typescript": "4.9.4"
},
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && npm run build:tsup",
"build:tsup": "tsup",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@trigger.dev/integration-kit": "workspace:^2.2.0",
"@trigger.dev/sdk": "workspace:^2.2.0",
"stripe": "^12.14.0",
"zod": "3.22.3"
},
"engines": {
"node": ">=16.8.0"
}
}