@datagrout/conduit 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.
@@ -0,0 +1,10 @@
1
+ import {
2
+ OAuthTokenProvider,
3
+ deriveTokenEndpoint,
4
+ init_oauth
5
+ } from "./chunk-RED5DKGI.mjs";
6
+ init_oauth();
7
+ export {
8
+ OAuthTokenProvider,
9
+ deriveTokenEndpoint
10
+ };
package/package.json ADDED
@@ -0,0 +1,63 @@
1
+ {
2
+ "name": "@datagrout/conduit",
3
+ "version": "0.1.0",
4
+ "description": "Production-ready MCP client with mTLS, OAuth 2.1, and semantic discovery",
5
+ "main": "./dist/index.js",
6
+ "module": "./dist/index.mjs",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.mjs",
12
+ "require": "./dist/index.js"
13
+ }
14
+ },
15
+ "files": [
16
+ "dist",
17
+ "README.md",
18
+ "LICENSE"
19
+ ],
20
+ "scripts": {
21
+ "build": "tsup src/index.ts --format cjs,esm --dts --clean",
22
+ "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
23
+ "test": "vitest run",
24
+ "test:watch": "vitest",
25
+ "lint": "eslint src --ext .ts",
26
+ "format": "prettier --write \"src/**/*.ts\"",
27
+ "typecheck": "tsc --noEmit"
28
+ },
29
+ "keywords": [
30
+ "mcp",
31
+ "agents",
32
+ "ai",
33
+ "datagrout",
34
+ "llm",
35
+ "model-context-protocol"
36
+ ],
37
+ "author": "DataGrout <hello@datagrout.ai>",
38
+ "license": "MIT",
39
+ "repository": {
40
+ "type": "git",
41
+ "url": "https://github.com/DataGrout/conduit-sdk"
42
+ },
43
+ "homepage": "https://github.com/DataGrout/conduit-sdk",
44
+ "bugs": {
45
+ "url": "https://github.com/DataGrout/conduit-sdk/issues"
46
+ },
47
+ "dependencies": {
48
+ "@modelcontextprotocol/sdk": "^1.0.0"
49
+ },
50
+ "devDependencies": {
51
+ "@types/node": "^20.11.0",
52
+ "@typescript-eslint/eslint-plugin": "^6.19.0",
53
+ "@typescript-eslint/parser": "^6.19.0",
54
+ "eslint": "^8.56.0",
55
+ "prettier": "^3.2.4",
56
+ "tsup": "^8.0.1",
57
+ "typescript": "^5.3.3",
58
+ "vitest": "^1.2.0"
59
+ },
60
+ "engines": {
61
+ "node": ">=18"
62
+ }
63
+ }