repogenome 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.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +133 -0
  3. package/dist/cli.js +1998 -0
  4. package/package.json +51 -0
package/package.json ADDED
@@ -0,0 +1,51 @@
1
+ {
2
+ "_author": "MuhammadUsmanGM",
3
+ "_sig": "MUGM-b4e2-7f1a-9c3d",
4
+ "name": "repogenome",
5
+ "version": "0.1.0",
6
+ "description": "Capture the architectural DNA of a codebase and track how it changes over time",
7
+ "license": "MIT",
8
+ "author": "Muhammad Usman",
9
+ "homepage": "https://github.com/MuhammadUsmanGM/repogenome",
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "https://github.com/MuhammadUsmanGM/repogenome.git"
13
+ },
14
+ "keywords": ["architecture", "cli", "drift", "codebase", "analysis", "genome"],
15
+ "engines": {
16
+ "node": ">=18"
17
+ },
18
+ "type": "module",
19
+ "main": "dist/cli.js",
20
+ "bin": {
21
+ "repogenome": "dist/cli.js"
22
+ },
23
+ "files": [
24
+ "dist"
25
+ ],
26
+ "scripts": {
27
+ "build": "tsup",
28
+ "dev": "tsx src/cli.ts",
29
+ "test": "vitest",
30
+ "lint": "eslint src --ext .ts",
31
+ "format": "prettier --write src"
32
+ },
33
+ "dependencies": {
34
+ "chalk": "^5.6.2",
35
+ "commander": "^12.1.0",
36
+ "fast-glob": "^3.3.2",
37
+ "ora": "^8.1.1"
38
+ },
39
+ "devDependencies": {
40
+ "@types/node": "^20.14.0",
41
+ "@typescript-eslint/eslint-plugin": "^8.0.0",
42
+ "@typescript-eslint/parser": "^8.0.0",
43
+ "eslint": "^8.57.0",
44
+ "prettier": "^3.3.2",
45
+ "ts-node": "^10.9.2",
46
+ "tsx": "^4.16.0",
47
+ "tsup": "^8.1.0",
48
+ "typescript": "^5.5.2",
49
+ "vitest": "^2.0.0"
50
+ }
51
+ }