agents-mdx 0.0.9 → 0.0.10

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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -152,7 +152,7 @@ export const mcpServers = {
152
152
  Include or exclude content based on the environment. Import `env` from the runtime:
153
153
 
154
154
  ```mdx
155
- import { env } from '@agents-mdx/runtime/env';
155
+ import { env } from '@agents-mdx/runtime';
156
156
  ```
157
157
 
158
158
  **What's available:**
@@ -166,7 +166,7 @@ import { env } from '@agents-mdx/runtime/env';
166
166
  Only include instructions for [`ck`](https://github.com/nicholasgriffintn/ck) when it's installed:
167
167
 
168
168
  ```mdx
169
- import { env } from '@agents-mdx/runtime/env';
169
+ import { env } from '@agents-mdx/runtime';
170
170
 
171
171
  {(() => {
172
172
  if (!env.hasExecutable('ck')) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agents-mdx",
3
- "version": "0.0.9",
3
+ "version": "0.0.10",
4
4
  "type": "module",
5
5
  "author": "Nemikolh",
6
6
  "license": "MIT",
@@ -22,7 +22,7 @@
22
22
  "typescript": "^5.9.3"
23
23
  },
24
24
  "dependencies": {
25
- "@agents-mdx/cli": "0.0.9"
25
+ "@agents-mdx/cli": "0.0.10"
26
26
  },
27
27
  "scripts": {
28
28
  "build": "tsc",