@kya-os/mcp-i 0.1.0-alpha.3.0 → 0.1.0-alpha.3.1

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/dist/esm/index.js CHANGED
@@ -16,7 +16,7 @@ import { loadIdentityFromEnv, showVercelDeveloperInstructions } from './vercel-a
16
16
  // Re-export types and utilities
17
17
  export * from './types.js';
18
18
  export * from './vercel-adapter.js';
19
- export { RegistryFactory, REGISTRY_TIERS, resolveRegistries } from './registry.js';
19
+ export { RegistryFactory, REGISTRY_TIERS, resolveRegistries } from './registry/index.js';
20
20
  export { LoggerFactory, ConsoleLogger, SilentLogger } from './logger.js';
21
21
  export { StorageFactory, MemoryStorage, FileStorage } from './storage.js';
22
22
  export { TransportFactory, RuntimeDetector } from './transport.js';
@@ -0,0 +1 @@
1
+ {"type":"module"}
package/package.json CHANGED
@@ -1,36 +1,37 @@
1
1
  {
2
2
  "name": "@kya-os/mcp-i",
3
- "version": "0.1.0-alpha.3.0",
3
+ "version": "0.1.0-alpha.3.1",
4
4
  "description": "COMING SOON:Production-ready MCP Identity with automatic registration, key rotation, and optimized performance",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",
7
7
  "types": "dist/cjs/index.d.ts",
8
8
  "exports": {
9
9
  ".": {
10
- "types": "./dist/cjs/index.d.ts",
11
10
  "import": "./dist/esm/index.js",
12
- "require": "./dist/cjs/index.js"
11
+ "require": "./dist/cjs/index.js",
12
+ "types": "./dist/cjs/index.d.ts"
13
13
  },
14
14
  "./auto": {
15
- "types": "./dist/cjs/auto.d.ts",
16
15
  "import": "./dist/esm/auto.js",
17
- "require": "./dist/cjs/auto.js"
16
+ "require": "./dist/cjs/auto.js",
17
+ "types": "./dist/cjs/auto.d.ts"
18
18
  },
19
19
  "./registry": {
20
- "types": "./dist/cjs/registry/index.d.ts",
21
20
  "import": "./dist/esm/registry/index.js",
22
- "require": "./dist/cjs/registry/index.js"
21
+ "require": "./dist/cjs/registry/index.js",
22
+ "types": "./dist/cjs/registry/index.d.ts"
23
23
  },
24
24
  "./nextjs": {
25
- "types": "./dist/cjs/nextjs.d.ts",
26
25
  "import": "./dist/esm/nextjs.js",
27
- "require": "./dist/cjs/nextjs.js"
26
+ "require": "./dist/cjs/nextjs.js",
27
+ "types": "./dist/cjs/nextjs.d.ts"
28
28
  },
29
29
  "./vercel": {
30
- "types": "./dist/cjs/vercel-adapter.d.ts",
31
30
  "import": "./dist/esm/vercel-adapter.js",
32
- "require": "./dist/cjs/vercel-adapter.js"
33
- }
31
+ "require": "./dist/cjs/vercel-adapter.js",
32
+ "types": "./dist/cjs/vercel-adapter.d.ts"
33
+ },
34
+ "./package.json": "./package.json"
34
35
  },
35
36
  "files": [
36
37
  "dist",
@@ -38,10 +39,11 @@
38
39
  "LICENSE"
39
40
  ],
40
41
  "scripts": {
41
- "build": "npm run build:cjs && npm run build:esm && npm run fix:esm",
42
+ "build": "npm run build:cjs && npm run build:esm && npm run fix:esm && npm run add:esm-marker",
42
43
  "build:cjs": "tsc -p tsconfig.prod.json",
43
44
  "build:esm": "tsc -p tsconfig.esm.json",
44
45
  "fix:esm": "node scripts/fix-esm-imports.js",
46
+ "add:esm-marker": "echo '{\"type\":\"module\"}' > dist/esm/package.json",
45
47
  "build:dev": "tsc",
46
48
  "clean": "rm -rf dist",
47
49
  "test": "vitest",