hyperbook 0.99.0 → 0.100.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.
@@ -47,6 +47,7 @@
47
47
  "pyide-canvas": "Canvas",
48
48
  "pyide-input": "Eingabe",
49
49
  "pyide-input-prompt": "Eingabe erforderlich:",
50
+ "pyide-input-submit": "Senden",
50
51
  "pyide-reset": "Zurücksetzen",
51
52
  "pyide-copy": "Kopieren",
52
53
  "pyide-download": "Herunterladen",
@@ -47,6 +47,7 @@
47
47
  "pyide-canvas": "Canvas",
48
48
  "pyide-input": "Input",
49
49
  "pyide-input-prompt": "Input required:",
50
+ "pyide-input-submit": "Send",
50
51
  "pyide-reset": "Reset",
51
52
  "pyide-copy": "Copy",
52
53
  "pyide-download": "Download",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hyperbook",
3
- "version": "0.99.0",
3
+ "version": "0.100.0",
4
4
  "author": "Mike Barkmin",
5
5
  "homepage": "https://github.com/openpatch/hyperbook#readme",
6
6
  "license": "MIT",
@@ -55,15 +55,17 @@
55
55
  "rimraf": "6.0.1",
56
56
  "tar": "7.4.3",
57
57
  "update-check": "1.5.4",
58
+ "vitest": "^4.0.18",
58
59
  "ws": "^8.18.0",
59
- "create-hyperbook": "0.3.6",
60
- "@hyperbook/fs": "0.25.0",
61
- "@hyperbook/types": "0.23.0",
62
- "@hyperbook/markdown": "0.70.0"
60
+ "@hyperbook/markdown": "0.71.0",
61
+ "@hyperbook/types": "0.23.1",
62
+ "@hyperbook/fs": "0.25.1",
63
+ "create-hyperbook": "0.3.7"
63
64
  },
64
65
  "scripts": {
65
66
  "version": "pnpm build",
66
67
  "lint": "tsc --noEmit",
68
+ "test": "vitest",
67
69
  "dev": "ncc build ./index.ts -w -o dist/",
68
70
  "build": "rimraf dist && ncc build ./index.ts -o ./dist/ --no-cache --no-source-map-register --external favicons --external sharp && node postbuild.mjs"
69
71
  }