UNPKG

@boundless-oss/atlas

Version:

Atlas - MCP Server for comprehensive startup project management

92 lines 2.66 kB
{ "name": "@boundless-oss/atlas", "version": "1.1.23", "description": "Atlas - MCP Server for comprehensive startup project management", "repository": { "type": "git", "url": "https://github.com/boundless-oss/atlas.git" }, "homepage": "https://github.com/boundless-oss/atlas#readme", "bugs": { "url": "https://github.com/boundless-oss/atlas/issues" }, "main": "dist/server.js", "type": "module", "bin": { "atlas": "./dist/cli.js" }, "files": [ "dist", "src", "package.json", "README.md", "LICENSE" ], "scripts": { "build": "tsc && npm run copy-static", "copy-static": "copyfiles -u 1 \"src/web-dashboard/public/**/*\" dist/ && copyfiles -u 1 \"src/storage/schema.sql\" dist/", "dev": "NODE_ENV=development tsx watch src/index.ts", "dev:tcp": "NODE_ENV=development tsx watch src/server-tcp.ts", "dev:sse": "NODE_ENV=development tsx watch src/server-sse.ts", "start": "NODE_ENV=development tsx src/cli.ts", "start:tcp": "tsx src/server-tcp.ts", "start:sse": "tsx src/server-sse.ts", "start:built": "node dist/cli.js", "prepublishOnly": "npm run build", "test": "vitest run", "test:watch": "vitest", "test:coverage": "vitest run --coverage", "test:ui": "vitest --ui", "test:dashboard": "vitest run src/web-dashboard/__tests__", "test:dashboard:watch": "vitest src/web-dashboard/__tests__", "migrate:remove-planning-status": "tsx scripts/run-planning-status-migration.ts" }, "keywords": [ "mcp", "model-context-protocol", "claude", "claude-code", "startup", "project-management", "kanban", "tdd", "test-driven-development", "ai-tools" ], "author": "Atlas Team", "license": "MIT", "dependencies": { "@modelcontextprotocol/sdk": "^1.13.2", "@types/json-schema": "^7.0.15", "@types/node": "^24.0.7", "@types/socket.io": "^3.0.1", "ajv": "^8.17.1", "ajv-formats": "^3.0.1", "cors": "^2.8.5", "express": "^4.18.2", "json-schema": "^0.4.0", "socket.io": "^4.8.1", "sqlite3": "^5.1.7", "tsx": "^4.20.3", "typescript": "^5.8.3", "ws": "^8.18.0", "zod": "^3.22.4" }, "devDependencies": { "@types/cors": "^2.8.17", "@types/express": "^4.17.21", "@types/node-cron": "^3.0.11", "@types/sqlite3": "^3.1.11", "@types/supertest": "^6.0.3", "@types/ws": "^8.5.13", "@vitest/coverage-v8": "^3.2.4", "@vitest/ui": "^3.2.4", "copyfiles": "^2.4.1", "socket.io-client": "^4.8.1", "supertest": "^7.1.1", "vitest": "^3.2.4" }, "optionalDependencies": { "node-cron": "^4.1.1" } }