-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.29 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
{
"name": "bee-proto",
"packageManager": "[email protected]",
"author": "IBM Corp.",
"type": "module",
"version": "0.0.2",
"license": "Apache-2.0",
"scripts": {
"build": "yarn generate && tsup && yarn copyright",
"generate": "./scripts/generate.sh",
"copyright": "./scripts/copyright.sh",
"release": "release-it",
"prepare": "husky"
},
"keywords": [
"bee",
"bee proto",
"bee agent framework"
],
"dependencies": {
"@bufbuild/protobuf": "^1.10.0",
"@connectrpc/connect": "^1.4.0"
},
"devDependencies": {
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@release-it/conventional-changelog": "^8.0.1",
"husky": "^9.1.5",
"lb4": "^1.0.0",
"release-it": "^17.6.0",
"tsup": "^8.2.4",
"typescript": "^5.5.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/i-am-bee/bee-proto.git"
},
"bugs": {
"url": "https://github.com/i-am-bee/bee-proto/issues"
},
"files": [
"dist"
],
"exports": {
"./package.json": "./package.json",
"./*": {
"import": {
"types": "./dist/proto/*.d.ts",
"default": "./dist/proto/*.js"
},
"require": {
"types": "./dist/proto/*.d.cts",
"default": "./dist/proto/*.cjs"
}
}
}
}