@taskon/widget-react 0.0.1-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/README.md +1065 -0
- package/dist/CommunityTaskList.css +4893 -0
- package/dist/EligibilityInfo.css +2337 -0
- package/dist/LeaderboardWidget.css +815 -0
- package/dist/PageBuilder.css +54 -0
- package/dist/Quest.css +4214 -0
- package/dist/TaskOnProvider.css +163 -0
- package/dist/TipPopover.css +210 -0
- package/dist/UserCenterWidget.css +297 -0
- package/dist/UserCenterWidget2.css +3519 -0
- package/dist/WidgetShell.css +182 -0
- package/dist/chunks/CommunityTaskList-DoPGZsw1.js +6813 -0
- package/dist/chunks/EligibilityInfo-C7GZ2G5u.js +22228 -0
- package/dist/chunks/LeaderboardWidget-CmYfDeHV.js +1068 -0
- package/dist/chunks/PageBuilder-Tmhf2GTS.js +150 -0
- package/dist/chunks/Quest-DKFZ-pPU.js +8839 -0
- package/dist/chunks/TaskOnProvider-BD6Vp2x8.js +1435 -0
- package/dist/chunks/ThemeProvider-wnSXrNQb.js +1118 -0
- package/dist/chunks/TipPopover-BrW8jo71.js +2926 -0
- package/dist/chunks/UserCenterWidget-BE329iS7.js +3546 -0
- package/dist/chunks/UserCenterWidget-BVw_IEEd.js +3989 -0
- package/dist/chunks/WidgetShell-D_5OjvNZ.js +1517 -0
- package/dist/chunks/common-ja-DWhTaFHb.js +23 -0
- package/dist/chunks/common-ko-80ezXsMG.js +23 -0
- package/dist/chunks/dynamic-import-helper-DxEFwm31.js +537 -0
- package/dist/chunks/index-CwMvO_wZ.js +777 -0
- package/dist/chunks/leaderboardwidget-ja-Bj6gz6y1.js +119 -0
- package/dist/chunks/leaderboardwidget-ko-f1cLO9ic.js +119 -0
- package/dist/chunks/useToast-B-wyO5zL.js +93 -0
- package/dist/chunks/useWidgetLocale-JDelxtt8.js +74 -0
- package/dist/chunks/usercenter-ja-uu-XfVF9.js +332 -0
- package/dist/chunks/usercenter-ko-DYgUOVzd.js +332 -0
- package/dist/community-task.d.ts +451 -0
- package/dist/community-task.js +9 -0
- package/dist/core.d.ts +803 -0
- package/dist/core.js +22 -0
- package/dist/dynamic-import-helper.css +389 -0
- package/dist/index.d.ts +1660 -0
- package/dist/index.js +41 -0
- package/dist/leaderboard.d.ts +547 -0
- package/dist/leaderboard.js +18 -0
- package/dist/page-builder.d.ts +20 -0
- package/dist/page-builder.js +4 -0
- package/dist/quest.d.ts +400 -0
- package/dist/quest.js +8 -0
- package/dist/user-center.d.ts +1780 -0
- package/dist/user-center.js +713 -0
- package/package.json +105 -0
package/package.json
ADDED
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@taskon/widget-react",
|
|
3
|
+
"version": "0.0.1-beta.1",
|
|
4
|
+
"description": "TaskOn React Widget Library",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"module": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.js"
|
|
13
|
+
},
|
|
14
|
+
"./core": {
|
|
15
|
+
"types": "./dist/core.d.ts",
|
|
16
|
+
"import": "./dist/core.js"
|
|
17
|
+
},
|
|
18
|
+
"./community-task": {
|
|
19
|
+
"types": "./dist/community-task.d.ts",
|
|
20
|
+
"import": "./dist/community-task.js"
|
|
21
|
+
},
|
|
22
|
+
"./leaderboard": {
|
|
23
|
+
"types": "./dist/leaderboard.d.ts",
|
|
24
|
+
"import": "./dist/leaderboard.js"
|
|
25
|
+
},
|
|
26
|
+
"./quest": {
|
|
27
|
+
"types": "./dist/quest.d.ts",
|
|
28
|
+
"import": "./dist/quest.js"
|
|
29
|
+
},
|
|
30
|
+
"./user-center": {
|
|
31
|
+
"types": "./dist/user-center.d.ts",
|
|
32
|
+
"import": "./dist/user-center.js"
|
|
33
|
+
},
|
|
34
|
+
"./page-builder": {
|
|
35
|
+
"types": "./dist/page-builder.d.ts",
|
|
36
|
+
"import": "./dist/page-builder.js"
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"files": [
|
|
40
|
+
"dist",
|
|
41
|
+
"README.md"
|
|
42
|
+
],
|
|
43
|
+
"sideEffects": [
|
|
44
|
+
"*.css"
|
|
45
|
+
],
|
|
46
|
+
"scripts": {
|
|
47
|
+
"build": "vite build",
|
|
48
|
+
"dev": "vite build --watch",
|
|
49
|
+
"lint": "eslint . --max-warnings 0",
|
|
50
|
+
"check-types": "tsc --noEmit",
|
|
51
|
+
"prepublishOnly": "node ../../scripts/prepublish.js && pnpm build",
|
|
52
|
+
"postpublish": "node ../../scripts/postpublish.js"
|
|
53
|
+
},
|
|
54
|
+
"keywords": [
|
|
55
|
+
"taskon",
|
|
56
|
+
"react",
|
|
57
|
+
"widget"
|
|
58
|
+
],
|
|
59
|
+
"license": "MIT",
|
|
60
|
+
"devDependencies": {
|
|
61
|
+
"@taskon/core": "workspace:*",
|
|
62
|
+
"@taskon/eslint-config": "workspace:*",
|
|
63
|
+
"@taskon/typescript-config": "workspace:*",
|
|
64
|
+
"@types/dompurify": "^3.2.0",
|
|
65
|
+
"@types/node": "^22.15.3",
|
|
66
|
+
"@types/qrcode": "^1.5.5",
|
|
67
|
+
"@types/react": "19.2.2",
|
|
68
|
+
"@types/react-dom": "19.2.2",
|
|
69
|
+
"@vitejs/plugin-react": "^4.5.2",
|
|
70
|
+
"eslint": "^9.39.1",
|
|
71
|
+
"ethers": "^6.0.0",
|
|
72
|
+
"react": "^19.2.0",
|
|
73
|
+
"react-dom": "^19.2.0",
|
|
74
|
+
"typescript": "5.9.2",
|
|
75
|
+
"vite": "^6.3.5",
|
|
76
|
+
"vite-plugin-dts": "^4.5.4",
|
|
77
|
+
"vite-plugin-lib-inject-css": "^2.2.2"
|
|
78
|
+
},
|
|
79
|
+
"peerDependencies": {
|
|
80
|
+
"@taskon/core": "^0.0.1",
|
|
81
|
+
"@walletconnect/ethereum-provider": "^2.0.0",
|
|
82
|
+
"@walletconnect/modal": "^2.0.0",
|
|
83
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
84
|
+
"react-dom": "^18.0.0 || ^19.0.0"
|
|
85
|
+
},
|
|
86
|
+
"peerDependenciesMeta": {
|
|
87
|
+
"@walletconnect/ethereum-provider": {
|
|
88
|
+
"optional": true
|
|
89
|
+
},
|
|
90
|
+
"@walletconnect/modal": {
|
|
91
|
+
"optional": true
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
"dependencies": {
|
|
95
|
+
"@radix-ui/react-dialog": "^1.1.15",
|
|
96
|
+
"@radix-ui/react-popover": "^1.1.15",
|
|
97
|
+
"@radix-ui/react-slot": "^1.2.4",
|
|
98
|
+
"@radix-ui/react-toast": "^1.2.15",
|
|
99
|
+
"@radix-ui/react-toggle-group": "^1.1.11",
|
|
100
|
+
"dompurify": "^3.3.1",
|
|
101
|
+
"html-to-image": "^1.11.11",
|
|
102
|
+
"lottie-react": "^2.4.1",
|
|
103
|
+
"qrcode": "^1.5.4"
|
|
104
|
+
}
|
|
105
|
+
}
|