-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
89 lines (89 loc) · 2.37 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
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
88
89
{
"name": "agent-adapters",
"version": "1.0.6",
"description": "Configurable AI Agents",
"license": "MPL-2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"AI Agents",
"Open AI",
"AutoGen",
"AIConfig",
"Agent Protocol",
"LLM",
"AutoGPT",
"TypeScript",
"Node"
],
"scripts": {
"pretest": "npm run build && npm run lint",
"test": "jest",
"test:unit:coverage": "jest --coverage",
"build": "tsc",
"watch": "tsc -watch -p ./",
"prepublishOnly": "npm run build",
"lint": "eslint src --ext ts",
"lint:fix": "eslint src --fix --ext ts",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"generate:agents-schema": "npx ts-json-schema-generator --unstable --no-top-ref --type AgentsYml --path src/types/AgentsYml.ts --out schemas/agents.yml.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nalbion/agent-adapters.git"
},
"author": {
"name": "Nicholas Albion",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/nalbion/agent-adapters/issues"
},
"homepage": "https://github.com/nalbion/agent-adapters#readme",
"files": [
"dist/**/*.d.ts",
"dist/**/*.js",
"schemas/agents.yml.json",
"README.md",
"package.json",
"LICENSE.txt"
],
"dependencies": {
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"any-cloud-storage": "^1.0.3",
"handlebars": "^4.7.8",
"js-yaml": "^4.1.0",
"jsdom": "^24.0.0",
"rimraf": "^5.0.5",
"turndown": "^7.1.2",
"yaml-ast-parser": "^0.0.43"
},
"optionalDependencies": {
"@google-cloud/functions-framework": "^3.3.0",
"agent-protocol": "^1.0.3",
"aws-serverless-express": "^3.4.0",
"dockerode": "^4.0.2",
"firebase-functions": "^4.7.0",
"openai": "^4.24.7",
"simple-git": "^3.22.0"
},
"devDependencies": {
"@types/ajv": "^1.0.0",
"@types/aws-serverless-express": "^3.3.9",
"@types/dockerode": "^3.3.23",
"@types/jest": "^29.5.11",
"@types/js-yaml": "^4.0.9",
"@types/jsdom": "^21.1.6",
"@types/node": "^18.19.8",
"@types/turndown": "^5.0.4",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"prettier": "^3.2.4",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
}
}