@vibesdotdev/infra-generate 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 -10
package/README.md ADDED
@@ -0,0 +1,22 @@
1
+ # @vibesdotdev/infra-generate
2
+
3
+ Generation helpers for producing Vibes infrastructure configuration from deployment descriptors.
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/infra-generate
11
+ # or
12
+ npm install @vibesdotdev/infra-generate
13
+ ```
14
+
15
+ ## Documentation
16
+
17
+ - Package guide: https://docs.vibes.dev/packages/infra-generate
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/infra-generate",
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",
@@ -28,17 +28,12 @@
28
28
  "registry": "https://registry.npmjs.org",
29
29
  "access": "public"
30
30
  },
31
- "repository": {
32
- "type": "git",
33
- "url": "git+https://github.com/vibesdotdev/monorepo.git",
34
- "directory": "packages/infra-generate"
35
- },
36
31
  "peerDependencies": {
37
- "@vibesdotdev/runtime": "0.0.1",
38
- "@vibesdotdev/cli": "0.0.1"
32
+ "@vibesdotdev/runtime": "0.0.2",
33
+ "@vibesdotdev/cli": "0.0.2"
39
34
  },
40
35
  "dependencies": {
41
- "@vibesdotdev/infra-core": "0.0.1"
36
+ "@vibesdotdev/infra-core": "0.0.2"
42
37
  },
43
38
  "scripts": {
44
39
  "check": "bun --bun tsc -p tsconfig.json --noEmit",
@@ -50,7 +45,6 @@
50
45
  "src",
51
46
  "bin",
52
47
  "README.md",
53
- "SPEC.md",
54
48
  "LICENSE",
55
49
  "!src/**/__tests__/**",
56
50
  "!src/**/__stubs__/**",
@@ -71,5 +65,10 @@
71
65
  ],
72
66
  "vibes": {
73
67
  "visibility": "public-framework"
68
+ },
69
+ "description": "Generation helpers for producing Vibes infrastructure configuration from deployment descriptors.",
70
+ "homepage": "https://docs.vibes.dev/packages/infra-generate",
71
+ "bugs": {
72
+ "url": "https://docs.vibes.dev/packages/infra-generate#support"
74
73
  }
75
74
  }