@agentxm/client-utils 0.4.1 → 0.4.3
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 +11 -0
- package/package.json +11 -5
package/README.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# @agentxm/client-utils
|
|
2
|
+
|
|
3
|
+
> ⚠️ **Unstable, unsupported library.** This package exists to support the
|
|
4
|
+
> [`axm.sh`](https://www.npmjs.com/package/axm.sh) CLI. Its APIs live under
|
|
5
|
+
> `./unstable/*` and can change or disappear in any release without notice.
|
|
6
|
+
>
|
|
7
|
+
> **Use the [`axm.sh`](https://www.npmjs.com/package/axm.sh) CLI instead.**
|
|
8
|
+
>
|
|
9
|
+
> See https://axm.sh.
|
|
10
|
+
|
|
11
|
+
MIT © 2025-2026 AgentXM, Inc.
|
package/package.json
CHANGED
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agentxm/client-utils",
|
|
3
|
-
"version": "0.4.
|
|
4
|
-
"description": "Shared primitive utilities for axm workspaces",
|
|
3
|
+
"version": "0.4.3",
|
|
4
|
+
"description": "Shared primitive utilities for axm workspaces. Unstable and unsupported — use the axm.sh CLI.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
|
+
"homepage": "https://axm.sh",
|
|
8
|
+
"bugs": {
|
|
9
|
+
"url": "https://github.com/agentxm/axm/issues"
|
|
10
|
+
},
|
|
11
|
+
"author": "AgentXM <hello@agentxm.ai> (https://agentxm.ai)",
|
|
7
12
|
"repository": {
|
|
8
13
|
"type": "git",
|
|
9
14
|
"url": "https://github.com/agentxm/axm.git",
|
|
@@ -11,16 +16,17 @@
|
|
|
11
16
|
},
|
|
12
17
|
"exports": {
|
|
13
18
|
"./unstable/env": {
|
|
14
|
-
"types": "./src/unstable/env/index.ts",
|
|
19
|
+
"types": "./dist/src/unstable/env/index.d.ts",
|
|
15
20
|
"default": "./dist/src/unstable/env/index.js"
|
|
16
21
|
},
|
|
17
22
|
"./unstable/interaction": {
|
|
18
|
-
"types": "./src/unstable/interaction/interaction.ts",
|
|
23
|
+
"types": "./dist/src/unstable/interaction/interaction.d.ts",
|
|
19
24
|
"default": "./dist/src/unstable/interaction/interaction.js"
|
|
20
25
|
}
|
|
21
26
|
},
|
|
22
27
|
"files": [
|
|
23
|
-
"dist/src/"
|
|
28
|
+
"dist/src/",
|
|
29
|
+
"!**/*.map"
|
|
24
30
|
],
|
|
25
31
|
"publishConfig": {
|
|
26
32
|
"access": "public"
|