├── .gitignore ├── LICENSE ├── README.md ├── package.json └── src ├── backend.ts ├── index.ts └── react.tsx /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | package-lock.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerk/use-stripe-subscription/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerk/use-stripe-subscription/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerk/use-stripe-subscription/HEAD/package.json -------------------------------------------------------------------------------- /src/backend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerk/use-stripe-subscription/HEAD/src/backend.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerk/use-stripe-subscription/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/react.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clerk/use-stripe-subscription/HEAD/src/react.tsx --------------------------------------------------------------------------------