chatgpt-api/stdlib/mastra/package.json

49 wiersze
1.1 KiB
JSON
Czysty Zwykły widok Historia

{
"name": "@agentic/mastra",
2025-07-01 17:05:35 +00:00
"version": "8.3.1",
"description": "Agentic adapter for the Mastra AI Agent SDK.",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/transitive-bullshit/agentic.git",
"directory": "stdlib/mastra"
},
"type": "module",
"sideEffects": false,
"source": "./src/index.ts",
2025-06-29 07:08:53 +00:00
"types": "./dist/index.ts",
"exports": {
2025-06-29 07:08:53 +00:00
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
2025-06-29 07:08:53 +00:00
"files": [
"dist"
],
"scripts": {
2025-03-18 15:16:05 +00:00
"build": "tsup",
"clean": "del dist",
"test": "run-s test:*",
"test:typecheck": "tsc --noEmit",
"test:unit": "vitest run"
},
"dependencies": {
"@agentic/core": "workspace:*",
"@agentic/platform-tool-client": "workspace:*",
2025-07-01 12:00:30 +00:00
"@mastra/schema-compat": "catalog:",
"ai": "catalog:"
},
"peerDependencies": {
"@mastra/core": "catalog:"
},
"devDependencies": {
"@mastra/core": "catalog:"
},
"publishConfig": {
2025-06-29 07:08:53 +00:00
"access": "public"
}
}