@clickaroo/checkout-ui 0.0.1-beta
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +43 -0
- package/LICENSE +21 -0
- package/README.md +39 -0
- package/dist/index.css +1192 -0
- package/dist/index.d.ts +274 -0
- package/dist/index.js +19375 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +19362 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +85 -0
package/package.json
ADDED
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@clickaroo/checkout-ui",
|
|
3
|
+
"version": "0.0.1-beta",
|
|
4
|
+
"description": "A React checkout UI component library with payment integration",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"module": "dist/index.mjs",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist",
|
|
10
|
+
"README.md",
|
|
11
|
+
"CHANGELOG.md"
|
|
12
|
+
],
|
|
13
|
+
"scripts": {
|
|
14
|
+
"build": "rollup -c",
|
|
15
|
+
"build:watch": "rollup -c -w",
|
|
16
|
+
"check": "eslint src --ext .ts,.tsx",
|
|
17
|
+
"typecheck": "tsc --noEmit",
|
|
18
|
+
"storybook": "storybook dev -p 6006",
|
|
19
|
+
"build-storybook": "storybook build --output-dir storybook-static",
|
|
20
|
+
"build-storybook:pages": "storybook build --output-dir public",
|
|
21
|
+
"changeset": "changeset",
|
|
22
|
+
"changeset:version": "changeset version"
|
|
23
|
+
},
|
|
24
|
+
"keywords": [
|
|
25
|
+
"react",
|
|
26
|
+
"components",
|
|
27
|
+
"ui",
|
|
28
|
+
"typescript"
|
|
29
|
+
],
|
|
30
|
+
"license": "MIT",
|
|
31
|
+
"publishConfig": {
|
|
32
|
+
"access": "public"
|
|
33
|
+
},
|
|
34
|
+
"packageManager": "pnpm@10.11.0+sha512.6540583f41cc5f628eb3d9773ecee802f4f9ef9923cc45b69890fb47991d4b092964694ec3a4f738a420c918a333062c8b925d312f42e4f0c263eb603551f977",
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"@stripe/react-stripe-js": "^3.9.0",
|
|
37
|
+
"@stripe/stripe-js": "^7.8.0",
|
|
38
|
+
"zod": "^4.0.15",
|
|
39
|
+
"libphonenumber-js": "^1.11.12"
|
|
40
|
+
},
|
|
41
|
+
"peerDependencies": {
|
|
42
|
+
"react": ">=16.8.0",
|
|
43
|
+
"react-dom": ">=16.8.0",
|
|
44
|
+
"react-router-dom": "^6.22.1"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@changesets/cli": "^2.29.7",
|
|
48
|
+
"@rollup/plugin-commonjs": "^28.0.9",
|
|
49
|
+
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
50
|
+
"@rollup/plugin-terser": "^0.4.4",
|
|
51
|
+
"@rollup/plugin-typescript": "^12.3.0",
|
|
52
|
+
"@storybook/addon-docs": "^8.6.14",
|
|
53
|
+
"@storybook/addon-essentials": "^8.6.14",
|
|
54
|
+
"@storybook/addon-interactions": "^8.6.14",
|
|
55
|
+
"@storybook/addon-links": "^8.6.14",
|
|
56
|
+
"@storybook/blocks": "^8.6.14",
|
|
57
|
+
"@storybook/react": "^8.6.14",
|
|
58
|
+
"@storybook/react-vite": "^8.6.14",
|
|
59
|
+
"@storybook/test": "^8.6.14",
|
|
60
|
+
"@types/node": "^24.9.1",
|
|
61
|
+
"@types/react": "^18.2.43",
|
|
62
|
+
"@types/react-dom": "^18.2.17",
|
|
63
|
+
"@types/google.maps": "^3.58.1",
|
|
64
|
+
"@typescript-eslint/eslint-plugin": "^6.14.0",
|
|
65
|
+
"@typescript-eslint/parser": "^6.14.0",
|
|
66
|
+
"autoprefixer": "^10.4.21",
|
|
67
|
+
"eslint": "^8.55.0",
|
|
68
|
+
"eslint-plugin-react": "^7.33.2",
|
|
69
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
|
70
|
+
"eslint-plugin-react-refresh": "^0.4.24",
|
|
71
|
+
"postcss": "^8.5.6",
|
|
72
|
+
"react": "^18.2.0",
|
|
73
|
+
"react-dom": "^18.2.0",
|
|
74
|
+
"rollup": "^4.52.5",
|
|
75
|
+
"rollup-plugin-dts": "^6.2.3",
|
|
76
|
+
"rollup-plugin-node-externals": "^8.1.1",
|
|
77
|
+
"rollup-plugin-postcss": "^4.0.2",
|
|
78
|
+
"storybook": "^8.6.14",
|
|
79
|
+
"tailwindcss": "^3.4.1",
|
|
80
|
+
"terser": "^5.44.0",
|
|
81
|
+
"tslib": "^2.8.1",
|
|
82
|
+
"typescript": "^5.3.3",
|
|
83
|
+
"vite": "^5.4.21"
|
|
84
|
+
}
|
|
85
|
+
}
|