package.json•2.08 kB
{
"name": "@tsavo/printify-mcp",
"version": "0.1.1",
"description": "A Model Context Protocol (MCP) server for integrating AI assistants with Printify's print-on-demand platform",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"types": "dist/index.d.ts",
"bin": {
"printify-mcp": "dist/index.js"
},
"files": [
"dist",
"src/docs",
"index.js",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && npm run copy-docs",
"copy-docs": "node -e \"const fs = require('fs'); const path = require('path'); if (!fs.existsSync('dist/docs')) fs.mkdirSync('dist/docs', { recursive: true }); fs.readdirSync('src/docs').forEach(file => fs.copyFileSync(path.join('src/docs', file), path.join('dist/docs', file)));\"",
"start": "node dist/index.js",
"dev": "tsc -w & node --watch dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run build",
"lint": "eslint src --ext .ts",
"clean": "rimraf dist",
"prebuild": "npm run clean"
},
"keywords": [
"mcp",
"printify",
"llm",
"ai",
"claude",
"anthropic",
"model-context-protocol",
"print-on-demand"
],
"author": "TSavo",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/TSavo/printify-mcp.git"
},
"bugs": {
"url": "https://github.com/TSavo/printify-mcp/issues"
},
"homepage": "https://github.com/TSavo/printify-mcp#readme",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.10.1",
"dotenv": "^16.5.0",
"printify-sdk-js": "^1.3.0",
"replicate": "^1.0.1",
"sharp": "^0.34.1",
"zod": "^3.24.3"
},
"devDependencies": {
"@types/node": "^22.14.1",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"rimraf": "^5.0.10",
"typescript": "^5.8.3"
}
}