Skip to content

Built for people who want to own their automations. Join the waitlist for an invite.

Package listing

@kody/stripe

package.json

45 lines · 1.4 KB · JSON
{
	"name": "@kody/stripe",
	"version": "1.0.0",
	"license": "MIT",
	"private": false,
	"description": "Stripe API helpers backed by the stripeApiKey secret: customers, payments, invoices, subscriptions, refunds, and webhook signature verify.",
	"type": "module",
	"exports": {
		".": "./src/index.ts",
		"./account": "./src/account.ts",
		"./customers": "./src/customers.ts",
		"./payments": "./src/payments.ts",
		"./invoices": "./src/invoices.ts",
		"./subscriptions": "./src/subscriptions.ts",
		"./products": "./src/products.ts",
		"./webhooks": "./src/webhooks.ts",
		"./smoke-test": "./src/smoke-test.ts"
	},
	"files": [
		"src",
		"README.md",
		"LICENSE",
		"community-icon.svg"
	],
	"scripts": {
		"test": "node --experimental-strip-types --test src/*.test.ts"
	},
	"kody": {
		"id": "stripe",
		"name": "Stripe",
		"description": "Read and manage Stripe customers, payments, invoices, subscriptions, and refunds with dry-run mutations.",
		"logo": "./community-icon.svg",
		"tags": [
			"stripe",
			"payments",
			"billing",
			"invoices",
			"subscriptions",
			"refunds",
			"webhooks",
			"finance"
		],
		"searchText": "stripe payments charges payment intents refunds customers invoices subscriptions products prices payment links balance payouts events webhook signature verify stripeApiKey stripeWebhookSecret api.stripe.com restricted key rak_ dryRun confirm mutations secret-backed not oauth"
	}
}