@lucern/mcp 0.2.0-alpha.1 → 0.2.0-alpha.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@lucern/mcp",
3
- "version": "0.2.0-alpha.1",
4
- "description": "Lucern standalone MCP server pack-aware with per-user auth",
3
+ "version": "0.2.0-alpha.3",
4
+ "description": "Lucern standalone MCP server \u2014 pack-aware with per-user auth",
5
5
  "license": "UNLICENSED",
6
6
  "type": "module",
7
7
  "main": "./dist/index.js",
@@ -21,6 +21,14 @@
21
21
  "./cli": {
22
22
  "types": "./dist/cli.d.ts",
23
23
  "import": "./dist/cli.js"
24
+ },
25
+ "./runtime": {
26
+ "types": "./dist/runtime.d.ts",
27
+ "import": "./dist/runtime.js"
28
+ },
29
+ "./gateway": {
30
+ "types": "./dist/gateway.d.ts",
31
+ "import": "./dist/gateway.js"
24
32
  }
25
33
  },
26
34
  "bin": {
@@ -31,14 +39,21 @@
31
39
  "node": ">=18.0.0"
32
40
  },
33
41
  "scripts": {
34
- "build": "tsup",
42
+ "build": "bash -lc 'cd ../.. && npx tsx scripts/build-mcp-package.ts'",
35
43
  "pack:dry-run": "tsx ../../scripts/mcp-package-pack-check.ts",
44
+ "prepack": "npm run build",
36
45
  "typecheck": "tsc --project tsconfig.json --noEmit"
37
46
  },
38
47
  "dependencies": {
48
+ "@lucern/contracts": "workspace:*",
49
+ "@lucern/sdk": "workspace:*",
50
+ "@lucern/server-core": "workspace:*",
39
51
  "@modelcontextprotocol/sdk": "^1.25.1",
40
- "zod": "^3.25.76"
52
+ "zod": "^3.25.76",
53
+ "convex": "^1.17.0",
54
+ "dotenv": "^16.4.5"
41
55
  },
56
+ "peerDependencies": {},
42
57
  "devDependencies": {
43
58
  "tsup": "^8.5.0",
44
59
  "typescript": "^5.7.0"