@vibesdotdev/runtime-surface-cli 0.0.1 → 0.0.2

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 +9 -5
package/README.md ADDED
@@ -0,0 +1,22 @@
1
+ # @vibesdotdev/runtime-surface-cli
2
+
3
+ CLI surface bootstrap for Vibes runtime applications.
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-surface-cli
11
+ # or
12
+ npm install @vibesdotdev/runtime-surface-cli
13
+ ```
14
+
15
+ ## Documentation
16
+
17
+ - Package guide: https://docs.vibes.dev/packages/runtime-surface-cli
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-surface-cli",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -17,9 +17,9 @@
17
17
  "check": "bun --bun tsc -p tsconfig.json --noEmit"
18
18
  },
19
19
  "dependencies": {
20
- "@vibesdotdev/runtime": "0.0.1",
21
- "@vibesdotdev/runtime-environment-bun": "0.0.0",
22
- "@vibesdotdev/cli": "0.0.1"
20
+ "@vibesdotdev/runtime": "0.0.2",
21
+ "@vibesdotdev/runtime-environment-bun": "0.0.1",
22
+ "@vibesdotdev/cli": "0.0.2"
23
23
  },
24
24
  "license": "MIT",
25
25
  "files": [
@@ -27,7 +27,6 @@
27
27
  "src",
28
28
  "bin",
29
29
  "README.md",
30
- "SPEC.md",
31
30
  "LICENSE",
32
31
  "!src/**/__tests__/**",
33
32
  "!src/**/__stubs__/**",
@@ -52,5 +51,10 @@
52
51
  },
53
52
  "vibes": {
54
53
  "visibility": "public-framework"
54
+ },
55
+ "description": "CLI surface bootstrap for Vibes runtime applications.",
56
+ "homepage": "https://docs.vibes.dev/packages/runtime-surface-cli",
57
+ "bugs": {
58
+ "url": "https://docs.vibes.dev/packages/runtime-surface-cli#support"
55
59
  }
56
60
  }