Package not found. Please check the package name and try again.

agency-lang 0.0.62 → 0.0.63

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 CHANGED
@@ -6,7 +6,7 @@ Agent Definition Language
6
6
  Add agency to a project:
7
7
 
8
8
  ```bash
9
- pnpm add agency-lang
9
+ pnpm add agency-lang zod
10
10
  ```
11
11
 
12
12
  You can then start using the agency script on your files:
@@ -22,12 +22,6 @@ agency run infile.agency
22
22
  agency infile.agency
23
23
  ```
24
24
 
25
- Note that the generated files use a couple of other libraries that you will need to install as well:
26
-
27
- ```bash
28
- pnpm i zod
29
- ```
30
-
31
25
  ## troubleshooting
32
26
  ### Weird undefined error
33
27
 
@@ -5,3 +5,4 @@ export * from "./simplemachine/index.js";
5
5
  export * from "./statelogClient.js";
6
6
  export * from "smoltalk";
7
7
  export * from "nanoid";
8
+ export { AgencyConfig } from "./config.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agency-lang",
3
- "version": "0.0.62",
3
+ "version": "0.0.63",
4
4
  "description": "The Agency language",
5
5
  "main": "lib/index.js",
6
6
  "scripts": {