promptbook 0.80.0 → 0.81.0-7

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 -0
  2. package/package.json +24 -22
package/README.md CHANGED
@@ -227,6 +227,8 @@ Or you can install them separately:
227
227
  - **[@promptbook/documents](https://www.npmjs.com/package/@promptbook/documents)** - Read knowledge from documents like `.docx`, `.odt`,…
228
228
  - **[@promptbook/legacy-documents](https://www.npmjs.com/package/@promptbook/legacy-documents)** - Read knowledge from legacy documents like `.doc`, `.rtf`,…
229
229
  - **[@promptbook/website-crawler](https://www.npmjs.com/package/@promptbook/website-crawler)** - Crawl knowledge from the web
230
+ - **[@promptbook/editable](https://www.npmjs.com/package/@promptbook/editable)** - Editable book as native javascript object with imperative object API
231
+ - **[@promptbook/templates](https://www.npmjs.com/package/@promptbook/templates)** - Usefull templates and examples of books which can be used as a starting point
230
232
  - **[@promptbook/types](https://www.npmjs.com/package/@promptbook/types)** - Just typescript types used in the library
231
233
  - **[@promptbook/cli](https://www.npmjs.com/package/@promptbook/cli)** - Command line interface utilities for promptbooks
232
234
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "promptbook",
3
- "version": "0.80.0",
3
+ "version": "0.81.0-7",
4
4
  "description": "It's time for a paradigm shift. The future of software in plain English, French or Latin",
5
5
  "--note-0": " <- [🐊]",
6
6
  "private": false,
@@ -51,28 +51,30 @@
51
51
  }
52
52
  ],
53
53
  "peerDependencies": {
54
- "@promptbook/core": "0.80.0"
54
+ "@promptbook/core": "0.81.0-7"
55
55
  },
56
56
  "dependencies": {
57
- "@promptbook/anthropic-claude": "0.80.0",
58
- "@promptbook/azure-openai": "0.80.0",
59
- "@promptbook/browser": "0.80.0",
60
- "@promptbook/cli": "0.80.0",
61
- "@promptbook/core": "0.80.0",
62
- "@promptbook/documents": "0.80.0",
63
- "@promptbook/execute-javascript": "0.80.0",
64
- "@promptbook/fake-llm": "0.80.0",
65
- "@promptbook/google": "0.80.0",
66
- "@promptbook/legacy-documents": "0.80.0",
67
- "@promptbook/markdown-utils": "0.80.0",
68
- "@promptbook/node": "0.80.0",
69
- "@promptbook/openai": "0.80.0",
70
- "@promptbook/pdf": "0.80.0",
71
- "@promptbook/remote-client": "0.80.0",
72
- "@promptbook/remote-server": "0.80.0",
73
- "@promptbook/types": "0.80.0",
74
- "@promptbook/utils": "0.80.0",
75
- "@promptbook/vercel": "0.80.0",
76
- "@promptbook/website-crawler": "0.80.0"
57
+ "@promptbook/anthropic-claude": "0.81.0-7",
58
+ "@promptbook/azure-openai": "0.81.0-7",
59
+ "@promptbook/browser": "0.81.0-7",
60
+ "@promptbook/cli": "0.81.0-7",
61
+ "@promptbook/core": "0.81.0-7",
62
+ "@promptbook/documents": "0.81.0-7",
63
+ "@promptbook/editable": "0.81.0-7",
64
+ "@promptbook/execute-javascript": "0.81.0-7",
65
+ "@promptbook/fake-llm": "0.81.0-7",
66
+ "@promptbook/google": "0.81.0-7",
67
+ "@promptbook/legacy-documents": "0.81.0-7",
68
+ "@promptbook/markdown-utils": "0.81.0-7",
69
+ "@promptbook/node": "0.81.0-7",
70
+ "@promptbook/openai": "0.81.0-7",
71
+ "@promptbook/pdf": "0.81.0-7",
72
+ "@promptbook/remote-client": "0.81.0-7",
73
+ "@promptbook/remote-server": "0.81.0-7",
74
+ "@promptbook/templates": "0.81.0-7",
75
+ "@promptbook/types": "0.81.0-7",
76
+ "@promptbook/utils": "0.81.0-7",
77
+ "@promptbook/vercel": "0.81.0-7",
78
+ "@promptbook/website-crawler": "0.81.0-7"
77
79
  }
78
80
  }