@vibesdotdev/runtime-environment-bun 0.0.0 → 0.0.1

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 +22 -0
  2. package/package.json +7 -3
package/README.md ADDED
@@ -0,0 +1,22 @@
1
+ # @vibesdotdev/runtime-environment-bun
2
+
3
+ Bun environment bindings for Vibes runtime surfaces.
4
+
5
+ This package is part of the public Vibes framework package set. The source repository is private while the public repository split is being prepared, so package documentation is published on the Vibes docs site.
6
+
7
+ ## Install
8
+
9
+ ```sh
10
+ bun add @vibesdotdev/runtime-environment-bun
11
+ # or
12
+ npm install @vibesdotdev/runtime-environment-bun
13
+ ```
14
+
15
+ ## Documentation
16
+
17
+ - Package guide: https://docs.vibes.dev/packages/runtime-environment-bun
18
+ - Vibes docs: https://docs.vibes.dev
19
+
20
+ ## License
21
+
22
+ MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vibesdotdev/runtime-environment-bun",
3
- "version": "0.0.0",
3
+ "version": "0.0.1",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -25,7 +25,7 @@
25
25
  }
26
26
  },
27
27
  "dependencies": {
28
- "@vibesdotdev/runtime": "0.0.1"
28
+ "@vibesdotdev/runtime": "0.0.2"
29
29
  },
30
30
  "scripts": {
31
31
  "build": "tsc -p tsconfig.json",
@@ -37,7 +37,6 @@
37
37
  "src",
38
38
  "bin",
39
39
  "README.md",
40
- "SPEC.md",
41
40
  "LICENSE",
42
41
  "!src/**/__tests__/**",
43
42
  "!src/**/__stubs__/**",
@@ -62,5 +61,10 @@
62
61
  },
63
62
  "vibes": {
64
63
  "visibility": "public-framework"
64
+ },
65
+ "description": "Bun environment bindings for Vibes runtime surfaces.",
66
+ "homepage": "https://docs.vibes.dev/packages/runtime-environment-bun",
67
+ "bugs": {
68
+ "url": "https://docs.vibes.dev/packages/runtime-environment-bun#support"
65
69
  }
66
70
  }