|
| 1 | +{ |
| 2 | + "name": "isaacus-mcp", |
| 3 | + "version": "0.4.0", |
| 4 | + "description": "The official MCP Server for the Isaacus API", |
| 5 | + "author": "Isaacus <[email protected]>", |
| 6 | + "types": "dist/index.d.ts", |
| 7 | + "main": "dist/index.js", |
| 8 | + "type": "commonjs", |
| 9 | + "repository": "github:isaacus-dev/isaacus-typescript", |
| 10 | + "license": "Apache-2.0", |
| 11 | + "packageManager": "[email protected]", |
| 12 | + "private": false, |
| 13 | + "scripts": { |
| 14 | + "test": "echo 'no tests defined yet' && exit 1", |
| 15 | + "build": "bash ./build", |
| 16 | + "prepack": "echo 'to pack, run yarn build && (cd dist; yarn pack)' && exit 1", |
| 17 | + "prepublishOnly": "echo 'to publish, run yarn build && (cd dist; yarn publish)' && exit 1", |
| 18 | + "format": "prettier --write --cache --cache-strategy metadata . !dist", |
| 19 | + "prepare": "npm run build", |
| 20 | + "tsn": "ts-node -r tsconfig-paths/register", |
| 21 | + "lint": "eslint --ext ts,js .", |
| 22 | + "fix": "eslint --fix --ext ts,js ." |
| 23 | + }, |
| 24 | + "dependencies": { |
| 25 | + "isaacus": "file:../../dist/", |
| 26 | + "@modelcontextprotocol/sdk": "^1.6.1" |
| 27 | + }, |
| 28 | + "bin": { |
| 29 | + "mcp-server": "dist/index.js" |
| 30 | + }, |
| 31 | + "devDependencies": { |
| 32 | + "@types/jest": "^29.4.0", |
| 33 | + "@typescript-eslint/eslint-plugin": "^6.7.0", |
| 34 | + "@typescript-eslint/parser": "^6.7.0", |
| 35 | + "eslint": "^8.49.0", |
| 36 | + "eslint-plugin-prettier": "^5.0.1", |
| 37 | + "eslint-plugin-unused-imports": "^3.0.0", |
| 38 | + "jest": "^29.4.0", |
| 39 | + "prettier": "^3.0.0", |
| 40 | + "ts-jest": "^29.1.0", |
| 41 | + "ts-morph": "^19.0.0", |
| 42 | + "ts-node": "^10.5.0", |
| 43 | + "tsc-multi": "^1.1.0", |
| 44 | + "tsconfig-paths": "^4.0.0", |
| 45 | + "typescript": "^4.8.2" |
| 46 | + }, |
| 47 | + "imports": { |
| 48 | + "isaacus-mcp": ".", |
| 49 | + "isaacus-mcp/*": "./src/*" |
| 50 | + }, |
| 51 | + "exports": { |
| 52 | + ".": { |
| 53 | + "require": { |
| 54 | + "types": "./dist/index.d.ts", |
| 55 | + "default": "./dist/index.js" |
| 56 | + }, |
| 57 | + "types": "./dist/index.d.mts", |
| 58 | + "default": "./dist/index.mjs" |
| 59 | + }, |
| 60 | + "./*.mjs": { |
| 61 | + "types": "./dist/*.d.ts", |
| 62 | + "default": "./dist/*.mjs" |
| 63 | + }, |
| 64 | + "./*.js": { |
| 65 | + "types": "./dist/*.d.ts", |
| 66 | + "default": "./dist/*.js" |
| 67 | + }, |
| 68 | + "./*": { |
| 69 | + "types": "./dist/*.d.ts", |
| 70 | + "require": "./dist/*.js", |
| 71 | + "default": "./dist/*.mjs" |
| 72 | + } |
| 73 | + } |
| 74 | +} |
0 commit comments