package.jsonβ’2.78 kB
{
"name": "float-mcp",
"version": "1.0.1",
"description": "MCP server for Float.com integration",
"type": "commonjs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "node dist/index.js",
"build": "tsc",
"dev": "ts-node --esm src/index.ts",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:integration": "jest --testPathPattern=integration --passWithNoTests",
"test:integration:mock": "TEST_MOCK_MODE=true TEST_REAL_API=false jest --testPathPattern=integration --passWithNoTests",
"test:integration:real": "TEST_REAL_API=true TEST_MOCK_MODE=false jest --testPathPattern=integration --passWithNoTests",
"test:performance": "TEST_SKIP_SLOW=false jest --testPathPattern=performance --passWithNoTests",
"test:compatibility": "jest --testPathPattern=compatibility --passWithNoTests",
"test:schemas": "jest --testPathPattern=schema --passWithNoTests",
"test:all": "npm run test && npm run test:integration:mock",
"lint": "eslint src tests --ext .ts",
"typecheck": "tsc --noEmit",
"format": "prettier --write src tests",
"clean": "rm -rf dist",
"prepare": "husky",
"changeset": "changeset",
"version": "changeset version",
"release": "npm run build && changeset publish",
"docs:dev": "cd docs/website && npm start",
"docs:build": "cd docs/website && npm run build",
"docs:serve": "cd docs/website && npm run serve",
"docs:deploy": "cd docs/website && npm run deploy",
"docs:install": "cd docs/website && npm install"
},
"keywords": [
"mcp",
"float",
"project-management",
"task-management"
],
"author": "Aaron Sachs",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/asachs01/float-mcp.git"
},
"homepage": "https://github.com/asachs01/float-mcp#readme",
"bugs": {
"url": "https://github.com/asachs01/float-mcp/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.8.0",
"dotenv": "^16.4.5",
"fast-xml-parser": "^5.2.5",
"pino": "^8.19.0",
"zod": "^3.22.4",
"zod-to-json-schema": "^3.24.6"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.24",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.5.2",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=22.0.0"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
}
}