Files
medreport_mrb2b/packages/billing/stripe/package.json
Danel Kungla 9ed52dcf02 add readme
delete unrequired configs
2025-09-19 18:07:31 +03:00

38 lines
960 B
JSON

{
"name": "@kit/stripe",
"private": true,
"version": "0.1.0",
"scripts": {
"clean": "git clean -xdf .turbo node_modules",
"typecheck": "tsc --noEmit",
"start": "docker run --rm -it --name=stripe -v ~/.config/stripe:/root/.config/stripe stripe/stripe-cli:latest listen --forward-to http://host.docker.internal:3000/api/billing/webhook"
},
"exports": {
".": "./src/index.ts",
"./components": "./src/components/index.ts"
},
"dependencies": {
"@stripe/react-stripe-js": "^3.7.0",
"@stripe/stripe-js": "^7.3.0",
"stripe": "^18.1.0"
},
"devDependencies": {
"@kit/billing": "workspace:*",
"@kit/shared": "workspace:*",
"@kit/supabase": "workspace:*",
"@kit/tsconfig": "workspace:*",
"@kit/ui": "workspace:*",
"@types/react": "19.1.4",
"date-fns": "^4.1.0",
"next": "15.3.2",
"react": "19.1.0"
},
"typesVersions": {
"*": {
"*": [
"src/*"
]
}
}
}