-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
100 lines (100 loc) · 2.67 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
{
"name": "bee-observe-connector",
"version": "0.0.6",
"license": "Apache-2.0",
"description": "LLM Agent Framework and Observe connector",
"author": "Milan Gallas <milan.gallas@ibm.com>",
"packageManager": "yarn@4.4.0",
"type": "module",
"sideEffects": false,
"scripts": {
"clean": "rm -rf dist",
"build": "yarn clean && tsup",
"lint": "yarn eslint src",
"lint:fix": "yarn eslint --fix src",
"format": "yarn prettier --check .",
"format:fix": "yarn prettier --write .",
"start:base": "tsx ./examples/base.ts",
"prepare": "husky",
"release": "release-it",
"test:unit": "vitest run src",
"test:e2e": "vitest run --config vitest.e2e.config.ts tests",
"coverage": "vitest run --coverage",
"ts:check": "tsc --noEmit",
"start:infra": "docker compose -f ./infra/compose.yml up -d",
"stop:infra": "docker compose -f ./infra/compose.yml down",
"generate:schema": "bash ./scripts/generate-schema.sh"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@commitlint/types": "^19.5.0",
"@eslint/js": "^9.9.1",
"@ibm-generative-ai/node-sdk": "^3.2.3",
"@release-it/conventional-changelog": "^8.0.2",
"@types/eslint": "^9",
"@types/node": "^22.5.0",
"@vitest/coverage-v8": "^2.1.5",
"bee-agent-framework": "^0.0.42",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.5",
"lint-staged": "^15.2.10",
"ollama": "^0.5.9",
"openapi-typescript": "^7.3.0",
"prettier": "^3.3.3",
"release-it": "^17.6.0",
"rimraf": "^6.0.1",
"tsup": "^8.2.4",
"tsx": "^4.18.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.1.0",
"vite": "^5.4.11",
"vite-tsconfig-paths": "^5.1.3",
"vitest": "^2.1.5"
},
"resolutions": {
"vite": ">=5.4.6"
},
"dependencies": {
"openapi-fetch": "^0.11.1",
"remeda": "^2.15.2"
},
"peerDependencies": {
"bee-agent-framework": ">=0.0.27 <0.1.0"
},
"files": [
"dist/**/*"
],
"exports": {
"./package.json": "./package.json",
"./submodules": null,
".": {
"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"
}
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
]
}
}