ptbk 0.92.0-9 → 0.92.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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +15 -3
package/README.md CHANGED
@@ -263,7 +263,7 @@ Or you can install them separately:
263
263
  - **[@promptbook/legacy-documents](https://www.npmjs.com/package/@promptbook/legacy-documents)** - Read knowledge from legacy documents like `.doc`, `.rtf`,…
264
264
  - **[@promptbook/website-crawler](https://www.npmjs.com/package/@promptbook/website-crawler)** - Crawl knowledge from the web
265
265
  - **[@promptbook/editable](https://www.npmjs.com/package/@promptbook/editable)** - Editable book as native javascript object with imperative object API
266
- - **[@promptbook/templates](https://www.npmjs.com/package/@promptbook/templates)** - Usefull templates and examples of books which can be used as a starting point
266
+ - **[@promptbook/templates](https://www.npmjs.com/package/@promptbook/templates)** - Useful templates and examples of books which can be used as a starting point
267
267
  - **[@promptbook/types](https://www.npmjs.com/package/@promptbook/types)** - Just typescript types used in the library
268
268
  - ⭐ **[@promptbook/cli](https://www.npmjs.com/package/@promptbook/cli)** - Command line interface utilities for promptbooks
269
269
  - 🐋 **[Docker image](https://hub.docker.com/r/hejny/promptbook/)** - Promptbook server
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ptbk",
3
- "version": "0.92.0-9",
3
+ "version": "0.92.0",
4
4
  "description": "It's time for a paradigm shift. The future of software in plain English, French or Latin",
5
5
  "private": false,
6
6
  "sideEffects": false,
@@ -47,11 +47,23 @@
47
47
  "node": ">=16.0.0",
48
48
  "npm": ">=8.0.0"
49
49
  },
50
+ "cspell": {
51
+ "version": "0.2",
52
+ "language": "en",
53
+ "ignorePaths": [
54
+ "node_modules",
55
+ ".next",
56
+ "coverage",
57
+ "dist",
58
+ ".git"
59
+ ],
60
+ "words": []
61
+ },
50
62
  "peerDependencies": {
51
- "@promptbook/core": "0.92.0-9"
63
+ "@promptbook/core": "0.92.0"
52
64
  },
53
65
  "dependencies": {
54
- "promptbook": "0.92.0-9"
66
+ "promptbook": "0.92.0"
55
67
  },
56
68
  "bin": {
57
69
  "ptbk": "bin/promptbook-cli-proxy.js"