@whop/embedded-components-react-js 0.0.1 → 0.0.3-beta.1
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/dist/index.d.ts +7 -2
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/dist/payouts/elements/balance.d.ts +4 -4
- package/dist/payouts/elements/balance.js +1 -1
- package/dist/payouts/elements/balance.js.map +1 -1
- package/dist/payouts/elements/balance.mjs +1 -1
- package/dist/payouts/elements/balance.mjs.map +1 -1
- package/dist/payouts/elements/change-account-country.d.ts +16 -0
- package/dist/payouts/elements/change-account-country.js +86 -0
- package/dist/payouts/elements/change-account-country.js.map +1 -0
- package/dist/payouts/elements/change-account-country.mjs +56 -0
- package/dist/payouts/elements/change-account-country.mjs.map +1 -0
- package/dist/payouts/elements/index.d.ts +5 -1
- package/dist/payouts/elements/index.js +5 -1
- package/dist/payouts/elements/index.js.map +1 -1
- package/dist/payouts/elements/index.mjs +5 -1
- package/dist/payouts/elements/index.mjs.map +1 -1
- package/dist/payouts/elements/reset-account.d.ts +16 -0
- package/dist/payouts/elements/reset-account.js +86 -0
- package/dist/payouts/elements/reset-account.js.map +1 -0
- package/dist/payouts/elements/reset-account.mjs +56 -0
- package/dist/payouts/elements/reset-account.mjs.map +1 -0
- package/dist/payouts/elements/verify.d.ts +4 -4
- package/dist/payouts/elements/verify.js +1 -1
- package/dist/payouts/elements/verify.js.map +1 -1
- package/dist/payouts/elements/verify.mjs +1 -1
- package/dist/payouts/elements/verify.mjs.map +1 -1
- package/dist/payouts/elements/withdraw-button.d.ts +4 -4
- package/dist/payouts/elements/withdraw-button.js +1 -1
- package/dist/payouts/elements/withdraw-button.js.map +1 -1
- package/dist/payouts/elements/withdraw-button.mjs +1 -1
- package/dist/payouts/elements/withdraw-button.mjs.map +1 -1
- package/dist/payouts/elements/withdrawal-breakdown.d.ts +16 -0
- package/dist/payouts/elements/withdrawal-breakdown.js +86 -0
- package/dist/payouts/elements/withdrawal-breakdown.js.map +1 -0
- package/dist/payouts/elements/withdrawal-breakdown.mjs +56 -0
- package/dist/payouts/elements/withdrawal-breakdown.mjs.map +1 -0
- package/dist/payouts/elements/withdrawals.d.ts +16 -0
- package/dist/payouts/elements/withdrawals.js +86 -0
- package/dist/payouts/elements/withdrawals.js.map +1 -0
- package/dist/payouts/elements/withdrawals.mjs +56 -0
- package/dist/payouts/elements/withdrawals.mjs.map +1 -0
- package/dist/payouts/index.d.ts +5 -1
- package/dist/payouts/session.d.ts +6 -2
- package/dist/payouts/session.js +3 -1
- package/dist/payouts/session.js.map +1 -1
- package/dist/payouts/session.mjs +7 -2
- package/dist/payouts/session.mjs.map +1 -1
- package/dist/payouts/use-session-ref.d.ts +8 -0
- package/dist/payouts/use-session-ref.js +29 -0
- package/dist/payouts/use-session-ref.js.map +1 -0
- package/dist/payouts/use-session-ref.mjs +7 -0
- package/dist/payouts/use-session-ref.mjs.map +1 -0
- package/dist/provider.d.ts +3 -3
- package/package.json +3 -23
- package/package.json.temp +44 -0
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@whop/embedded-components-react-js",
|
|
3
|
+
"private": true,
|
|
4
|
+
"version": "0.0.3-beta.1",
|
|
5
|
+
"description": "React components for Whop.js",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"module": "dist/index.mjs",
|
|
8
|
+
"jsnext:main": "dist/index.mjs",
|
|
9
|
+
"types": "dist/index.d.ts",
|
|
10
|
+
"typing": "dist/index.d.ts",
|
|
11
|
+
"scripts": {
|
|
12
|
+
"build": "rimraf dist && NODE_ENV=production tsup",
|
|
13
|
+
"dev": "NODE_ENV=development tsup --watch",
|
|
14
|
+
"prepublishOnly": "node ./scripts/pre-publish.mjs",
|
|
15
|
+
"postpublish": "node ./scripts/post-publish.mjs"
|
|
16
|
+
},
|
|
17
|
+
"keywords": ["Whop", "Whop.js", "React", "embedded", "payments", "payouts"],
|
|
18
|
+
"author": "Whop (https://whop.com)",
|
|
19
|
+
"license": "MIT",
|
|
20
|
+
"publishConfig": {
|
|
21
|
+
"access": "public"
|
|
22
|
+
},
|
|
23
|
+
"devDependencies": {
|
|
24
|
+
"@local/eslint-config": "workspace:*",
|
|
25
|
+
"@local/typescript-config": "workspace:*",
|
|
26
|
+
"@swc/core": "1.11.29",
|
|
27
|
+
"@types/node": "latest",
|
|
28
|
+
"@types/react": "^18.0.0",
|
|
29
|
+
"@types/react-dom": "^18.0.0",
|
|
30
|
+
"@whop/embedded-components-vanilla-js": "workspace:^",
|
|
31
|
+
"eslint": "latest",
|
|
32
|
+
"fast-glob": "^3.3.3",
|
|
33
|
+
"react": "18.1.0",
|
|
34
|
+
"react-dom": "18.1.0",
|
|
35
|
+
"rimraf": "^6.1.0",
|
|
36
|
+
"tsup": "latest",
|
|
37
|
+
"typescript": "latest"
|
|
38
|
+
},
|
|
39
|
+
"peerDependencies": {
|
|
40
|
+
"@whop/embedded-components-vanilla-js": "workspace:^",
|
|
41
|
+
"react": ">=16.8.0 <20.0.0",
|
|
42
|
+
"react-dom": ">=16.8.0 <20.0.0"
|
|
43
|
+
}
|
|
44
|
+
}
|