@atoms-agent/testing 0.4.0 → 0.4.1

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 +8 -8
package/README.md CHANGED
@@ -10,13 +10,13 @@ application runtime installs unless you intentionally run offline demos.
10
10
  ## Install
11
11
 
12
12
  ```bash
13
- npm install -D @atoms-agent/testing@0.4.0
13
+ npm install -D @atoms-agent/testing@0.4.1
14
14
  ```
15
15
 
16
16
  Local tarball (publish-ready verification):
17
17
 
18
18
  ```bash
19
- npm install ./atoms-agent-llm-0.4.0.tgz ./atoms-agent-core-0.4.0.tgz ./atoms-agent-testing-0.4.0.tgz
19
+ npm install ./atoms-agent-llm-0.4.1.tgz ./atoms-agent-core-0.4.1.tgz ./atoms-agent-testing-0.4.1.tgz
20
20
  ```
21
21
 
22
22
  ## Usage
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atoms-agent/testing",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "type": "module",
5
5
  "description": "ScriptedModel, fake clock, deterministic ids and loop fixtures for offline agent testing",
6
6
  "license": "MIT",
@@ -35,15 +35,15 @@
35
35
  "README.md",
36
36
  "LICENSE"
37
37
  ],
38
- "scripts": {
39
- "test": "vitest run",
40
- "build": "tsc -b"
41
- },
42
38
  "engines": {
43
39
  "node": ">=22.13"
44
40
  },
45
41
  "dependencies": {
46
- "@atoms-agent/core": "workspace:0.4.0",
47
- "@atoms-agent/llm": "workspace:0.4.0"
42
+ "@atoms-agent/core": "0.4.1",
43
+ "@atoms-agent/llm": "0.4.1"
44
+ },
45
+ "scripts": {
46
+ "test": "vitest run",
47
+ "build": "tsc -b"
48
48
  }
49
- }
49
+ }