openlearn-next 0.1.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/package.json ADDED
@@ -0,0 +1,109 @@
1
+ {
2
+ "name": "openlearn-next",
3
+ "private": false,
4
+ "version": "0.1.0",
5
+ "type": "module",
6
+ "scripts": {
7
+ "dev": "npx tsx --no-cache server.ts",
8
+ "build": "vite build && node scripts/build-plugins.mjs && esbuild server.ts --bundle --platform=node --format=cjs --packages=external --sourcemap --outfile=dist/server.cjs",
9
+ "start": "node dist/server.cjs",
10
+ "preview": "vite preview",
11
+ "clean": "rm -rf dist server.js",
12
+ "lint": "tsc --noEmit",
13
+ "lint:eslint": "eslint . --ext .ts,.tsx --ignore-pattern dist --ignore-pattern node_modules",
14
+ "format": "prettier --write .",
15
+ "test": "vitest run",
16
+ "migrate-passwords": "node -e \"console.log('Run this script to batch-upgrade password hashes. See server/utils/migrate-passwords.ts')\"",
17
+ "db:backup": "node -e \"const db = require('./packages/core/db/index.js'); db.db.exec('VACUUM INTO \\'backup_'+Date.now()+'.db\\'');\""
18
+ },
19
+ "dependencies": {
20
+ "@google/genai": "^2.4.0",
21
+ "@openlearn/plugin-sdk": "^3.1.0",
22
+ "@types/reveal.js": "^5.2.2",
23
+ "bcryptjs": "^3.0.3",
24
+ "better-sqlite3": "^12.11.1",
25
+ "chokidar": "^5.0.0",
26
+ "dotenv": "^17.2.3",
27
+ "express": "^4.21.2",
28
+ "express-rate-limit": "^8.5.2",
29
+ "helmet": "^8.2.0",
30
+ "jspdf": "^4.2.1",
31
+ "jspdf-autotable": "^5.0.8",
32
+ "jszip": "^3.10.1",
33
+ "konva": "^10.3.0",
34
+ "lucide-react": "^0.546.0",
35
+ "motion": "^12.23.24",
36
+ "pino": "^10.3.1",
37
+ "pino-pretty": "^13.1.3",
38
+ "pptx-preview": "^0.0.5",
39
+ "react": "^19.0.1",
40
+ "react-dom": "^19.0.1",
41
+ "react-konva": "^19.2.4",
42
+ "react-konva-utils": "^2.0.0",
43
+ "react-markdown": "^10.1.0",
44
+ "recharts": "^3.8.1",
45
+ "reveal.js": "^6.0.1",
46
+ "semver": "^7.8.4",
47
+ "socket.io": "^4.8.3",
48
+ "socket.io-client": "^4.8.3",
49
+ "uuid": "^14.0.0",
50
+ "xlsx": "^0.18.5",
51
+ "xss": "^1.0.15",
52
+ "zod": "^4.4.3",
53
+ "zustand": "^5.0.14"
54
+ },
55
+ "devDependencies": {
56
+ "@types/bcryptjs": "^2.4.6",
57
+ "@types/better-sqlite3": "^7.6.13",
58
+ "@types/express": "^4.17.21",
59
+ "@types/node": "^22.14.0",
60
+ "@types/pino": "^7.0.4",
61
+ "@types/uuid": "^10.0.0",
62
+ "@types/xlsx": "^0.0.35",
63
+ "@typescript-eslint/eslint-plugin": "^8.62.0",
64
+ "@typescript-eslint/parser": "^8.62.0",
65
+ "autoprefixer": "^10.4.21",
66
+ "esbuild": "^0.25.0",
67
+ "eslint": "^10.5.0",
68
+ "eslint-plugin-react-hooks": "^7.1.1",
69
+ "jsdom": "^29.1.1",
70
+ "playwright": "^1.61.1",
71
+ "prettier": "^3.8.4",
72
+ "tailwindcss": "^4.1.14",
73
+ "tsx": "^4.21.0",
74
+ "typescript": "~5.8.2",
75
+ "vite": "^6.2.3",
76
+ "vitest": "^4.1.9",
77
+ "@tailwindcss/vite": "^4.1.14",
78
+ "@vitejs/plugin-react": "^5.0.4"
79
+ },
80
+ "bin": {
81
+ "openlearn-next": "./cli.mjs"
82
+ },
83
+ "files": [
84
+ "dist/index.html",
85
+ "dist/server.cjs",
86
+ "dist/assets/",
87
+ "dist/plugins/",
88
+ "cli.mjs",
89
+ "package.json",
90
+ "README.md"
91
+ ],
92
+ "description": "A plugin-driven Educational OS / LMS platform with AI agent teaching assistant",
93
+ "keywords": [
94
+ "lms",
95
+ "education",
96
+ "plugin",
97
+ "teaching",
98
+ "ai-agent",
99
+ "whiteboard",
100
+ "courseware",
101
+ "openlearn"
102
+ ],
103
+ "license": "MIT",
104
+ "author": "OpenLearn Team",
105
+ "repository": {
106
+ "type": "git",
107
+ "url": "https://github.com/openlearn/openlearnv2"
108
+ }
109
+ }