-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.97 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.97 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
66
67
68
69
70
71
72
73
{
"name": "ibmi-mcp-monorepo",
"version": "0.5.1",
"description": "IBM i MCP Server - Monorepo containing server, tools, agents, and deployment configurations",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/IBM/ibmi-mcp-server.git"
},
"bugs": {
"url": "https://github.com/IBM/ibmi-mcp-server.git/issues"
},
"homepage": "https://github.com/IBM/ibmi-mcp-server.git#readme",
"scripts": {
"build": "npm run build -w @ibm/ibmi-mcp-server && npm run build -w @ibm/ibmi-cli",
"build:link": "npm run build && npm link -w @ibm/ibmi-mcp-server -w @ibm/ibmi-cli",
"rebuild": "npm run rebuild --workspaces --if-present",
"start": "npx ibmi-mcp-server --transport stdio",
"start:http": "npx ibmi-mcp-server --transport http",
"start:stdio": "npx ibmi-mcp-server --transport stdio",
"test": "npm test --workspaces --if-present",
"test:watch": "npm run test:watch -w @ibm/ibmi-mcp-server",
"test:coverage": "npm run test:coverage -w @ibm/ibmi-mcp-server",
"lint": "npm run lint --workspaces --if-present",
"typecheck": "npm run typecheck --workspaces --if-present",
"format": "npm run format -w @ibm/ibmi-mcp-server",
"validate": "tsx scripts/validate-config.ts",
"inspector": "npx @modelcontextprotocol/inspector@0.15.0 --config mcp.json --server default-server",
"docker:up": "cd apps/docker && docker-compose up -d",
"docker:down": "cd apps/docker && docker-compose down",
"docker:logs": "cd apps/docker && docker-compose logs -f",
"list-toolsets": "npm run list-toolsets -w @ibm/ibmi-mcp-server -- --tools ../../tools",
"sync-versions": "node scripts/sync-workspace-versions.mjs",
"release": "standard-version && npm run sync-versions",
"release:minor": "standard-version --release-as minor && npm run sync-versions",
"release:major": "standard-version --release-as major && npm run sync-versions",
"release:patch": "standard-version --release-as patch && npm run sync-versions",
"release:first": "standard-version --first-release && npm run sync-versions",
"release:prepare": "./scripts/release-prepare.sh",
"release:prepare:patch": "./scripts/release-prepare.sh patch",
"release:prepare:minor": "./scripts/release-prepare.sh minor",
"release:prepare:major": "./scripts/release-prepare.sh major",
"release:finalize": "./scripts/release-finalize.sh",
"release:undo": "./scripts/release-undo.sh"
},
"keywords": [
"ibm-i",
"mcp",
"model-context-protocol",
"sql",
"agents",
"monorepo",
"typescript",
"mcp-server"
],
"author": "ajshedivy <adam.shedivy@ibm.com> (https://github.com/ajshedivy/ibmi-mcp-server#readme)",
"license": "Apache-2.0",
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"ajv": "^8.12.0",
"dotenv": "^16.6.1",
"js-yaml": "^4.1.0",
"standard-version": "^9.5.0",
"tsx": "^4.20.4"
}
}