@vayo-hq/ast 0.1.1-beta.0 → 0.1.1-beta.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 (3) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +6 -2
  3. package/package.json +7 -7
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Vayo contributors
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -53,9 +53,13 @@ router.get("/orders/:id", getOrder);
53
53
  from the one-line `summary` every route already gets for free.
54
54
 
55
55
  Most people never call this directly —
56
- [`vayo`](https://www.npmjs.com/package/vayo)'s `vayo scan` command
56
+ [`@vayo-hq/cli`](https://www.npmjs.com/package/@vayo-hq/cli)'s `vayo scan` command
57
57
  is the intended entry point. This package exists standalone for anyone
58
- building custom tooling around the same static pass.
58
+ building custom tooling around the same static pass:
59
+
60
+ ```bash
61
+ npm install @vayo-hq/ast@beta
62
+ ```
59
63
 
60
64
  ## License
61
65
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vayo-hq/ast",
3
- "version": "0.1.1-beta.0",
3
+ "version": "0.1.1-beta.2",
4
4
  "license": "MIT",
5
5
  "description": "Static analysis pass: express-list-endpoints + ts-morph. Produces route/middleware/scope metadata to merge with runtime capture.",
6
6
  "repository": {
@@ -15,13 +15,13 @@
15
15
  "!dist/**/*.test.js",
16
16
  "!dist/**/*.test.d.ts"
17
17
  ],
18
+ "dependencies": {
19
+ "express-list-endpoints": "^7.1.0",
20
+ "ts-morph": "^23.0.0",
21
+ "@vayo-hq/types": "0.1.1-beta.2"
22
+ },
18
23
  "scripts": {
19
24
  "build": "tsc -b",
20
25
  "test": "vitest run"
21
- },
22
- "dependencies": {
23
- "@vayo-hq/types": "workspace:*",
24
- "express-list-endpoints": "^7.1.0",
25
- "ts-morph": "^23.0.0"
26
26
  }
27
- }
27
+ }