-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.04 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.04 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
{
"name": "@stakpak/mcp",
"version": "0.0.3",
"description": "An MCP server that connects to Stakpak",
"module": "index.ts",
"bin": {
"@stakpak/mcp": "./build/index.js"
},
"files": [
"build"
],
"type": "module",
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"check": "bunx biome check --write .",
"start": "node build/index.js",
"bump": "npm version patch --no-git-tag-version",
"prepublishOnly": "bun check && npm run build && npm run bump",
"push": "npm run build && npm publish"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.6.1",
"posthog-node": "^4.10.1",
"zod": "^3.24.2"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "^1.2.4",
"@types/node": "^22.13.9",
"typescript": "^5.8.2"
},
"author": "stakpak",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/stakpak/mcp"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
}
}