UNPKG

mastra

Version:

cli for mastra

122 lines 3.59 kB
{ "name": "mastra", "version": "0.10.21", "license": "Apache-2.0", "description": "cli for mastra", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", "bin": { "mastra": "./dist/index.js" }, "exports": { ".": "./dist/index.js", "./package.json": "./package.json", "./telemetry-loader": "./dist/commands/dev/telemetry-loader.js", "./dist/*": [ "./dist/*", "./dist/*.js" ] }, "files": [ "dist", "src/scripts", "src/playground/dist" ], "keywords": [ "mastra", "cli", "ai", "llm", "llms", "agent", "agents", "dev", "development", "deploy", "deployment", "build", "workflow", "typescript", "command-line", "devtools" ], "author": "", "dependencies": { "@clack/prompts": "^0.11.0", "@lukeed/uuid": "^2.0.1", "@opentelemetry/core": "^2.0.1", "@opentelemetry/instrumentation": "^0.203.0", "@opentelemetry/auto-instrumentations-node": "^0.62.0", "@opentelemetry/exporter-trace-otlp-grpc": "^0.203.0", "@opentelemetry/exporter-trace-otlp-http": "^0.203.0", "@opentelemetry/resources": "^2.0.1", "@opentelemetry/sdk-node": "^0.203.0", "@opentelemetry/sdk-trace-base": "^2.0.1", "@opentelemetry/semantic-conventions": "^1.36.0", "@webcontainer/env": "^1.1.1", "commander": "^12.1.0", "dotenv": "^16.6.1", "execa": "^9.6.0", "fs-extra": "^11.3.0", "get-port": "^7.1.0", "json-schema-to-zod": "^2.6.1", "open": "^10.1.2", "picocolors": "^1.1.1", "posthog-node": "4.18.0", "prettier": "^3.6.2", "prompt": "^1.3.0", "shell-quote": "^1.8.3", "shiki": "^1.29.2", "strip-json-comments": "^5.0.2", "superjson": "^2.2.2", "swr": "^2.3.4", "tcp-port-used": "^1.0.2", "yocto-spinner": "^0.2.3", "zod": "^3.25.67", "zod-to-json-schema": "^3.24.5", "@mastra/deployer": "^0.13.2", "@mastra/loggers": "^0.10.6", "@mastra/mcp": "^0.10.11" }, "devDependencies": { "@microsoft/api-extractor": "^7.52.8", "@types/fs-extra": "^11.0.4", "@types/node": "^20.19.0", "@types/prompt": "^1.1.9", "@types/shell-quote": "^1.7.5", "@types/tcp-port-used": "^1.0.4", "cpy-cli": "^5.0.0", "eslint": "^9.30.1", "memfs": "^4.17.2", "npm-run-all2": "^8.0.4", "rollup": "^4.42.0", "tsup": "^8.5.0", "type-fest": "^4.41.0", "typescript": "^5.8.3", "vitest": "^3.2.4", "@internal/lint": "0.0.29", "@mastra/client-js": "0.10.21", "@mastra/core": "0.13.2", "@mastra/playground-ui": "5.1.20", "@internal/types-builder": "0.0.4" }, "peerDependencies": { "@mastra/core": ">=0.10.2-0 <0.14.0-0" }, "scripts": { "build": "npm-run-all --serial build:lib copy-starter-files copy-templates build:playground", "build:lib": "tsup --silent --config tsup.config.ts", "build:watch": "pnpm run build:lib --watch --onSuccess \"pnpm run copy-starter-files && pnpm run copy-templates\"", "copy-starter-files": "cpy \"src/starter-files/**/*\" \"dist/starter-files\"", "copy-templates": "cpy \"src/templates/**/*\" \"dist/templates/\"", "build:playground": "cd ../cli/src/playground && pnpm build", "dev:playground": "cd src/playground && pnpm dev", "build:with-playground-ui": "cd ../playground-ui && pnpm build && cd ../cli && pnpm build", "test": "vitest run", "test:watch": "vitest watch", "clean": "rm -rf dist && rm -rf node_modules", "typecheck": "tsc --noEmit --incremental", "lint": "eslint ." } }