9276689cb6
- Remove Gitea npm registry, use npmjs.org - changeset publish works natively with npmjs - release script: build + test + changeset publish - Remove custom release.sh, all via changesets
32 lines
574 B
JSON
32 lines
574 B
JSON
{
|
|
"name": "@uncaged/workflow-agent-llm",
|
|
"version": "0.4.5",
|
|
"files": [
|
|
"src",
|
|
"dist",
|
|
"package.json"
|
|
],
|
|
"type": "module",
|
|
"types": "src/index.ts",
|
|
"scripts": {
|
|
"test": "bun test"
|
|
},
|
|
"dependencies": {
|
|
"@uncaged/workflow-runtime": "workspace:^",
|
|
"@uncaged/workflow-util-agent": "workspace:^"
|
|
},
|
|
"devDependencies": {
|
|
"zod": "^4.0.0"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"bun": "./src/index.ts",
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
}
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|