chatgpt-api/packages/core/package.json

38 wiersze
895 B
JSON
Czysty Zwykły widok Historia

2025-05-19 15:19:34 +00:00
{
"name": "@agentic/platform-core",
"version": "0.0.1",
"description": "Core utilities for the Agentic platform.",
"author": "Travis Fischer <travis@transitivebullsh.it>",
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "git+https://github.com/transitive-bullshit/agentic-platform.git",
2025-05-20 16:28:31 +00:00
"directory": "packages/core"
2025-05-19 15:19:34 +00:00
},
"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": {
"hash-object": "^5.0.1",
2025-05-24 22:36:39 +00:00
"parse-json": "^8.3.0",
2025-05-19 15:19:34 +00:00
"zod": "catalog:",
"zod-validation-error": "^3.4.1"
},
"devDependencies": {
"hono": "^4.7.9"
},
"publishConfig": {
"access": "public"
}
}