-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.28 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.28 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
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "@speakeasy-api/speakeasy-client-sdk-typescript",
"version": "5.0.0-rc.5",
"author": "Speakeasy",
"bin": {
"mcp": "bin/mcp-server.js"
},
"main": "./index.js",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/speakeasy-api/speakeasy-client-sdk-typescript.git",
"directory": "."
},
"scripts": {
"lint": "eslint --cache --max-warnings=0 src",
"build:mcp": "bun src/mcp-server/build.mts",
"build": "npm run build:mcp && tsc",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"@tanstack/react-query": "^5",
"react": "^18 || ^19",
"react-dom": "^18 || ^19"
},
"peerDependenciesMeta": {
"@tanstack/react-query": {"optional":true},
"react": {"optional":true},
"react-dom": {"optional":true}
},
"devDependencies": {
"@eslint/js": "^9.26.0",
"@stricli/core": "^1.1.1",
"@tanstack/react-query": "^5.61.4",
"@types/express": "^4.17.21",
"@types/react": "^18.3.12",
"bun": "1.2.17",
"bun-types": "1.2.17",
"eslint": "^9.26.0",
"express": "^4.21.2",
"globals": "^15.14.0",
"typescript": "~5.8.3",
"typescript-eslint": "^8.26.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"zod": "^3.25.0 || ^4.0.0"
}
}