Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules
dist
16 changes: 13 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,21 @@
{
"name": "@weaviate/agents-client",
"name": "@weaviate/agents",
"version": "0.0.1",
"description": "JS/TS client for Weaviate Agents",
"scripts": {},
"exports": "./dist/index.js",
"type": "module",
"scripts": {
"build": "tsc"
},
"keywords": [
"weaviate"
],
"author": "Weaviate",
"license": "SEE LICENSE IN LICENSE"
"license": "SEE LICENSE IN LICENSE",

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think the LICENSE file is missing @augustas1

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it's already on main

"peerDependencies": {
"weaviate-client": "^3.5.2"
},
"devDependencies": {
"typescript": "^5.8.3"
}
}
Loading