chatgpt-api/packages/openapi/package.json

33 wiersze
826 B
JSON

{
"name": "@agentic/platform-openapi",
"version": "0.0.1",
"description": "OpenAPI utilities used by the Agentic platform.",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "git+https://github.com/transitive-bullshit/agentic-platform.git",
"directory": "packages/schemas"
},
"type": "module",
"source": "./src/index.ts",
"types": "./src/index.ts",
"sideEffects": false,
"exports": {
".": "./src/index.ts"
},
"scripts": {
"test": "run-s test:*",
"test:lint": "eslint .",
"test:typecheck": "tsc --noEmit",
"test:unit": "vitest run"
},
"dependencies": {
"@agentic/platform-core": "workspace:*",
"@redocly/openapi-core": "^1.34.3"
},
"publishConfig": {
"access": "public"
}
}