prompts.chat 0.0.4 → 0.0.6

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 +4 -2
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # prompts.chat Typed Prompts
1
+ # prompts.chat Prompt Builder
2
2
 
3
3
  A comprehensive developer toolkit for building, validating, and parsing AI prompts. Create structured prompts for chat models, image generators, video AI, and music generation with fluent, type-safe APIs.
4
4
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "prompts.chat",
3
- "version": "0.0.4",
3
+ "version": "0.0.6",
4
4
  "description": "Developer toolkit for AI prompts - build, validate, parse, and connect to prompts.chat",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -71,7 +71,9 @@
71
71
  "typecheck": "tsc --noEmit",
72
72
  "test": "vitest run",
73
73
  "test:watch": "vitest",
74
- "test:coverage": "vitest run --coverage"
74
+ "test:coverage": "vitest run --coverage",
75
+ "docs": "npx ts-node scripts/generate-docs.ts",
76
+ "docs:generate": "npx tsx scripts/generate-docs.ts"
75
77
  },
76
78
  "devDependencies": {
77
79
  "@types/node": "^20",