logicsrc/packages/schemas/package.json

25 lines
1,019 B
JSON

{
"name": "@logicsrc/schemas",
"version": "0.1.0",
"description": "LogicSRC JSON schemas for tasks, agents, runs, events, and plugins.",
"type": "module",
"exports": {
"./task": "./schemas/logicsrc-task.schema.json",
"./agent": "./schemas/logicsrc-agent.schema.json",
"./run": "./schemas/logicsrc-run.schema.json",
"./event": "./schemas/logicsrc-event.schema.json",
"./plugin": "./schemas/logicsrc-plugin.schema.json",
"./connected-account": "./schemas/logicsrc-connected-account.schema.json",
"./account-provider": "./schemas/logicsrc-account-provider.schema.json",
"./account-grant": "./schemas/logicsrc-account-grant.schema.json",
"./account-audit-event": "./schemas/logicsrc-account-audit-event.schema.json",
"./email-message": "./schemas/logicsrc-email-message.schema.json",
"./social-post": "./schemas/logicsrc-social-post.schema.json"
},
"files": [
"schemas"
],
"scripts": {
"build": "node -e \"console.log('schemas: no build step')\""
}
}