-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.38 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.38 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
59
60
61
62
63
64
65
{
"name": "@unleash/mcp",
"version": "0.3.0-beta.1",
"mcpName": "io.getunleash/unleash-mcp",
"description": "MCP server for managing Unleash feature flags",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./server": {
"import": "./dist/server.js",
"types": "./dist/server.d.ts"
},
"./remote": {
"import": "./dist/remote.js",
"types": "./dist/remote.d.ts"
}
},
"bin": {
"unleash-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"test": "vitest run --passWithNoTests",
"prepack": "npm run build"
},
"keywords": [
"mcp",
"unleash",
"feature-flags"
],
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"dotenv": "^16.4.7",
"zod": "^3.24.1"
},
"devDependencies": {
"@biomejs/biome": "2.3.8",
"@types/express": "^5.0.6",
"@types/node": "^22.10.2",
"@types/supertest": "^6.0.3",
"express": "^5.2.1",
"supertest": "^7.2.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20"
}
}