@vayo-hq/ast 0.1.1-beta.0
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.
- package/README.md +62 -0
- package/dist/index.d.ts +240 -0
- package/dist/index.js +1167 -0
- package/package.json +27 -0
package/package.json
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@vayo-hq/ast",
|
|
3
|
+
"version": "0.1.1-beta.0",
|
|
4
|
+
"license": "MIT",
|
|
5
|
+
"description": "Static analysis pass: express-list-endpoints + ts-morph. Produces route/middleware/scope metadata to merge with runtime capture.",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/SayantanCode/vayo.git",
|
|
9
|
+
"directory": "packages/ast"
|
|
10
|
+
},
|
|
11
|
+
"main": "dist/index.js",
|
|
12
|
+
"types": "dist/index.d.ts",
|
|
13
|
+
"files": [
|
|
14
|
+
"dist",
|
|
15
|
+
"!dist/**/*.test.js",
|
|
16
|
+
"!dist/**/*.test.d.ts"
|
|
17
|
+
],
|
|
18
|
+
"scripts": {
|
|
19
|
+
"build": "tsc -b",
|
|
20
|
+
"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
|
+
}
|
|
27
|
+
}
|