@atoms-agent/testing 0.3.0 → 0.4.0
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 +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
|
|
13
|
+
npm install -D @atoms-agent/testing@0.4.0
|
|
14
14
|
```
|
|
15
15
|
|
|
16
16
|
Local tarball (publish-ready verification):
|
|
17
17
|
|
|
18
18
|
```bash
|
|
19
|
-
npm install ./atoms-agent-llm-0.
|
|
19
|
+
npm install ./atoms-agent-llm-0.4.0.tgz ./atoms-agent-core-0.4.0.tgz ./atoms-agent-testing-0.4.0.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.
|
|
3
|
+
"version": "0.4.0",
|
|
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
|
+
},
|
|
38
42
|
"engines": {
|
|
39
43
|
"node": ">=22.13"
|
|
40
44
|
},
|
|
41
45
|
"dependencies": {
|
|
42
|
-
"@atoms-agent/core": "0.
|
|
43
|
-
"@atoms-agent/llm": "0.
|
|
44
|
-
},
|
|
45
|
-
"scripts": {
|
|
46
|
-
"test": "vitest run",
|
|
47
|
-
"build": "tsc -b"
|
|
46
|
+
"@atoms-agent/core": "workspace:0.4.0",
|
|
47
|
+
"@atoms-agent/llm": "workspace:0.4.0"
|
|
48
48
|
}
|
|
49
|
-
}
|
|
49
|
+
}
|