package.json•2.62 kB
{
"name": "mcp-inscription",
"version": "0.1.0",
"description": "MCP-Inscription Server",
"type": "module",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"bin": {
"mcp-inscription": "./build/cli.js"
},
"exports": {
".": {
"types": "./build/index.d.ts",
"import": "./build/index.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/laz1mov/mcp-inscription.git"
},
"bugs": {
"url": "https://github.com/laz1mov/mcp-inscription/issues"
},
"contributors": [
{
"name": "laz1m0v",
"email": "laz1m0v@proton.me"
}
],
"files": [
"build",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc",
"start": "node build/cli.js",
"dev": "tsx watch src/cli.ts",
"prepublishOnly": "npm run build",
"lint": "eslint . --ext .ts --cache",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --config jest.config.js",
"test:watch": "jest --watch --config jest.config.js",
"test:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage --config jest.config.js",
"clean": "rimraf build coverage .eslintcache",
"prebuild": "npm run clean",
"prepare": "husky install"
},
"keywords": [
"mcp",
"modelcontextprotocol",
"server",
"nostr",
"claude",
"bitcoin",
"ordinals"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "0.6.0",
"bitcoinjs-lib": "6.1.7",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"ecpair": "^2.1.0",
"express": "^4.18.3",
"husky": "^9.1.7",
"node-fetch": "^3.3.2",
"pino": "^8.19.0",
"pino-pretty": "^10.3.1",
"tiny-secp256k1": "^2.2.3",
"tsx": "^4.7.1",
"typescript": "^5.4.2",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/debug": "^4.1.12",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.14",
"@types/node": "^20.11.24",
"@types/node-fetch": "^2.6.11",
"@types/pino": "^7.0.5",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.57.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jsdoc": "^50.6.9",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"rimraf": "^5.0.10",
"ts-jest": "^29.3.0",
"typescript": "^5.3.3"
}
}