bare 1.28.1 → 1.28.3

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 (3) hide show
  1. package/bin/bare +0 -0
  2. package/index.d.ts +1 -1
  3. package/package.json +3 -3
package/bin/bare CHANGED
File without changes
package/index.d.ts CHANGED
@@ -29,7 +29,7 @@ interface Bare extends EventEmitter<BareEvents> {
29
29
  readonly pid: number
30
30
  exitCode: number
31
31
  readonly version: string
32
- readonly versions: { readonly [package: string]: string }
32
+ readonly versions: { readonly [library: string]: string }
33
33
 
34
34
  exit(code?: number): never
35
35
  suspend(linger?: number): void
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bare",
3
- "version": "1.28.1",
3
+ "version": "1.28.3",
4
4
  "description": "Small and modular JavaScript runtime for desktop and mobile",
5
5
  "exports": {
6
6
  ".": {
@@ -28,8 +28,8 @@
28
28
  "url": "https://github.com/holepunchto/bare/issues"
29
29
  },
30
30
  "homepage": "https://github.com/holepunchto/bare",
31
- "dependencies": {
32
- "bare-runtime": "1.28.1"
31
+ "optionalDependencies": {
32
+ "bare-runtime": "1.28.3"
33
33
  },
34
34
  "peerDependencies": {
35
35
  "bare-buffer": "*",