@yaos-git/blueprint-tui 126.0.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.
Files changed (4) hide show
  1. package/LICENSE +15 -0
  2. package/README.md +513 -0
  3. package/dist/cli.js +1979 -0
  4. package/package.json +87 -0
package/package.json ADDED
@@ -0,0 +1,87 @@
1
+ {
2
+ "name": "@yaos-git/blueprint-tui",
3
+ "version": "126.0.0",
4
+ "description": "Interactive codebase onboarding TUI — turn docs into executable journeys",
5
+ "main": "dist/cli.js",
6
+ "bin": {
7
+ "blueprint-tui": "dist/cli.js"
8
+ },
9
+ "files": [
10
+ "dist"
11
+ ],
12
+ "scripts": {
13
+ "dev": "run-tui -r \"^dev:\"",
14
+ "dev:typescript": "tsgo --watch --noEmit -p tsconfig.app.json",
15
+ "dev:test": "vitest --watch",
16
+ "build": "node esbuild.config.js",
17
+ "lint": "npm run lint:types && npm run lint:fix && npm run lint:format && npm run lint:audit",
18
+ "lint:check": "biome lint .",
19
+ "lint:fix": "biome check . --write",
20
+ "lint:format": "biome format . --write",
21
+ "lint:types": "tsgo --noEmit -p tsconfig.app.json",
22
+ "lint:audit": "npm audit",
23
+ "test": "npm run test:unit && npm run test:react && npm run test:types && npm run test:e2e",
24
+ "test:unit": "vitest run -c vitest.unit.config.ts",
25
+ "test:react": "vitest run -c vitest.react.config.ts",
26
+ "test:types": "vitest run -c vitest.type.config.ts",
27
+ "test:e2e": "npm run build && vitest run -c vitest.e2e.config.ts",
28
+ "coverage": "vitest run --coverage",
29
+ "size": "size-limit",
30
+ "prepublishOnly": "npm run lint:types && npm run lint:check && npm run test:unit && npm run test:react && npm run test:types && npm run test:e2e && npm run lint:audit && npm run build"
31
+ },
32
+ "repository": {
33
+ "type": "git",
34
+ "url": "git+https://github.com/YAOSGit/blueprint-tui.git"
35
+ },
36
+ "bugs": {
37
+ "url": "https://github.com/YAOSGit/blueprint-tui/issues"
38
+ },
39
+ "homepage": "https://github.com/YAOSGit/blueprint-tui#readme",
40
+ "keywords": [
41
+ "cli",
42
+ "tui",
43
+ "onboarding",
44
+ "codebase",
45
+ "documentation",
46
+ "terminal",
47
+ "devtools"
48
+ ],
49
+ "author": {
50
+ "name": "Ygor de Paula",
51
+ "email": "ygorh.de.paula@gmail.com",
52
+ "url": "https://github.com/YAOSGit/blueprint-tui"
53
+ },
54
+ "license": "ISC",
55
+ "engines": {
56
+ "node": ">=18.0.0"
57
+ },
58
+ "type": "module",
59
+ "dependencies": {
60
+ "chalk": "^5.6.2",
61
+ "commander": "^14.0.3",
62
+ "figlet": "^1.11.0",
63
+ "gray-matter": "^4.0.3",
64
+ "marked": "^15.0.0",
65
+ "marked-terminal": "^7.3.0",
66
+ "yaml": "^2.7.1",
67
+ "zod": "^3.25.0"
68
+ },
69
+ "devDependencies": {
70
+ "@biomejs/biome": "^2.3.8",
71
+ "@size-limit/file": "^11.2.0",
72
+ "@testing-library/react": "^16.3.0",
73
+ "@types/figlet": "^1.7.0",
74
+ "@types/node": "^25.0.1",
75
+ "@types/react": "^19.2.7",
76
+ "@typescript/native-preview": "^7.0.0-dev.20251216",
77
+ "@vitest/coverage-v8": "^4.0.15",
78
+ "@yaos-git/run-tui": "^126.0.0",
79
+ "esbuild": "^0.27.1",
80
+ "ink": "^6.5.1",
81
+ "ink-testing-library": "^4.0.0",
82
+ "jsdom": "^27.3.0",
83
+ "react": "^19.2.3",
84
+ "size-limit": "^11.2.0",
85
+ "vitest": "^4.0.15"
86
+ }
87
+ }