-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.14 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
{
"name": "bee-agent-framework-starter",
"type": "module",
"version": "0.0.1",
"private": true,
"engines": {
"node": ">=18.0.0",
"npm": "^10.0.0"
},
"files": [
"dist/**/*"
],
"main": "./dist/agent.js",
"types": "./dist/agent.d.ts",
"homepage": "https://github.com/i-am-bee/bee-agent-framework-starter#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/i-am-bee/bee-agent-framework-starter.git"
},
"bugs": {
"url": "https://github.com/i-am-bee/bee-agent-framework-starter/issues"
},
"scripts": {
"start": "npm exec tsx",
"ts:check": "tsc --noEmit --project tsconfig.json",
"build": "rimraf dist && tsc",
"lint": "eslint",
"lint:fix": "eslint --fix",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"infra:pull": "docker compose --profile=${npm_config_profile:=all} pull",
"infra:start": "docker compose --profile=${npm_config_profile:=all} up --detach --wait",
"infra:stop": "docker compose --profile=${npm_config_profile:=all} down",
"infra:remove": "npm run infra:stop -- --volumes",
"_ensure_env": "cp -n .env.template .env || true",
"prepare": "husky && npm run _ensure_env"
},
"dependencies": {
"@googleapis/customsearch": "^3.2.0",
"@ibm-generative-ai/node-sdk": "^3.2.4",
"bee-agent-framework": "^0.0.49",
"bee-observe-connector": "^0.0.6",
"dotenv": "^16.4.5",
"groq-sdk": "^0.7.0",
"ollama": "^0.5.10",
"openai": "^4.72.0",
"openai-chat-tokens": "^0.2.8",
"pino": "^9.4.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"@types/eslint__js": "^8.42.3",
"@types/eslint-config-prettier": "^6.11.3",
"@types/node": "^18.15.3",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"pino-pretty": "^11.2.2",
"prettier": "^3.3.3",
"rimraf": "^5.0.10",
"tsx": "^4.19.1",
"typescript": "~5.5.4",
"typescript-eslint": "^8.6.0"
},
"packageManager": "[email protected]",
"lint-staged": {
"*.{ts,js}": "eslint --fix",
"*": "prettier --ignore-unknown --write"
}
}