package.json•992 B
{
"name": "@nurture-tech/unity-mcp-server",
"version": "0.3.1",
"description": "A Model Context Protocol server for Unity",
"repository": "github:nurture-tech/unity-mcp",
"license": "MIT",
"author": {
"name": "Nurture",
"url": "https://nurture.is"
},
"private": true,
"scripts": {
"prepare": "husky",
"lint-staged": "lint-staged",
"commitlint": "commitlint"
},
"workspaces": [
"packages/node-runner"
],
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/js": "^9.29.0",
"@types/node": "^24.0.4",
"eslint": "^9.29.0",
"eslint-config-prettier": "^10.1.5",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"prettier": "^3.6.2"
},
"volta": {
"node": "22.17.0"
},
"lint-staged": {
"*.{js, jsx,ts,tsx}": [
"eslint --quiet --fix"
],
"*.{json,js,ts,jsx,tsx,html,md,yml,yaml}": [
"prettier --write --ignore-unknown"
]
}
}