@nudge-ai/cli 0.0.1-beta.3 → 0.0.1-beta.4

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 +15 -0
  2. package/package.json +2 -2
package/README.md ADDED
@@ -0,0 +1,15 @@
1
+ # @nudge-ai/cli
2
+
3
+ CLI for generating type-safe prompt files from `.prompt.ts` definitions.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install -D @nudge-ai/cli
9
+ ```
10
+
11
+ ## Documentation
12
+
13
+ For documentation, examples, and configuration options, visit:
14
+
15
+ **[https://nudge-ai.dev](https://nudge-ai.dev)**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nudge-ai/cli",
3
- "version": "0.0.1-beta.3",
3
+ "version": "0.0.1-beta.4",
4
4
  "description": "CLI for Nudge - generate type-safe prompt files for AI applications",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -29,7 +29,7 @@
29
29
  "typecheck": "tsc --noEmit"
30
30
  },
31
31
  "dependencies": {
32
- "@nudge-ai/core": "^0.0.1-beta.0"
32
+ "@nudge-ai/core": "^0.0.1-beta.1"
33
33
  },
34
34
  "peerDependencies": {
35
35
  "zod": "^3.23.0 || ^4.0.0"