@flowatlas/cli 0.1.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/package.json ADDED
@@ -0,0 +1,79 @@
1
+ {
2
+ "name": "@flowatlas/cli",
3
+ "version": "0.1.0",
4
+ "description": "One map of a project that lives in several repositories: read them, join them, ask questions.",
5
+ "license": "MIT",
6
+ "author": {
7
+ "name": "Ruslan Panevschi",
8
+ "url": "https://github.com/Panevschi-Ruslan"
9
+ },
10
+ "homepage": "https://github.com/Panevschi-Ruslan/flowatlas#readme",
11
+ "bugs": {
12
+ "url": "https://github.com/Panevschi-Ruslan/flowatlas/issues"
13
+ },
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "git+https://github.com/Panevschi-Ruslan/flowatlas.git",
17
+ "directory": "packages/cli"
18
+ },
19
+ "keywords": [
20
+ "monorepo",
21
+ "polyrepo",
22
+ "static-analysis",
23
+ "dependency-graph",
24
+ "typescript",
25
+ "nestjs",
26
+ "angular",
27
+ "mcp",
28
+ "architecture"
29
+ ],
30
+ "type": "module",
31
+ "main": "./dist/index.js",
32
+ "types": "./dist/index.d.ts",
33
+ "exports": {
34
+ ".": {
35
+ "types": "./dist/index.d.ts",
36
+ "default": "./dist/index.js"
37
+ }
38
+ },
39
+ "bin": {
40
+ "flowatlas": "./bin/flowatlas.js"
41
+ },
42
+ "files": [
43
+ "dist",
44
+ "bin"
45
+ ],
46
+ "engines": {
47
+ "node": ">=20"
48
+ },
49
+ "publishConfig": {
50
+ "access": "public"
51
+ },
52
+ "scripts": {
53
+ "build": "node ../../scripts/bundle.mjs && mkdir -p dist/visualise && cp src/visualise/page.html dist/visualise/page.html",
54
+ "typecheck": "tsc -p tsconfig.json",
55
+ "test": "vitest run --passWithNoTests"
56
+ },
57
+ "dependencies": {
58
+ "@angular/compiler": "^19.2.0",
59
+ "@inquirer/prompts": "^8.7.2",
60
+ "@modelcontextprotocol/sdk": "^1.22.0",
61
+ "better-sqlite3": "^13.0.3",
62
+ "chokidar": "^5.0.0",
63
+ "commander": "^15.0.0",
64
+ "ts-morph": "^28.0.0",
65
+ "zod": "^4.5.4"
66
+ },
67
+ "devDependencies": {
68
+ "@modelcontextprotocol/sdk": "^1.22.0",
69
+ "@flowatlas/adapters-broker": "workspace:*",
70
+ "@flowatlas/adapters-db": "workspace:*",
71
+ "@flowatlas/adapters-entry": "workspace:*",
72
+ "@flowatlas/contracts": "workspace:*",
73
+ "@flowatlas/core": "workspace:*",
74
+ "@flowatlas/extractor-angular": "workspace:*",
75
+ "@flowatlas/extractor-nestjs": "workspace:*",
76
+ "@flowatlas/linker": "workspace:*",
77
+ "@flowatlas/mcp": "workspace:*"
78
+ }
79
+ }