package.jsonā¢1.53 kB
{
"name": "worksona-mcp-server",
"version": "2.5.3",
"description": "MCP server for Worksona agent integration with Claude Desktop",
"main": "dist/index.js",
"bin": {
"worksona-mcp-server": "dist/index.js"
},
"files": [
"dist/",
"agents/",
"README.md",
"QUICK_START.md"
],
"scripts": {
"build": "tsc && npm run copy-resources",
"copy-resources": "rsync -av resources/ dist/resources/",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"watch": "nodemon --exec ts-node src/index.ts",
"test": "jest",
"lint": "eslint src/**/*.ts",
"clean": "rm -rf dist",
"setup": "npm install && npm run build",
"prepublishOnly": "npm run clean && npm run build",
"site:generate": "node generate-site-data.js",
"site:build": "./build-site.sh",
"site:build:dist": "./build-site.sh --dist",
"site:serve": "npx http-server site -p 8080 -o"
},
"dependencies": {
"@types/node": "^20.10.0",
"glob": "^10.3.10",
"yaml": "^2.3.4",
"fs-extra": "^11.2.0",
"chalk": "^4.1.2"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/fs-extra": "^11.0.4",
"typescript": "^5.3.0",
"ts-node": "^10.9.0",
"nodemon": "^3.0.0",
"eslint": "^8.55.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0"
},
"keywords": [
"mcp",
"claude",
"worksona",
"agents",
"ai",
"automation"
],
"author": "Worksona MCP Server",
"license": "MIT"
}