@mitralab.io/sdk-core 0.1.0 → 0.2.0-beta.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/CHANGELOG.md +51 -0
- package/README.md +203 -11
- package/contracts/README.md +40 -11
- package/contracts/manifest.json +10 -1
- package/contracts/v0.2.0-beta.0/mcp-alpha-tools.json +1409 -0
- package/contracts/v0.2.0-beta.0/mcp-tool-parity.json +818 -0
- package/contracts/v0.2.0-beta.0/sdk-parity.json +2563 -0
- package/dist/index.cjs +3467 -192
- package/dist/index.d.cts +1660 -12
- package/dist/index.d.ts +1660 -12
- package/dist/index.js +3439 -191
- package/package.json +7 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mitralab.io/sdk-core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0-beta.0",
|
|
4
4
|
"description": "Environment-neutral contracts and modules shared by Mitra JavaScript SDKs",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -40,6 +40,7 @@
|
|
|
40
40
|
"test:watch": "vitest",
|
|
41
41
|
"check:exports": "node scripts/check-exports.mjs",
|
|
42
42
|
"check:contracts": "node scripts/check-contracts.mjs",
|
|
43
|
+
"snapshot:mcp": "node scripts/snapshot-mcp-tools.mjs",
|
|
43
44
|
"pack:check": "npm pack --dry-run",
|
|
44
45
|
"smoke:package": "node scripts/smoke-package.mjs",
|
|
45
46
|
"check": "npm run format:check && npm run lint && npm run typecheck && npm test && npm run build && npm run check:exports && npm run check:contracts && npm run pack:check && npm run smoke:package",
|
|
@@ -69,14 +70,16 @@
|
|
|
69
70
|
"@types/node": "^22.15.0",
|
|
70
71
|
"@vitest/coverage-v8": "^3.2.4",
|
|
71
72
|
"eslint": "^9.39.1",
|
|
72
|
-
"globals": "^
|
|
73
|
+
"globals": "^17.11.0",
|
|
73
74
|
"prettier": "^3.8.1",
|
|
74
75
|
"tsup": "^8.5.1",
|
|
75
76
|
"typescript": "~5.9.3",
|
|
76
|
-
"typescript-eslint": "
|
|
77
|
+
"typescript-eslint": "~8.55.0",
|
|
78
|
+
"vite": "~6.4.3",
|
|
77
79
|
"vitest": "^3.2.4"
|
|
78
80
|
},
|
|
79
81
|
"overrides": {
|
|
80
|
-
"esbuild": "^0.25.0"
|
|
82
|
+
"esbuild": "^0.25.0",
|
|
83
|
+
"test-exclude": "7.0.1"
|
|
81
84
|
}
|
|
82
85
|
}
|