Files
twenty/packages/twenty-apps/stripe-synchronizer/package.json
T
BOHEUSandGitHub 6065fa61c7 Stripe synchronizer extension (#15515)
Challenge 7 from "Call for projects" list
2025-11-04 12:09:26 +01:00

35 lines
925 B
JSON

{
"version": "0.0.1",
"license": "MIT",
"engines": {
"node": "^24.5.0",
"npm": "please-use-yarn",
"yarn": ">=4.0.2"
},
"packageManager": "yarn@4.9.2",
"$schema": "https://raw.githubusercontent.com/twentyhq/twenty/main/packages/twenty-cli/schemas/appManifest.schema.json",
"universalIdentifier": "0ed2bcb8-64ab-4ca1-b875-eeabf41b5f95",
"name": "stripe-synchronizer",
"description": "Plugin synchronizing data from Stripe to Twenty",
"env": {
"TWENTY_API_KEY": {
"isSecret": true,
"value": "",
"description": "Required to send requests to Twenty"
},
"TWENTY_API_URL": {
"isSecret": false,
"value": "",
"description": "Optional, defaults to cloud API URL"
},
"STRIPE_API_KEY": {
"isSecret": true,
"value": "",
"description": "Required to send request to Stripe"
}
},
"dependencies": {
"axios": "^1.13.1"
}
}