@thanh01.pmt/curriculum-kit 1.4.16 → 1.4.18
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/dist/index.cjs +181 -12
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +18 -1
- package/dist/index.d.ts +18 -1
- package/dist/index.mjs +180 -13
- package/dist/index.mjs.map +1 -1
- package/dist/workflow/index.cjs +87 -1
- package/dist/workflow/index.cjs.map +1 -1
- package/dist/workflow/index.mjs +87 -1
- package/dist/workflow/index.mjs.map +1 -1
- package/package.json +22 -23
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thanh01.pmt/curriculum-kit",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.18",
|
|
4
4
|
"description": "A high-fidelity AI curriculum & content generation engine powered by Vercel AI SDK, Zod, and Bloom-aligned pedagogical standards.",
|
|
5
5
|
"author": "Thanh Pham <https://github.com/thanh01pmt>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -61,27 +61,6 @@
|
|
|
61
61
|
"publishConfig": {
|
|
62
62
|
"access": "public"
|
|
63
63
|
},
|
|
64
|
-
"scripts": {
|
|
65
|
-
"clean": "rm -rf dist",
|
|
66
|
-
"build": "npm run clean && tsup",
|
|
67
|
-
"lint": "eslint . --ext .ts",
|
|
68
|
-
"test": "vitest run",
|
|
69
|
-
"test:academic": "vitest run src/__tests__/academic",
|
|
70
|
-
"typecheck": "tsc --noEmit",
|
|
71
|
-
"prepublishOnly": "npm run build",
|
|
72
|
-
"gen:roadmap": "tsx src/scripts/cli.ts",
|
|
73
|
-
"test:real": "tsx src/scripts/test-real-project.ts",
|
|
74
|
-
"test:slide-tools": "tsx src/scripts/test-frontend-slides-tools.ts",
|
|
75
|
-
"test:batch": "tsx src/scripts/test-batch-milestones.ts",
|
|
76
|
-
"test:scopes": "tsx src/scripts/test-instruction-scopes.ts",
|
|
77
|
-
"test:judge": "tsx src/scripts/test-judge-repair.ts",
|
|
78
|
-
"test:self": "tsx src/scripts/test-self-learner-bundle.ts",
|
|
79
|
-
"test:durable": "tsx src/scripts/run-durable-roadmap.ts",
|
|
80
|
-
"test:prefill": "tsx src/scripts/test-layer-prefill.ts",
|
|
81
|
-
"test:simulation": "tsx src/scripts/test-user-simulation.ts",
|
|
82
|
-
"standards:validate": "tsx src/scripts/validate-framework-pack.ts",
|
|
83
|
-
"standards:seed": "tsx src/scripts/seed-standards-registry.ts"
|
|
84
|
-
},
|
|
85
64
|
"dependencies": {
|
|
86
65
|
"@ai-sdk/deepseek": "^3.0.28",
|
|
87
66
|
"@ai-sdk/google": "^4.0.44",
|
|
@@ -103,5 +82,25 @@
|
|
|
103
82
|
"tsup": "^8.3.6",
|
|
104
83
|
"typescript": "^5.7.3",
|
|
105
84
|
"vitest": "^2.1.8"
|
|
85
|
+
},
|
|
86
|
+
"scripts": {
|
|
87
|
+
"clean": "rm -rf dist",
|
|
88
|
+
"build": "npm run clean && tsup",
|
|
89
|
+
"lint": "eslint . --ext .ts",
|
|
90
|
+
"test": "vitest run",
|
|
91
|
+
"test:academic": "vitest run src/__tests__/academic",
|
|
92
|
+
"typecheck": "tsc --noEmit",
|
|
93
|
+
"gen:roadmap": "tsx src/scripts/cli.ts",
|
|
94
|
+
"test:real": "tsx src/scripts/test-real-project.ts",
|
|
95
|
+
"test:slide-tools": "tsx src/scripts/test-frontend-slides-tools.ts",
|
|
96
|
+
"test:batch": "tsx src/scripts/test-batch-milestones.ts",
|
|
97
|
+
"test:scopes": "tsx src/scripts/test-instruction-scopes.ts",
|
|
98
|
+
"test:judge": "tsx src/scripts/test-judge-repair.ts",
|
|
99
|
+
"test:self": "tsx src/scripts/test-self-learner-bundle.ts",
|
|
100
|
+
"test:durable": "tsx src/scripts/run-durable-roadmap.ts",
|
|
101
|
+
"test:prefill": "tsx src/scripts/test-layer-prefill.ts",
|
|
102
|
+
"test:simulation": "tsx src/scripts/test-user-simulation.ts",
|
|
103
|
+
"standards:validate": "tsx src/scripts/validate-framework-pack.ts",
|
|
104
|
+
"standards:seed": "tsx src/scripts/seed-standards-registry.ts"
|
|
106
105
|
}
|
|
107
|
-
}
|
|
106
|
+
}
|