- Add MIT LICENSE file - Fix YOUR_ORG placeholders in README and DEPLOYMENT docs - Fix Node.js version mismatch in release workflow (21 → 22) - Delete 17 internal debug/development docs - Rewrite hero section for clarity (explain what TPMJS is in seconds) - Add "What is TPMJS?" section to landing page - Fix hardcoded emails to hello@tpmjs.com - Fix hardcoded dates to December 2024 - Add package metadata (author, license, repository) to all published packages - Clean up AI-sounding language throughout - Add comprehensive LAUNCH_REVIEW.md with checklist 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
55 lines
1.8 KiB
JSON
55 lines
1.8 KiB
JSON
{
|
|
"name": "@tpmjs/monorepo",
|
|
"version": "0.0.0",
|
|
"description": "Tool Package Manager for AI Agents - discover, share, and integrate tools",
|
|
"author": "TPMJS",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/tpmjs/tpmjs.git"
|
|
},
|
|
"homepage": "https://tpmjs.com",
|
|
"bugs": {
|
|
"url": "https://github.com/tpmjs/tpmjs/issues"
|
|
},
|
|
"keywords": ["tpmjs", "ai", "agents", "tools", "mcp", "typescript", "npm"],
|
|
"private": true,
|
|
"type": "module",
|
|
"engines": {
|
|
"node": ">=22",
|
|
"pnpm": ">=8"
|
|
},
|
|
"packageManager": "pnpm@10.14.0",
|
|
"scripts": {
|
|
"dev": "turbo dev",
|
|
"build": "turbo build",
|
|
"test": "turbo test",
|
|
"test:ui": "turbo test:ui",
|
|
"lint": "turbo lint",
|
|
"format": "biome format --write .",
|
|
"format:check": "biome format .",
|
|
"type-check": "turbo type-check",
|
|
"type-coverage": "type-coverage --at-least 95",
|
|
"find-deadcode": "knip",
|
|
"check-architecture": "depcruise --validate --config .dependency-cruiser.js apps packages",
|
|
"clean": "turbo clean && rm -rf node_modules .turbo",
|
|
"changeset": "changeset",
|
|
"changeset:version": "changeset version && pnpm install --no-frozen-lockfile",
|
|
"changeset:publish": "pnpm build && changeset publish",
|
|
"prepare": "node -e \"if (!process.env.CI && !process.env.VERCEL && require('fs').existsSync('.git')) { require('child_process').execSync('lefthook install', {stdio: 'inherit'}) }\""
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^1.9.4",
|
|
"@changesets/cli": "^2.27.10",
|
|
"@total-typescript/ts-reset": "^0.6.1",
|
|
"@types/node": "^22.10.2",
|
|
"dependency-cruiser": "^17.3.1",
|
|
"knip": "^5.70.2",
|
|
"lefthook": "^1.10.1",
|
|
"openai": "^6.9.1",
|
|
"tsx": "^4.21.0",
|
|
"turbo": "^2.6.1",
|
|
"type-coverage": "^2.29.7",
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|