forked from wrtnlabs/agentica
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.25 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.25 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@wrtnlabs/agent",
"version": "0.1.0",
"main": "lib/index.js",
"module": "lib/index.mjs",
"typings": "lib/index.d.ts",
"description": "Super A.I. Chatbot agent by Swagger Document",
"scripts": {
"prepare": "ts-patch install && typia patch",
"build": "npm run build:main && npm run build:test",
"build:main": "rimraf lib && npm run build:prompt && tsc && rollup -c",
"build:test": "rimraf bin && tsc -p test/tsconfig.json",
"build:prompt": "ts-node build/prompt.ts",
"dev": "npm run build:prompt && npm run build:test -- --watch",
"eslint": "eslint ./**/*.ts",
"test": "npm run build:test && node bin/test/index.js",
"typedoc": "node website/build/typedoc"
},
"repository": {
"type": "git",
"url": "https://github.com/wrtnlabs/agent"
},
"keywords": [
"openai",
"chatgpt",
"anthropic",
"claude",
"ai",
"chatbot",
"nestia",
"swagger",
"openapi"
],
"author": "Wrtn Technologies",
"license": "MIT",
"bugs": {
"url": "https://github.com/wrtnlabs/agent/issues"
},
"homepage": "https://wrtnlabs.io",
"files": [
"README.md",
"LICENSE",
"package.json",
"lib",
"prompts",
"src"
],
"devDependencies": {
"@eslint/js": "^9.17.0",
"@nestia/e2e": "^0.8.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"@samchon/openapi": "^2.4.2",
"@samchon/shopping-api": "^0.11.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/node": "^22.10.5",
"@types/uuid": "^10.0.0",
"chalk": "4.1.2",
"dotenv": "^16.3.1",
"dotenv-expand": "^10.0.0",
"eslint": "^9.17.0",
"openai": "^4.82.0",
"prettier": "^3.5.0",
"rimraf": "^6.0.1",
"rollup": "^4.29.1",
"ts-node": "^10.9.2",
"ts-patch": "^3.3.0",
"tstl": "^3.0.0",
"typedoc": "^0.27.7",
"typedoc-github-theme": "^0.2.1",
"typescript": "~5.7.3",
"typescript-eslint": "^8.18.2",
"typescript-transform-paths": "^3.5.3",
"typia": "^7.6.4"
},
"dependencies": {
"@samchon/openapi": "^2.4.3",
"openai": "^4.82.0",
"typia": "^7.6.4",
"uuid": "^11.0.4"
},
"peerDependencies": {
"@samchon/openapi": ">= 2.4.3",
"openai": ">= 4.82.0",
"typia": ">= 7.6.4"
}
}