@thanh01.pmt/interactive-quiz-kit 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/README.md +176 -0
- package/dist/index.d.mts +1665 -0
- package/dist/index.d.ts +1665 -0
- package/dist/index.js +2779 -0
- package/dist/index.mjs +2727 -0
- package/package.json +129 -0
package/package.json
ADDED
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@thanh01.pmt/interactive-quiz-kit",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "A comprehensive library for creating, managing, and playing interactive quizzes, with AI generation and SCORM support.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"react",
|
|
7
|
+
"quiz",
|
|
8
|
+
"scorm",
|
|
9
|
+
"edtech",
|
|
10
|
+
"typescript",
|
|
11
|
+
"headless",
|
|
12
|
+
"ai",
|
|
13
|
+
"genkit"
|
|
14
|
+
],
|
|
15
|
+
"author": "Thanh Pham <https://github.com/thanh01pmt>",
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "https://github.com/thanh01pmt/interactive-quiz-kit.git"
|
|
20
|
+
},
|
|
21
|
+
"main": "dist/index.js",
|
|
22
|
+
"module": "dist/index.mjs",
|
|
23
|
+
"types": "dist/index.d.ts",
|
|
24
|
+
"files": [
|
|
25
|
+
"dist",
|
|
26
|
+
"README.md",
|
|
27
|
+
"HEADLESS.md",
|
|
28
|
+
"schemas",
|
|
29
|
+
"public/static/scratch-blocks/media"
|
|
30
|
+
],
|
|
31
|
+
"publishConfig": {
|
|
32
|
+
"access": "public"
|
|
33
|
+
},
|
|
34
|
+
"scripts": {
|
|
35
|
+
"build": "tsup src/index.ts --format cjs,esm --dts",
|
|
36
|
+
"lint": "eslint src/",
|
|
37
|
+
"test": "jest"
|
|
38
|
+
},
|
|
39
|
+
"peerDependencies": {
|
|
40
|
+
"react": "^18.0.0",
|
|
41
|
+
"react-dom": "^18.0.0"
|
|
42
|
+
},
|
|
43
|
+
"dependencies": {
|
|
44
|
+
"@genkit-ai/googleai": "^1.8.0",
|
|
45
|
+
"@genkit-ai/next": "^1.8.0",
|
|
46
|
+
"@hookform/resolvers": "^4.1.3",
|
|
47
|
+
"@radix-ui/react-accordion": "^1.2.3",
|
|
48
|
+
"@radix-ui/react-alert-dialog": "^1.1.6",
|
|
49
|
+
"@radix-ui/react-avatar": "^1.1.3",
|
|
50
|
+
"@radix-ui/react-checkbox": "^1.1.4",
|
|
51
|
+
"@radix-ui/react-dialog": "^1.1.6",
|
|
52
|
+
"@radix-ui/react-dropdown-menu": "^2.1.6",
|
|
53
|
+
"@radix-ui/react-label": "^2.1.2",
|
|
54
|
+
"@radix-ui/react-menubar": "^1.1.6",
|
|
55
|
+
"@radix-ui/react-popover": "^1.1.6",
|
|
56
|
+
"@radix-ui/react-progress": "^1.1.2",
|
|
57
|
+
"@radix-ui/react-radio-group": "^1.2.3",
|
|
58
|
+
"@radix-ui/react-scroll-area": "^1.2.3",
|
|
59
|
+
"@radix-ui/react-select": "^2.1.6",
|
|
60
|
+
"@radix-ui/react-separator": "^1.1.2",
|
|
61
|
+
"@radix-ui/react-slider": "^1.2.3",
|
|
62
|
+
"@radix-ui/react-slot": "^1.1.2",
|
|
63
|
+
"@radix-ui/react-switch": "^1.1.3",
|
|
64
|
+
"@radix-ui/react-tabs": "^1.1.3",
|
|
65
|
+
"@radix-ui/react-toast": "^1.2.6",
|
|
66
|
+
"@radix-ui/react-tooltip": "^1.1.8",
|
|
67
|
+
"class-variance-authority": "^0.7.1",
|
|
68
|
+
"clsx": "^2.1.1",
|
|
69
|
+
"date-fns": "^3.6.0",
|
|
70
|
+
"dotenv": "^16.5.0",
|
|
71
|
+
"firebase": "^11.8.1",
|
|
72
|
+
"genkit": "^1.8.0",
|
|
73
|
+
"jszip": "^3.10.1",
|
|
74
|
+
"lucide-react": "^0.475.0",
|
|
75
|
+
"next": "15.3.3",
|
|
76
|
+
"patch-package": "^8.0.0",
|
|
77
|
+
"react": "^18.0.0",
|
|
78
|
+
"react-day-picker": "^8.10.1",
|
|
79
|
+
"react-dom": "^18.0.0",
|
|
80
|
+
"react-hook-form": "^7.54.2",
|
|
81
|
+
"recharts": "^2.15.1",
|
|
82
|
+
"scratch-blocks": "^1.1.210",
|
|
83
|
+
"tailwind-merge": "^3.0.1",
|
|
84
|
+
"tailwindcss-animate": "^1.0.7",
|
|
85
|
+
"zod": "^3.24.2"
|
|
86
|
+
},
|
|
87
|
+
"devDependencies": {
|
|
88
|
+
"@types/node": "^20",
|
|
89
|
+
"@types/react": "^18",
|
|
90
|
+
"@types/react-dom": "^18",
|
|
91
|
+
"genkit-cli": "^1.8.0",
|
|
92
|
+
"postcss": "^8",
|
|
93
|
+
"tailwindcss": "^3.4.1",
|
|
94
|
+
"tsup": "^8.5.0",
|
|
95
|
+
"typescript": "^5"
|
|
96
|
+
},
|
|
97
|
+
"exports": {
|
|
98
|
+
".": {
|
|
99
|
+
"import": {
|
|
100
|
+
"types": "./dist/index.d.mts",
|
|
101
|
+
"default": "./dist/index.mjs"
|
|
102
|
+
},
|
|
103
|
+
"require": {
|
|
104
|
+
"types": "./dist/index.d.ts",
|
|
105
|
+
"default": "./dist/index.js"
|
|
106
|
+
}
|
|
107
|
+
},
|
|
108
|
+
"./headless": {
|
|
109
|
+
"import": {
|
|
110
|
+
"types": "./dist/headless.d.mts",
|
|
111
|
+
"default": "./dist/headless.mjs"
|
|
112
|
+
},
|
|
113
|
+
"require": {
|
|
114
|
+
"types": "./dist/headless.d.ts",
|
|
115
|
+
"default": "./dist/headless.js"
|
|
116
|
+
}
|
|
117
|
+
},
|
|
118
|
+
"./react-ui": {
|
|
119
|
+
"import": {
|
|
120
|
+
"types": "./dist/react-ui.d.mts",
|
|
121
|
+
"default": "./dist/react-ui.mjs"
|
|
122
|
+
},
|
|
123
|
+
"require": {
|
|
124
|
+
"types": "./dist/react-ui.d.ts",
|
|
125
|
+
"default": "./dist/react-ui.js"
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
}
|