-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
128 lines (128 loc) · 3.62 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "bee-community-tools",
"version": "0.1.0",
"license": "Apache-2.0",
"description": "Agentic tools for the Bee Agent Framework",
"author": "IBM Corp.",
"contributors": [
"Tomas Dvorak <tomas.dvorak@ibm.com>",
"Graham White <gwhite@uk.ibm.com>",
"James Sutton <james.sutton@uk.ibm.com>",
"Michael Desmond <mdesmond@us.ibm.com>"
],
"keywords": [
"Bee Agent Framework Community Tools"
],
"packageManager": "yarn@4.1.1",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./*": {
"import": {
"types": "./dist/*.d.ts",
"default": "./dist/*.js"
},
"require": {
"types": "./dist/*.d.cts",
"default": "./dist/*.cjs"
}
}
},
"files": [
"dist/**/*"
],
"homepage": "https://github.com/i-am-bee/bee-community-tools#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/i-am-bee/bee-community-tools.git"
},
"bugs": {
"url": "https://github.com/i-am-bee/bee-community-tools/issues"
},
"scripts": {
"clean": "rimraf dist",
"build": "yarn clean && yarn ts:check && tsup",
"ts:check": "tsc --noEmit && tsc -p tsconfig.examples.json --noEmit",
"start": "tsx --tsconfig tsconfig.examples.json examples/agents/manyToolsAgent.ts",
"lint": "yarn eslint",
"lint:fix": "yarn eslint --fix",
"format": "yarn prettier --check .",
"format:fix": "yarn prettier --write .",
"test:unit": "vitest run src",
"test:unit:watch": "vitest run src",
"test:e2e": "vitest run tests",
"test:e2e:watch": "vitest watch tests",
"test:all": "vitest run",
"test:watch": "vitest watch",
"prepare": "husky",
"copyright": "./scripts/copyright.sh",
"release": "release-it",
"_ensure_env": "cp -n .env.template .env || true"
},
"peerDependencies": {
"airtable": "^0.12.2",
"bee-agent-framework": "^0.0.34"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9.13.0",
"@eslint/markdown": "^6.2.1",
"@ibm-generative-ai/node-sdk": "^3.2.3",
"@langchain/community": "^0.3.10",
"@langchain/core": "^0.3.15",
"@langchain/langgraph": "^0.2.18",
"@release-it/conventional-changelog": "^9.0.2",
"@rollup/plugin-commonjs": "^28.0.1",
"@swc/core": "^1.7.40",
"@types/eslint": "^9.6.1",
"@types/eslint-config-prettier": "^6.11.3",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.8.2",
"airtable": "^0.12.2",
"bee-agent-framework": "^0.0.34",
"dotenv": "^16.4.5",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-unused-imports": "^4.1.4",
"glob": "^11.0.0",
"groq-sdk": "^0.7.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"msw": "^2.5.2",
"ollama": "^0.5.9",
"openai": "^4.68.4",
"openai-chat-tokens": "^0.2.8",
"picocolors": "^1.1.1",
"pino-pretty": "^11.3.0",
"pino-test": "^1.1.0",
"prettier": "^3.3.3",
"release-it": "^17.10.0",
"rimraf": "^6.0.1",
"strip-ansi": "^7.1.0",
"temp-dir": "^3.0.0",
"tsc-files": "^1.1.4",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.1",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.1.4"
},
"dependencies": {
"zod": "^3.23.8"
}
}