package.json•1.95 kB
{
"name": "first-mcp-server",
"version": "0.1.0",
"private": true,
"description": "My first MCP server",
"main": "dist/index.js",
"files": ["dist"],
"scripts": {
"start": "node dist/index.js",
"start:dev": "ts-node -P ./tsconfig.json src/index.ts",
"build": "npm run type-check && tsup",
"type-check": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint ./src/**/*.ts ./test/**/*.ts",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write ./src/**/*.ts ./test/**/*.ts",
"audit:fix": "npm audit fix",
"audit:check": "npx audit-ci --config ./audit-ci.jsonc",
"dep:check": "npx --no-install ncu -e 2",
"dep:update": "npx --no-install ncu -u",
"release": "npx standard-version --no-verify --releaseCommitMessageFormat 'chore(release): {{currentTag}} [skip ci]'",
"snapshot": "npx standard-version --no-verify --skip.changelog --prerelease snapshot --releaseCommitMessageFormat 'chore(snapshot): {{currentTag}}'",
"prepare": "husky || true"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^24.0.13",
"@typescript-eslint/eslint-plugin": "8.36.0",
"@typescript-eslint/parser": "8.36.0",
"eslint": "9.31.0",
"eslint-config-prettier": "10.1.5",
"jest": "^30.0.4",
"prettier": "3.6.2",
"ts-jest": "29.4.0",
"ts-node": "10.9.2",
"tsup": "8.5.0",
"typescript": "^5.8.3",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"audit-ci": "7.1.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"npm-check-updates": "18.0.1",
"standard-version": "^9.5.0"
},
"lint-staged": {
"./src/*.ts": [
"eslint --fix",
"prettier --write --ignore-unknown"
],
"./test/*.ts": [
"eslint --fix",
"prettier --write --ignore-unknown"
]
}
}