@multi-agent-protocol/sdk 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +248 -0
- package/dist/index-C7XPWnxS.d.cts +3052 -0
- package/dist/index-C7XPWnxS.d.ts +3052 -0
- package/dist/index.cjs +4528 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +2288 -0
- package/dist/index.d.ts +2288 -0
- package/dist/index.js +4353 -0
- package/dist/index.js.map +1 -0
- package/dist/testing.cjs +4004 -0
- package/dist/testing.cjs.map +1 -0
- package/dist/testing.d.cts +367 -0
- package/dist/testing.d.ts +367 -0
- package/dist/testing.js +4000 -0
- package/dist/testing.js.map +1 -0
- package/package.json +79 -0
package/package.json
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@multi-agent-protocol/sdk",
|
|
3
|
+
"version": "0.0.2",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "TypeScript SDK for the Multi-Agent Protocol (MAP)",
|
|
6
|
+
"main": "dist/index.cjs",
|
|
7
|
+
"module": "dist/index.js",
|
|
8
|
+
"types": "dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.js",
|
|
13
|
+
"require": "./dist/index.cjs"
|
|
14
|
+
},
|
|
15
|
+
"./testing": {
|
|
16
|
+
"types": "./dist/testing.d.ts",
|
|
17
|
+
"import": "./dist/testing.js",
|
|
18
|
+
"require": "./dist/testing.cjs"
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
"files": [
|
|
22
|
+
"dist",
|
|
23
|
+
"README.md"
|
|
24
|
+
],
|
|
25
|
+
"scripts": {
|
|
26
|
+
"build": "tsup",
|
|
27
|
+
"dev": "tsup --watch",
|
|
28
|
+
"test": "vitest",
|
|
29
|
+
"test:run": "vitest run",
|
|
30
|
+
"lint": "eslint src/",
|
|
31
|
+
"typecheck": "tsc --noEmit",
|
|
32
|
+
"generate": "node scripts/generate.js",
|
|
33
|
+
"prepublishOnly": "npm run build",
|
|
34
|
+
"version:patch": "npm version patch && git push && git push --tags",
|
|
35
|
+
"version:minor": "npm version minor && git push && git push --tags",
|
|
36
|
+
"version:major": "npm version major && git push && git push --tags",
|
|
37
|
+
"publish:npm": "npm run build && npm publish --access public"
|
|
38
|
+
},
|
|
39
|
+
"keywords": [
|
|
40
|
+
"multi-agent",
|
|
41
|
+
"agent",
|
|
42
|
+
"protocol",
|
|
43
|
+
"map",
|
|
44
|
+
"sdk",
|
|
45
|
+
"typescript"
|
|
46
|
+
],
|
|
47
|
+
"author": "Alex Ngai",
|
|
48
|
+
"license": "MIT",
|
|
49
|
+
"repository": {
|
|
50
|
+
"type": "git",
|
|
51
|
+
"url": "git+https://github.com/alexngai/multi-agent-protocol.git",
|
|
52
|
+
"directory": "ts-sdk"
|
|
53
|
+
},
|
|
54
|
+
"bugs": {
|
|
55
|
+
"url": "https://github.com/alexngai/multi-agent-protocol/issues"
|
|
56
|
+
},
|
|
57
|
+
"homepage": "https://github.com/alexngai/multi-agent-protocol#readme",
|
|
58
|
+
"dependencies": {
|
|
59
|
+
"ulid": "^3.0.2",
|
|
60
|
+
"zod": "^3.24.0"
|
|
61
|
+
},
|
|
62
|
+
"devDependencies": {
|
|
63
|
+
"@hey-api/openapi-ts": "^0.61.0",
|
|
64
|
+
"@types/node": "^20.11.0",
|
|
65
|
+
"json-schema-to-zod": "^2.7.0",
|
|
66
|
+
"tsup": "^8.0.1",
|
|
67
|
+
"typescript": "^5.3.3",
|
|
68
|
+
"vitest": "^1.2.0"
|
|
69
|
+
},
|
|
70
|
+
"peerDependencies": {
|
|
71
|
+
"zod": "^3.24.0"
|
|
72
|
+
},
|
|
73
|
+
"engines": {
|
|
74
|
+
"node": ">=18.0.0"
|
|
75
|
+
},
|
|
76
|
+
"publishConfig": {
|
|
77
|
+
"access": "public"
|
|
78
|
+
}
|
|
79
|
+
}
|