package.json•2.26 kB
{
"name": "@wenbopan/things-mcp",
"version": "1.0.0",
"description": "MCP server for Things.app integration on macOS",
"main": "./build/src/index.js",
"type": "module",
"bin": {
"things-mcp": "./build/src/index.js"
},
"scripts": {
"build": "tsc && chmod +x build/src/index.js",
"dev": "tsc --watch",
"start": "node build/src/index.js",
"inspector": "npm run build && npx @modelcontextprotocol/inspector build/src/index.js",
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"test:watch": "jest --watch",
"test:applescript": "npm run build && node build/tests/run-applescript-tests.js",
"test:applescript:basic": "npm run build && node build/tests/run-applescript-tests.js --basic",
"test:applescript:todos": "npm run build && node build/tests/run-applescript-tests.js --todos",
"test:applescript:projects": "npm run build && node build/tests/run-applescript-tests.js --projects",
"test:applescript:complex": "npm run build && node build/tests/run-applescript-tests.js --complex",
"test:applescript:areas": "npm run build && node build/tests/applescript-areas-tags.js",
"lint": "eslint src/**/*.ts tests/**/*.ts",
"lint:fix": "eslint src/**/*.ts tests/**/*.ts --fix",
"format": "prettier --write src/**/*.ts tests/**/*.ts",
"format:check": "prettier --check src/**/*.ts tests/**/*.ts",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,js}": [
"eslint --fix",
"prettier --write"
]
},
"keywords": [
"mcp",
"things",
"macos",
"task-management"
],
"author": "panwenbo",
"license": "MIT",
"files": [
"build"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"zod": "^3.25.56"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.30",
"@typescript-eslint/eslint-plugin": "^8.33.1",
"@typescript-eslint/parser": "^8.33.1",
"eslint": "^9.28.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^16.1.0",
"prettier": "^3.5.3",
"semantic-release": "^24.2.5",
"ts-jest": "^29.3.4",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
}
}