-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.25 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.25 KB
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
{
"name": "@digitalkin/agentic-mesh-protocol",
"version": "1.0.0",
"description": "Node.js gRPC interfaces for Agentic Mesh Protocol - Protocol Buffer definitions for multi-agent systems",
"type": "commonjs",
"main": "index.ts",
"types": "index.ts",
"files": [
"gen/typescript/**/*.ts",
"gen/typescript/**/*.js",
"gen/typescript/**/*.d.ts",
"gen/descriptor.bin",
"gen/descriptor.json",
"proto/**/*.proto",
"buf.gen.ts.yaml"
],
"scripts": {
"deps:update": "npx buf dep update proto",
"build:zod-plugin": "tsc --project ./tools/zod/tsconfig.json",
"generate": "npm run build:zod-plugin && npx buf generate --template buf.gen.ts.yaml && tsc -p tsconfig.gen.json",
"generate:reflection": "npx buf build proto -o gen/descriptor.bin && npx buf build proto -o gen/descriptor.json",
"build": "npm run generate",
"prepare": "npm run generate && npm run generate:reflection",
"clean": "rm -rf gen/ && rm -rf tools/zod/dist/",
"prepublishOnly": "npm run build"
},
"keywords": [
"grpc",
"protobuf",
"multi-agent",
"agent",
"mesh",
"protocol",
"digitalkin"
],
"author": "DigitalKin Inc.",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/DigitalKin-ai/agentic-mesh-protocol.git"
},
"bugs": {
"url": "https://github.com/DigitalKin-ai/agentic-mesh-protocol/issues"
},
"homepage": "https://github.com/DigitalKin-ai/agentic-mesh-protocol#readme",
"dependencies": {
"@grpc/grpc-js": "^1.14.3",
"google-protobuf": "^4.0.2",
"zod": "^4.3.6"
},
"peerDependencies": {
"@bufbuild/protobuf": "^2.11.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@buf/bufbuild_protovalidate.bufbuild_es": "^2.11.0-20251209175733-2a1774d88802.1",
"@bufbuild/buf": "1.66.0",
"@bufbuild/protobuf": "^2.11.0",
"@bufbuild/protoplugin": "^2.11.0",
"@types/google-protobuf": "^3.15.12",
"@types/node": "^25.2.0",
"ts-proto": "^2.11.2",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=18.0.0"
}
}