{ "name": "specpack", "version": "0.1.0", "description": "Lint and generate the files your AI coding agent reads (CLAUDE.md, AGENTS.md, .cursorrules), and turn a project description into a full build spec. CLI + library + MCP server.", "type": "module", "main": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "./mcp": { "types": "./dist/mcp/server.d.ts", "default": "./dist/mcp/server.js" }, "./package.json": "./package.json" }, "bin": { "specpack": "dist/cli/index.js" }, "files": [ "dist", "!dist/cli/**/*.d.ts", "CHANGELOG.md" ], "sideEffects": false, "engines": { "node": ">=18.17" }, "scripts": { "build": "node scripts/clean.mjs dist && tsc -p tsconfig.json && node scripts/postbuild.mjs", "typecheck": "tsc -p tsconfig.test.json --noEmit", "pretest": "node scripts/clean.mjs .test-dist && tsc -p tsconfig.test.json", "test": "node scripts/run-tests.mjs", "prepack": "npm run build" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.30.0", "zod": "^4.1.0" }, "devDependencies": { "@types/node": "^18.19.0", "typescript": "^6.0.3" }, "keywords": [ "claude-md", "agents-md", "cursorrules", "cursor-rules", "claude-code", "cursor", "windsurf", "copilot-instructions", "mcp", "mcp-server", "model-context-protocol", "ai-coding", "ai-agents", "spec", "specification", "prompt", "lint", "linter", "cli" ], "author": "Kipdev", "license": "MIT", "homepage": "https://prompt-generator-website.com", "repository": { "type": "git", "url": "git+https://github.com/THE-KIPDEV/specpack.git" }, "bugs": { "url": "https://github.com/THE-KIPDEV/specpack/issues" }, "mcpName": "io.github.THE-KIPDEV/specpack" }