package.json•1.1 kB
{
"name": "lacylights-mcp",
"version": "1.0.0",
"description": "MCP Server for AI-powered theatrical lighting design",
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix"
},
"keywords": [
"mcp",
"lighting",
"theatrical",
"ai",
"dmx"
],
"author": "",
"license": "MIT",
"dependencies": {
"@apollo/client": "^4.0.6",
"@modelcontextprotocol/sdk": "^1.0.0",
"cross-fetch": "^4.1.0",
"graphql": "^16.9.0",
"openai": "^6.1.0",
"zod": "^4.1.11"
},
"devDependencies": {
"@eslint/js": "^9.37.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.7.0",
"eslint": "^9.37.0",
"globals": "^16.4.0",
"jest": "^30.1.3",
"ts-jest": "^29.2.5",
"tsx": "^4.20.5",
"typescript": "^5.9.3",
"typescript-eslint": "^8.45.0"
},
"engines": {
"node": ">=18.0.0"
}
}