package.json•891 B
{
"name": "phys-mcp",
"version": "0.1.0",
"scripts": {
"build": "node scripts/build.js",
"build:workspace": "npm run build --workspaces",
"dev": "node scripts/dev-all.js",
"test": "node scripts/run-comprehensive-tests.js",
"test:unit": "jest --testPathPattern=test --coverage",
"test:integration": "jest --testPathPattern=integration --coverage",
"test:python": "cd packages/python-worker && python -m pytest tests/ -v",
"test:watch": "jest --watch",
"test:ci": "npm run test:unit && npm run test:python",
"lint": "eslint \"packages/*/src/**/*.{js,ts}\" --fix",
"typecheck": "tsc --noEmit --skipLibCheck"
},
"devDependencies": {
"eslint": "^8.57.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"typescript": "^5.3.3",
"jest": "^29.7.0",
"@jest/globals": "^29.7.0"
}
}