├── .github └── FUNDING.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── CoCreate.config.js ├── LICENSE ├── README.md ├── demo └── CoCreate-checkout.html ├── docs └── index.html ├── package.json ├── release.config.js └── webpack.config.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: CoCreate-app 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCreate-app/CoCreate-checkout/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCreate-app/CoCreate-checkout/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CoCreate.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCreate-app/CoCreate-checkout/HEAD/CoCreate.config.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCreate-app/CoCreate-checkout/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCreate-app/CoCreate-checkout/HEAD/README.md -------------------------------------------------------------------------------- /demo/CoCreate-checkout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCreate-app/CoCreate-checkout/HEAD/demo/CoCreate-checkout.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCreate-app/CoCreate-checkout/HEAD/docs/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCreate-app/CoCreate-checkout/HEAD/package.json -------------------------------------------------------------------------------- /release.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCreate-app/CoCreate-checkout/HEAD/release.config.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoCreate-app/CoCreate-checkout/HEAD/webpack.config.js --------------------------------------------------------------------------------