@gamifyhost/gamifyhost-widget 1.0.0
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/LICENSE +21 -0
- package/README.md +243 -0
- package/dist/widget.js +339 -0
- package/package.json +53 -0
package/package.json
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@gamifyhost/gamifyhost-widget",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "An embeddable React widget that brings gamification features to any website",
|
|
5
|
+
"main": "./dist/widget.js",
|
|
6
|
+
"types": "./dist/widget.d.ts",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist",
|
|
10
|
+
"README.md",
|
|
11
|
+
"LICENSE"
|
|
12
|
+
],
|
|
13
|
+
"keywords": [
|
|
14
|
+
"gamification",
|
|
15
|
+
"widget",
|
|
16
|
+
"react",
|
|
17
|
+
"games",
|
|
18
|
+
"leaderboard",
|
|
19
|
+
"embed"
|
|
20
|
+
],
|
|
21
|
+
"author": "GamifyHost Team",
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "https://github.com/gamifyhost/gamifyhost-widget.git"
|
|
26
|
+
},
|
|
27
|
+
"bugs": {
|
|
28
|
+
"url": "https://github.com/gamifyhost/gamifyhost-widget/issues"
|
|
29
|
+
},
|
|
30
|
+
"homepage": "https://github.com/gamifyhost/gamifyhost-widget#readme",
|
|
31
|
+
"publishConfig": {
|
|
32
|
+
"access": "public"
|
|
33
|
+
},
|
|
34
|
+
"scripts": {
|
|
35
|
+
"dev": "vite",
|
|
36
|
+
"build": "vite build",
|
|
37
|
+
"preview": "vite preview"
|
|
38
|
+
},
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"react": "^19.2.3",
|
|
41
|
+
"react-dom": "^19.2.3"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@tailwindcss/vite": "^4",
|
|
45
|
+
"@types/react": "^19",
|
|
46
|
+
"@types/react-dom": "^19",
|
|
47
|
+
"@vitejs/plugin-react": "^4",
|
|
48
|
+
"tailwindcss": "^4",
|
|
49
|
+
"typescript": "^5",
|
|
50
|
+
"vite": "^6",
|
|
51
|
+
"vite-plugin-css-injected-by-js": "^3"
|
|
52
|
+
}
|
|
53
|
+
}
|