openlearn-next 0.1.4 → 0.1.5

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.
Files changed (1) hide show
  1. package/package.json +39 -35
package/package.json CHANGED
@@ -1,8 +1,41 @@
1
1
  {
2
2
  "name": "openlearn-next",
3
+ "version": "0.1.5",
3
4
  "private": false,
4
- "version": "0.1.4",
5
+ "description": "A plugin-driven Educational OS / LMS platform with AI agent teaching assistant",
6
+ "keywords": [
7
+ "ai-agent",
8
+ "courseware",
9
+ "education",
10
+ "lms",
11
+ "openlearn",
12
+ "plugin",
13
+ "teaching",
14
+ "whiteboard"
15
+ ],
16
+ "license": "MIT",
17
+ "author": "OpenLearn Team",
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "https://github.com/openlearn/openlearnv2"
21
+ },
22
+ "bin": {
23
+ "openlearn-next": "cli.mjs"
24
+ },
25
+ "files": [
26
+ "dist/index.html",
27
+ "dist/server.cjs",
28
+ "dist/assets/",
29
+ "dist/plugins/",
30
+ "cli.mjs",
31
+ "package.json",
32
+ "README.md"
33
+ ],
5
34
  "type": "module",
35
+ "publishConfig": {
36
+ "access": "public",
37
+ "registry": "https://registry.npmjs.org/"
38
+ },
6
39
  "scripts": {
7
40
  "dev": "npx tsx --no-cache server.ts",
8
41
  "build": "vite build && node scripts/build-plugins.mjs && esbuild server.ts --bundle --platform=node --format=cjs --packages=external --sourcemap --outfile=dist/server.cjs",
@@ -47,13 +80,14 @@
47
80
  "socket.io": "^4.8.3",
48
81
  "socket.io-client": "^4.8.3",
49
82
  "uuid": "^14.0.0",
83
+ "vite": "^6.2.3",
50
84
  "xlsx": "^0.18.5",
51
85
  "xss": "^1.0.15",
52
86
  "zod": "^4.4.3",
53
- "zustand": "^5.0.14",
54
- "vite": "^6.2.3"
87
+ "zustand": "^5.0.14"
55
88
  },
56
89
  "devDependencies": {
90
+ "@tailwindcss/vite": "^4.1.14",
57
91
  "@types/bcryptjs": "^2.4.6",
58
92
  "@types/better-sqlite3": "^7.6.13",
59
93
  "@types/express": "^4.17.21",
@@ -63,6 +97,7 @@
63
97
  "@types/xlsx": "^0.0.35",
64
98
  "@typescript-eslint/eslint-plugin": "^8.62.0",
65
99
  "@typescript-eslint/parser": "^8.62.0",
100
+ "@vitejs/plugin-react": "^5.0.4",
66
101
  "autoprefixer": "^10.4.21",
67
102
  "esbuild": "^0.25.0",
68
103
  "eslint": "^10.5.0",
@@ -73,37 +108,6 @@
73
108
  "tailwindcss": "^4.1.14",
74
109
  "tsx": "^4.21.0",
75
110
  "typescript": "~5.8.2",
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"
111
+ "vitest": "^4.1.9"
108
112
  }
109
113
  }