-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
52 lines (52 loc) · 1.09 KB
/
package.json
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
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"private": true,
"name": "@agentica/station",
"version": "0.10.1",
"description": "Agentic AI library specialized in LLM Function Calling",
"engines": {
"pnpm": ">=8"
},
"scripts": {
"build": "node deploy/build",
"package:latest": "node deploy/publish --tag latest",
"package:next": "node deploy/publish --tag dev"
},
"repository": {
"type": "git",
"url": "https://github.com/wrtnlabs/agentica"
},
"keywords": [
"openai",
"chatgpt",
"anthropic",
"claude",
"ai",
"chatbot",
"nestia",
"swagger",
"openapi"
],
"author": "Wrtn Technologies",
"license": "MIT",
"bugs": {
"url": "https://github.com/wrtnlabs/agentica/issues"
},
"homepage": "https://wrtnlabs.io",
"files": [
"README.md",
"LICENSE",
"package.json",
"lib",
"prompts",
"src"
],
"devDependencies": {
"@eslint/js": "^9.17.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"eslint": "^9.17.0",
"prettier": "^3.5.0",
"rimraf": "^6.0.1",
"typedoc": "^0.27.7",
"typedoc-github-theme": "^0.2.1"
}
}