@ethogram/cli 0.1.0-alpha.0 → 0.1.0-alpha.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 +1 -1
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Local Ethogram initialization and read-only developer runtime for TypeScript/Node projects.
4
4
 
5
- This package is prepared as `@ethogram/cli@0.1.0-alpha.0` but has not been published yet.
5
+ The public alpha is available as `@ethogram/cli@0.1.0-alpha.1` under the npm `next` tag.
6
6
 
7
7
  ```bash
8
8
  npx ethogram init
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ethogram/cli",
3
- "version": "0.1.0-alpha.0",
3
+ "version": "0.1.0-alpha.1",
4
4
  "description": "Local Ethogram initialization and read-only developer runtime.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -15,7 +15,7 @@
15
15
  "keywords": ["ai-agents", "behavioral-testing", "typescript", "cli"],
16
16
  "type": "module",
17
17
  "bin": {
18
- "ethogram": "./dist/cli.js"
18
+ "ethogram": "dist/cli.js"
19
19
  },
20
20
  "files": [
21
21
  "dist",
@@ -28,7 +28,7 @@
28
28
  "node": ">=20.9"
29
29
  },
30
30
  "dependencies": {
31
- "@ethogram/core": "0.1.0-alpha.0",
31
+ "@ethogram/core": "0.1.0-alpha.1",
32
32
  "esbuild": "^0.28.2"
33
33
  },
34
34
  "scripts": {