Skip to content

Commit e5c5ca9

Browse files
committed
Initialize project
1 parent e8d31d1 commit e5c5ca9

File tree

4 files changed

+73
-0
lines changed

4 files changed

+73
-0
lines changed

package-lock.json

Lines changed: 29 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"name": "langchain-mcp-integration",
3+
"version": "1.0.0",
4+
"description": "LangChain integration with MCP tools.",
5+
"main": "dist/index.js",
6+
"types": "dist/index.d.ts",
7+
"files": [
8+
"/dist"
9+
],
10+
"scripts": {
11+
"build": "tsc",
12+
"publish-lib": "npm run build && npm publish",
13+
"publish-dryrun": "npm run build && npm publish --dry-run"
14+
},
15+
"repository": {
16+
"type": "git",
17+
"url": "git+https://github.com/lambdaworks/langchain-mcp-integration.git"
18+
},
19+
"keywords": [
20+
"TypeScript",
21+
"MCP",
22+
"LangChain"
23+
],
24+
"author": "LambdaWorks <admin@lambdaworks.io> (https://www.lambdaworks.io)",
25+
"license": "Apache-2.0",
26+
"bugs": {
27+
"url": "https://github.com/lambdaworks/langchain-mcp-integration/issues"
28+
},
29+
"homepage": "https://github.com/lambdaworks/langchain-mcp-integration#readme",
30+
"devDependencies": {
31+
"typescript": "5.7.3"
32+
}
33+
}

src/index.ts

Whitespace-only changes.

tsconfig.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"compilerOptions": {
3+
"module": "commonjs",
4+
"target": "es2019",
5+
"declaration": true,
6+
"outDir": "./dist"
7+
},
8+
"include": [
9+
"src/**/*"
10+
]
11+
}

0 commit comments

Comments
 (0)