package.jsonโข1.8 kB
{
"name": "mcp-wtit",
"version": "0.1.2",
"description": "A Model Context Protocol (MCP) server that provides current time in ISO8601 format with timezone support",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"mcp-wtit": "./dist/index.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"inspect": "npx -y @modelcontextprotocol/inspector node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"prepublishOnly": "npm run lint && npm run typecheck && npm run test && npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"time-server",
"iso8601"
],
"repository": {
"type": "git",
"url": "git+https://github.com/yorifuji/mcp-wtit.git"
},
"bugs": {
"url": "https://github.com/yorifuji/mcp-wtit/issues"
},
"homepage": "https://github.com/yorifuji/mcp-wtit#readme",
"author": "yorifuji",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.15.1"
},
"devDependencies": {
"@eslint/js": "^9.31.0",
"@types/node": "^24.0.13",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.0.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"typescript-eslint": "^8.36.0",
"vitest": "^3.2.4"
},
"files": [
"dist/**/*"
],
"engines": {
"node": ">=18.0.0"
}
}