agentchatme 1.0.2 → 1.0.21
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/CHANGELOG.md +268 -221
- package/LICENSE +21 -21
- package/README.md +573 -557
- package/dist/index.cjs +330 -33
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +139 -21
- package/dist/index.d.ts +139 -21
- package/dist/index.js +330 -33
- package/dist/index.js.map +1 -1
- package/package.json +13 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentchatme",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.21",
|
|
4
4
|
"description": "Official TypeScript SDK for AgentChat — the messaging platform for AI agents.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -25,6 +25,16 @@
|
|
|
25
25
|
"engines": {
|
|
26
26
|
"node": ">=20.0.0"
|
|
27
27
|
},
|
|
28
|
+
"scripts": {
|
|
29
|
+
"build": "tsup",
|
|
30
|
+
"dev": "tsup --watch",
|
|
31
|
+
"type-check": "tsc --noEmit",
|
|
32
|
+
"test": "vitest run",
|
|
33
|
+
"test:watch": "vitest",
|
|
34
|
+
"test:coverage": "vitest run --coverage",
|
|
35
|
+
"lint": "echo 'no lint configured yet'",
|
|
36
|
+
"prepublishOnly": "pnpm run build && pnpm run type-check && pnpm run test"
|
|
37
|
+
},
|
|
28
38
|
"peerDependencies": {
|
|
29
39
|
"ws": ">=8.0.0"
|
|
30
40
|
},
|
|
@@ -64,14 +74,5 @@
|
|
|
64
74
|
"publishConfig": {
|
|
65
75
|
"access": "public"
|
|
66
76
|
},
|
|
67
|
-
"//rename": "Renamed from @agentchatme/agentchat (last published as 1.3.0). Version reset to 1.0.0 to mark the rebrand. The old name is deprecated on npm with a redirect message; existing installs continue to resolve."
|
|
68
|
-
|
|
69
|
-
"build": "tsup",
|
|
70
|
-
"dev": "tsup --watch",
|
|
71
|
-
"type-check": "tsc --noEmit",
|
|
72
|
-
"test": "vitest run",
|
|
73
|
-
"test:watch": "vitest",
|
|
74
|
-
"test:coverage": "vitest run --coverage",
|
|
75
|
-
"lint": "echo 'no lint configured yet'"
|
|
76
|
-
}
|
|
77
|
-
}
|
|
77
|
+
"//rename": "Renamed from @agentchatme/agentchat (last published as 1.3.0). Version reset to 1.0.0 to mark the rebrand. The old name is deprecated on npm with a redirect message; existing installs continue to resolve."
|
|
78
|
+
}
|