-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 884 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 884 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "@asterai/client",
"version": "0.2.0",
"description": "client library for asterai.io",
"main": "dist/index.js",
"repository": "https://github.com/asterai-io/asterai-client-ts",
"homepage": "https://github.com/asterai-io/asterai-client-ts",
"private": false,
"scripts": {
"build": "rm -rf dist && tsc",
"example": "ts-node example/client/index.ts",
"example-team": "ts-node example/team/index.ts"
},
"keywords": [
"ai",
"llm",
"agent",
"vector",
"embedding"
],
"author": "asterai",
"license": "BUSL-1.1",
"dependencies": {
"buffer": "^6.0.3",
"eventsource-parser": "^2.0.1",
"protobufjs": "^7.4.0",
"typescript": "^5.6.3"
},
"files": [
"dist/",
"package.json",
"README.md",
"tsconfig.json"
],
"devDependencies": {
"@types/node": "^22.7.5",
"ts-node": "^10.9.2"
}
}