mcp-freescout/package.json
dependabot[bot] 49bbe08557
chore(deps): bump the npm-version-updates group across 1 directory with 6 updates
Bumps the npm-version-updates group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [zod](https://github.com/colinhacks/zod) | `4.3.6` | `4.4.1` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `25.0.3` | `25.6.0` |
| [eslint](https://github.com/eslint/eslint) | `9.39.2` | `10.2.1` |
| [prettier](https://github.com/prettier/prettier) | `3.7.4` | `3.8.3` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.9.3` | `6.0.3` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.59.0` | `8.59.1` |



Updates `zod` from 4.3.6 to 4.4.1
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Commits](https://github.com/colinhacks/zod/compare/v4.3.6...v4.4.1)

Updates `@types/node` from 25.0.3 to 25.6.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `eslint` from 9.39.2 to 10.2.1
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](https://github.com/eslint/eslint/compare/v9.39.2...v10.2.1)

Updates `prettier` from 3.7.4 to 3.8.3
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](https://github.com/prettier/prettier/compare/3.7.4...3.8.3)

Updates `typescript` from 5.9.3 to 6.0.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](https://github.com/microsoft/TypeScript/compare/v5.9.3...v6.0.3)

Updates `typescript-eslint` from 8.59.0 to 8.59.1
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.59.1/packages/typescript-eslint)

---
updated-dependencies:
- dependency-name: zod
  dependency-version: 4.4.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-version-updates
- dependency-name: "@types/node"
  dependency-version: 25.6.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-version-updates
- dependency-name: eslint
  dependency-version: 10.2.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-version-updates
- dependency-name: prettier
  dependency-version: 3.8.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-version-updates
- dependency-name: typescript
  dependency-version: 6.0.3
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: npm-version-updates
- dependency-name: typescript-eslint
  dependency-version: 8.59.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-version-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-04-30 16:56:42 +00:00

64 lines
1.6 KiB
JSON

{
"name": "@verygoodplugins/mcp-freescout",
"version": "2.1.1",
"description": "MCP server for FreeScout ticket management and workflow automation",
"main": "dist/index.js",
"type": "module",
"mcpName": "io.github.verygoodplugins/mcp-freescout",
"bin": {
"mcp-freescout": "dist/index.js"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"test": "jest --testPathIgnorePatterns=integration",
"test:integration": "jest --testPathPattern=integration",
"test:all": "jest",
"lint": "eslint src/",
"format": "prettier --write src/**/*.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"mcp-server",
"modelcontextprotocol",
"freescout",
"helpdesk",
"ticket-management",
"workflow-automation"
],
"author": "Very Good Plugins",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/verygoodplugins/mcp-freescout.git"
},
"homepage": "https://github.com/verygoodplugins/mcp-freescout#readme",
"bugs": {
"url": "https://github.com/verygoodplugins/mcp-freescout/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.1",
"dotenv": "^17.2.3",
"zod": "^4.3.5"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/jest": "^30.0.0",
"@types/node": "^25.0.3",
"eslint": "^10.2.1",
"jest": "^30.3.0",
"prettier": "^3.1.0",
"ts-jest": "^29.4.6",
"tsx": "^4.6.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.0.0"
}
}