-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 3 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "study-buddy",
"version": "0.2.2-alpha",
"description": "Local-first, source-grounded AI study workflows for Moodle and FH Technikum Wien student systems.",
"license": "MIT",
"private": true,
"type": "module",
"files": [
"README.md",
"LICENSE",
"SECURITY.md",
"PRIVACY.md",
"THIRD_PARTY_NOTICES.md"
],
"homepage": "https://github.com/HabsaTheDog/StudyBuddy#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/HabsaTheDog/StudyBuddy.git"
},
"bugs": {
"url": "https://github.com/HabsaTheDog/StudyBuddy/issues"
},
"keywords": [
"education",
"moodle",
"study-tools",
"langgraph",
"typescript"
],
"scripts": {
"setup": "bash scripts/setup.sh",
"setup:windows": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/setup.ps1",
"moodle:agent": "tsx src/custom-skills/moodle/cli.ts",
"moodle:doctor": "tsx src/custom-skills/moodle/doctorCli.ts",
"moodle:doctor:version": "tsx src/custom-skills/moodle/doctorCli.ts --version-only --json",
"moodle:eval": "tsx src/custom-skills/moodle/evals/cli.ts",
"moodle:benchmark": "tsx src/custom-skills/moodle/evals/cli.ts",
"moodle:watchdog": "tsx src/custom-skills/moodle/runWatchdogCli.ts",
"web-layout:agent": "tsx src/custom-skills/web-layout/cli.ts",
"web-layout:bundle": "tsx src/custom-skills/web-layout/bundleCli.ts",
"web-layout:benchmark": "tsx src/custom-skills/web-layout/evals/cli.ts",
"web-layout:rerender-study-guide": "tsx src/custom-skills/web-layout/rerenderStudyGuideCli.ts",
"interactive-study-guide": "tsx src/custom-skills/interactive-study-guide/cli.ts",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"verify": "npm run typecheck && npm test",
"check:links": "node scripts/check-markdown-links.mjs",
"check:public-tree": "node scripts/check-public-tree.mjs",
"check:licenses": "node scripts/check-licenses.mjs",
"check:sbom": "node scripts/check-sbom.mjs",
"check:submodule-pin": "node scripts/check-submodule-pin.mjs",
"check:release-contract": "node --test scripts/check-desktop-release-contract.test.mjs scripts/check-desktop-release-assets.test.mjs",
"audit:all": "npm audit --audit-level=high",
"audit:production": "npm audit --omit=dev --audit-level=high",
"check:release": "npm run verify && npm run check:links && npm run check:public-tree && npm run check:licenses && npm run check:sbom && npm run check:submodule-pin && npm run check:release-contract && npm run audit:all"
},
"dependencies": {
"@langchain/langgraph": "^1.4.9",
"@openai/codex-sdk": "0.147.0",
"commander": "^14.0.3",
"dotenv": "^17.4.2",
"ical.js": "^2.2.1",
"parse5": "^8.0.1",
"playwright": "^1.62.1",
"tsx": "^4.23.12",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^24.13.3",
"postcss": "^8.5.26",
"typescript": "^5.7.3",
"vitest": "^4.1.11"
},
"engines": {
"node": ">=22.16"
},
"allowScripts": {
"esbuild@0.28.1": true
}
}