-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.42 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.42 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
50
51
52
53
54
55
56
57
58
{
"name": "@mcpambassador/client",
"version": "0.8.0-beta.2",
"description": "MCP Ambassador Client - Lightweight HTTP/MCP proxy for developer workstations",
"type": "module",
"bin": {
"mcpambassador-client": "./dist/cli.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.{ts,json,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,json,md}\""
},
"keywords": [
"mcp",
"ambassador",
"proxy",
"client"
],
"author": "MCP Ambassador Team",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/mcpambassador/client.git"
},
"homepage": "https://github.com/mcpambassador/client#readme",
"bugs": {
"url": "https://github.com/mcpambassador/client/issues"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.2.4",
"typescript": "^5.3.3",
"vitest": "^1.2.1"
},
"files": [
"dist",
"README.md"
],
"publishConfig": {
"access": "public"
}
}