-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "@theorvane/examples",
"version": "0.1.0",
"private": true,
"description": "Runnable read-only Petstore TypeMCP HTTP and TypeChain agent example.",
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"audit:prod": "npm audit --omit=dev --audit-level=low",
"build": "tsc --noEmit",
"check": "npm run format:check && npm run build && npm test && npm run audit:prod",
"format": "biome format --write .",
"format:check": "biome format .",
"lint": "biome check .",
"test": "vitest run",
"example:petstore:live": "tsx examples/petstore-live.ts",
"example:petstore:mcp:fixture": "tsx examples/petstore-mcp-fixture.ts",
"example:petstore:mcp-agent:fixture": "tsx examples/typechain-petstore-mcp-agent-fixture.ts"
},
"dependencies": {
"@langchain/core": "^1.2.3",
"@theorvane/type-chain": "^0.1.1",
"@theorvane/type-mcp": "^0.2.2",
"langchain": "^1.5.4",
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "^2.4.4",
"@types/node": "^22.15.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
}
}