|
| 1 | +{ |
| 2 | + "name": "@loopback/mcp", |
| 3 | + "version": "0.0.1", |
| 4 | + "private": false, |
| 5 | + "description": "A loopback extension that exposes API to MCP Tools.", |
| 6 | + "keywords": [ |
| 7 | + "loopback-extension", |
| 8 | + "loopback", |
| 9 | + "loopback4", |
| 10 | + "mcp", |
| 11 | + "mcp-tool" |
| 12 | + ], |
| 13 | + "main": "dist/index.js", |
| 14 | + "types": "dist/index.d.ts", |
| 15 | + "engines": { |
| 16 | + "node": ">=20" |
| 17 | + }, |
| 18 | + "scripts": { |
| 19 | + "build": "lb-tsc", |
| 20 | + "build:watch": "lb-tsc --watch", |
| 21 | + "lint": "npm run eslint && npm run prettier:check", |
| 22 | + "lint:fix": "npm run eslint:fix && npm run prettier:fix", |
| 23 | + "prettier:cli": "lb-prettier \"**/*.ts\" \"**/*.js\"", |
| 24 | + "prettier:check": "npm run prettier:cli -- -l", |
| 25 | + "prettier:fix": "npm run prettier:cli -- --write", |
| 26 | + "eslint": "lb-eslint --report-unused-disable-directives .", |
| 27 | + "eslint:fix": "npm run eslint -- --fix", |
| 28 | + "pretest": "npm run rebuild", |
| 29 | + "test": "lb-mocha --allow-console-logs \"dist/__tests__\"", |
| 30 | + "posttest": "npm run lint", |
| 31 | + "test:dev": "lb-mocha --allow-console-logs dist/__tests__/**/*.js && npm run posttest", |
| 32 | + "clean": "lb-clean dist *.tsbuildinfo .eslintcache", |
| 33 | + "rebuild": "npm run clean && npm run build", |
| 34 | + "prepublishOnly": "npm run test" |
| 35 | + }, |
| 36 | + "repository": { |
| 37 | + "type": "git", |
| 38 | + "url": "https://github.com/sourcefuse/loopback4-mcp" |
| 39 | + }, |
| 40 | + "author": "SourceFuse", |
| 41 | + "license": "MIT", |
| 42 | + "files": [ |
| 43 | + "README.md", |
| 44 | + "dist", |
| 45 | + "src", |
| 46 | + "!*/__tests__" |
| 47 | + ], |
| 48 | + "peerDependencies": { |
| 49 | + "@loopback/core": "^7.0.3" |
| 50 | + }, |
| 51 | + "dependencies": { |
| 52 | + "@loopback/rest": "^15.0.7", |
| 53 | + "@modelcontextprotocol/sdk": "^1.24.0", |
| 54 | + "@sourceloop/core": "^20.0.0", |
| 55 | + "tslib": "^2.6.2", |
| 56 | + "zod": "^4.2.1" |
| 57 | + }, |
| 58 | + "devDependencies": { |
| 59 | + "@commitlint/cli": "^17.7.1", |
| 60 | + "@commitlint/config-conventional": "^17.7.0", |
| 61 | + "@loopback/boot": "^8.0.11", |
| 62 | + "@loopback/build": "^12.0.3", |
| 63 | + "@loopback/core": "^7.0.3", |
| 64 | + "@loopback/eslint-config": "^16.0.1", |
| 65 | + "@loopback/repository": "^8.0.10", |
| 66 | + "@loopback/rest-explorer": "^8.0.11", |
| 67 | + "@loopback/service-proxy": "^8.0.10", |
| 68 | + "@loopback/testlab": "^8.0.3", |
| 69 | + "@semantic-release/changelog": "^6.0.1", |
| 70 | + "@semantic-release/commit-analyzer": "^9.0.2", |
| 71 | + "@semantic-release/git": "^10.0.1", |
| 72 | + "@semantic-release/npm": "^13.1.3", |
| 73 | + "@semantic-release/release-notes-generator": "^10.0.3", |
| 74 | + "@types/jsonwebtoken": "^9.0.10", |
| 75 | + "@types/node": "^16.18.126", |
| 76 | + "commitizen": "^4.2.4", |
| 77 | + "cz-conventional-changelog": "^3.3.0", |
| 78 | + "cz-customizable": "^6.3.0", |
| 79 | + "cz-customizable-ghooks": "^2.0.0", |
| 80 | + "eslint": "^8.57.1", |
| 81 | + "husky": "^7.0.4", |
| 82 | + "loopback4-authentication": "^13.0.4", |
| 83 | + "loopback4-authorization": "^8.1.3", |
| 84 | + "semantic-release": "^25.0.2", |
| 85 | + "source-map-support": "^0.5.21", |
| 86 | + "typescript": "~5.2.2" |
| 87 | + }, |
| 88 | + "overrides": { |
| 89 | + "jws": "3.2.3", |
| 90 | + "node-forge": "1.3.2", |
| 91 | + "qs": "6.14.1" |
| 92 | + }, |
| 93 | + "config": { |
| 94 | + "commitizen": { |
| 95 | + "path": "./node_modules/cz-customizable" |
| 96 | + }, |
| 97 | + "cz-customizable": { |
| 98 | + "config": "./.cz-config.js" |
| 99 | + } |
| 100 | + }, |
| 101 | + "publishConfig": { |
| 102 | + "registry": "https://registry.npmjs.org/", |
| 103 | + "access": "public" |
| 104 | + }, |
| 105 | + "release": { |
| 106 | + "branches": [ |
| 107 | + "master" |
| 108 | + ], |
| 109 | + "plugins": [ |
| 110 | + [ |
| 111 | + "@semantic-release/commit-analyzer", |
| 112 | + { |
| 113 | + "preset": "angular", |
| 114 | + "releaseRules": [ |
| 115 | + { |
| 116 | + "type": "chore", |
| 117 | + "scope": "deps", |
| 118 | + "release": "patch" |
| 119 | + } |
| 120 | + ] |
| 121 | + } |
| 122 | + ], |
| 123 | + "@semantic-release/release-notes-generator", |
| 124 | + [ |
| 125 | + "@semantic-release/npm", |
| 126 | + { |
| 127 | + "npmPublish": true, |
| 128 | + "pkgRoot": ".", |
| 129 | + "tarballDir": "dist" |
| 130 | + } |
| 131 | + ], |
| 132 | + [ |
| 133 | + "@semantic-release/git", |
| 134 | + { |
| 135 | + "assets": [ |
| 136 | + "package.json", |
| 137 | + "CHANGELOG.md" |
| 138 | + ], |
| 139 | + "message": "chore(release): ${nextRelease.version} semantic" |
| 140 | + } |
| 141 | + ], |
| 142 | + "@semantic-release/github" |
| 143 | + ], |
| 144 | + "repositoryUrl": "https://github.com/sourcefuse/loopback4-mcp.git" |
| 145 | + } |
| 146 | +} |
0 commit comments