chatgpt-api/packages/core/package.json

37 wiersze
902 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:typecheck": "tsc --noEmit",
"test:unit": "vitest run"
},
"dependencies": {
2025-06-15 03:20:08 +00:00
"decircular": "^1.0.0",
"is-obj": "^3.0.0",
"parse-json": "catalog:",
2025-06-15 03:20:08 +00:00
"sort-keys": "catalog:",
"type-fest": "catalog:",
2025-05-19 15:19:34 +00:00
"zod": "catalog:",
"zod-validation-error": "catalog:"
2025-05-19 15:19:34 +00:00
},
"publishConfig": {
"access": "public"
}
}