chatgpt-api/packages/core/package.json

54 wiersze
1.2 KiB
JSON
Czysty Zwykły widok Historia

2025-05-19 15:19:34 +00:00
{
"name": "@agentic/platform-core",
2025-06-28 15:53:04 +00:00
"version": "8.0.2",
2025-05-19 15:19:34 +00:00
"description": "Core utilities for the Agentic platform.",
"author": "Travis Fischer <travis@transitivebullsh.it>",
2025-06-20 04:05:47 +00:00
"license": "AGPL-3.0",
2025-05-19 15:19:34 +00:00
"repository": {
"type": "git",
"url": "git+https://github.com/transitive-bullshit/agentic.git",
2025-05-20 16:28:31 +00:00
"directory": "packages/core"
2025-05-19 15:19:34 +00:00
},
"engines": {
"node": ">=18"
},
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": {
"build": "tsup",
"clean": "del dist",
2025-05-19 15:19:34 +00:00
"test": "run-s test:*",
"test:typecheck": "tsc --noEmit",
"test:unit": "vitest run"
},
"dependencies": {
2025-06-28 06:43:42 +00:00
"@sindresorhus/slugify": "catalog:",
2025-06-25 02:26:02 +00:00
"decircular": "catalog:",
"is-obj": "catalog:",
"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",
"files": [
"dist"
],
2025-06-28 15:52:20 +00:00
"types": "./dist/index.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
}
2025-05-19 15:19:34 +00:00
}
}