package.json•1.86 kB
{
"name": "mcp-for-thingiverse",
"version": "1.0.0",
"author": "Gpaul | Faldin",
"scripts": {
"start": "cross-env NODE_ENV=production node -r tsconfig-paths/register dist/index.js",
"dev": "cross-env NODE_ENV=development nodemon -r tsconfig-paths/register src/index.ts",
"prebuild": "ts-node scripts/prepare-build.ts",
"build": "tsc --project tsconfig.json && tscpaths -p tsconfig.json -s ./src -o ./dist && ts-node scripts/copy-env-to-dist.ts",
"postbuild": "git checkout -- src/index.ts",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"prepare": "husky install && node ./scripts/setup-husky.js",
"prod": "npm run build && npm run start",
"test": "jest"
},
"bin": {
"thingiverse": "./dist/index.js"
},
"files": [
"dist"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.7.0",
"dotenv": "^16.0.3",
"puppeteer": "^24.4.0",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"cross-env": "^7.0.3",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-node": "^0.3.9",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^13.2.1",
"nodemon": "^2.0.22",
"prettier": "^2.8.7",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"tscpaths": "^0.0.9",
"typescript": "~5.1.6"
}
}