@intellectif/lk-core 0.6.0 → 0.7.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/CHANGELOG.md +309 -0
- package/README.md +63 -10
- package/dist/{activity-gelWNZ6V.d.cts → activity-DARHcrz_.d.cts} +9 -1
- package/dist/{activity-gelWNZ6V.d.ts → activity-DARHcrz_.d.ts} +9 -1
- package/dist/{index-CDWH2WIg.d.cts → index-BfLwCMXN.d.cts} +1 -1
- package/dist/{index-B_RLyeEj.d.ts → index-yrUw7NzZ.d.ts} +1 -1
- package/dist/index.cjs +100 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +101 -5
- package/dist/index.d.ts +101 -5
- package/dist/index.js +99 -0
- package/dist/index.js.map +1 -1
- package/dist/schemas.d.cts +2 -2
- package/dist/schemas.d.ts +2 -2
- package/dist/scoring.d.cts +2 -2
- package/dist/scoring.d.ts +2 -2
- package/dist/xapi.d.cts +1 -1
- package/dist/xapi.d.ts +1 -1
- package/package.json +25 -3
package/package.json
CHANGED
|
@@ -1,14 +1,35 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intellectif/lk-core",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.7.1",
|
|
4
|
+
"description": "Framework-free assessment core: Zod activity schemas, pure scoring, rubric & deferred grading, weighted assessment composition, exam attempt plans, and xAPI 1.0.3.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"assessment",
|
|
7
|
+
"exam",
|
|
8
|
+
"quiz",
|
|
9
|
+
"grading",
|
|
10
|
+
"rubric",
|
|
11
|
+
"scoring",
|
|
12
|
+
"xapi",
|
|
13
|
+
"tin-can",
|
|
14
|
+
"elearning",
|
|
15
|
+
"edtech",
|
|
16
|
+
"lms",
|
|
17
|
+
"h5p",
|
|
18
|
+
"zod",
|
|
19
|
+
"typescript"
|
|
20
|
+
],
|
|
21
|
+
"homepage": "https://github.com/intellectif/learning-kit/tree/main/packages/lk-core#readme",
|
|
22
|
+
"bugs": {
|
|
23
|
+
"url": "https://github.com/intellectif/learning-kit/issues"
|
|
24
|
+
},
|
|
5
25
|
"repository": {
|
|
6
26
|
"type": "git",
|
|
7
|
-
"url": "https://github.com/intellectif/learning-kit.git",
|
|
27
|
+
"url": "git+https://github.com/intellectif/learning-kit.git",
|
|
8
28
|
"directory": "packages/lk-core"
|
|
9
29
|
},
|
|
10
30
|
"type": "module",
|
|
11
31
|
"exports": {
|
|
32
|
+
"./package.json": "./package.json",
|
|
12
33
|
".": {
|
|
13
34
|
"import": {
|
|
14
35
|
"types": "./dist/index.d.ts",
|
|
@@ -55,6 +76,7 @@
|
|
|
55
76
|
"types": "./dist/index.d.ts",
|
|
56
77
|
"files": [
|
|
57
78
|
"dist",
|
|
79
|
+
"CHANGELOG.md",
|
|
58
80
|
"LICENSE"
|
|
59
81
|
],
|
|
60
82
|
"dependencies": {
|