bitsnap-checkout
Version:
This is Bitsnap Checkout React library for easy integration with any website which is using React framework
119 lines • 2.97 kB
JSON
{
"name": "bitsnap-checkout",
"version": "0.5.0",
"description": "This is Bitsnap Checkout React library for easy integration with any website which is using React framework",
"main": "index.ts",
"type": "commonjs",
"repository": {
"type": "git",
"url": "git+https://github.com/emmems/bitsnap-checkout.git"
},
"keywords": [
"bitsnap",
"checkout",
"shop",
"ecommerce"
],
"author": "Piotr Michalik",
"license": "SEE LICENSE IN LICENSE file",
"bugs": {
"url": "https://github.com/emmems/bitsnap-checkout/issues"
},
"files": [
"dist",
"internal",
"errors",
"backend"
],
"types": "dist/index.d.ts",
"homepage": "https://github.com/emmems/bitsnap-checkout#readme",
"devDependencies": {
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"autoprefixer": "^10.4.20",
"tailwindcss": "^3.4.15",
"tsup": "^8.3.5",
"typescript": "^5.6.3"
},
"dependencies": {
"@bufbuild/protobuf": "^2.2.2",
"@connectrpc/connect": "^2.0.4",
"@connectrpc/connect-node": "^2.0.4",
"@connectrpc/connect-query": "^2.1.1",
"@formkit/auto-animate": "^0.8.2",
"framer-motion": "^11.11.17",
"react": "^18.3.1",
"react-query": "^3.39.3",
"tslib": "^2.8.1",
"zod": "4.0.0-beta.20250424T163858",
"zustand": "^5.0.1"
},
"peerDependencies": {
"react": "^18 || ^19.0.0-0",
"react-dom": "^18 || ^19.0.0-0"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./backend": {
"import": {
"types": "./dist/backend.d.mts",
"default": "./dist/backend.mjs"
},
"require": {
"types": "./dist/backend.d.ts",
"default": "./dist/backend.js"
}
},
"./models": {
"import": {
"types": "./dist/models.d.mts",
"default": "./dist/models.mjs"
},
"require": {
"types": "./dist/models.d.ts",
"default": "./dist/models.js"
}
},
"./internal": {
"import": {
"types": "./dist/internal.d.mts",
"default": "./dist/internal.mjs"
},
"require": {
"types": "./dist/internal.d.ts",
"default": "./dist/internal.js"
}
},
"./dist/index.css": {
"import": "./dist/index.css",
"require": "./dist/index.css"
},
"./errors": {
"import": {
"types": "./dist/errors.d.mts",
"default": "./dist/errors.mjs"
},
"require": {
"types": "./dist/errors.d.ts",
"default": "./dist/errors.js"
}
},
"./package.json": "./package.json"
},
"scripts": {
"build": "tsup",
"build:publish": "pnpm build --env.publish",
"clean": "rimraf ./dist",
"dev": "tsup --watch",
"dev:publish": "pnpm dev --env.publish"
}
}