package.json•2.37 kB
{
"name": "stampchain-mcp",
"version": "0.2.0",
"description": "MCP server for interacting with Bitcoin Stamps and SRC-20 token data via Stampchain API for MCP-compatible clients",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc -p tsconfig.build.json && cp package.json dist/",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"test:ci": "vitest run --coverage",
"test:ui": "vitest --ui",
"test:unit": "vitest run src/__tests__/unit",
"test:integration": "vitest run src/__tests__/integration",
"test:api": "vitest run src/__tests__/api",
"test:tools": "vitest run src/__tests__/tools",
"test:schemas": "vitest run src/__tests__/schemas",
"lint": "echo 'Linting disabled - using TypeScript strict mode + Prettier'",
"lint:fix": "npm run format",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,md}\"",
"typecheck": "tsc --noEmit",
"validate-schema": "node scripts/validate-api-schema.js",
"validate": "npm run validate-schema && npm run typecheck && npm run format:check && npm run test",
"prepare": "husky",
"setup": "npm install && npm run build && npm run setup:claude",
"setup:claude": "node scripts/setup-claude-desktop.js",
"postinstall": "npm run build"
},
"keywords": [
"mcp",
"bitcoin",
"stamps",
"stampchain",
"blockchain"
],
"author": "Stampchain Team",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"axios": "^1.6.0",
"axios-retry": "^4.5.0",
"commander": "^14.0.0",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"c8": "^10.1.3",
"eslint": "^8.55.0",
"eslint-config-prettier": "^10.1.5",
"glob": "^11.0.3",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"prettier": "^3.5.3",
"tsx": "^4.6.0",
"typescript": "^5.3.0",
"vitest": "^3.2.4"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,md}": [
"prettier --write"
]
}
}