@gjczone/repomap 2.4.1

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/install.js +10 -0
  2. package/package.json +39 -0
  3. package/repomap +0 -0
package/install.js ADDED
@@ -0,0 +1,10 @@
1
+ #!/usr/bin/env node
2
+ // Postinstall: ensure the binary is executable
3
+ const fs = require('fs');
4
+ const path = require('path');
5
+ const bin = path.join(__dirname, 'repomap');
6
+ try {
7
+ fs.chmodSync(bin, 0o755);
8
+ } catch (e) {
9
+ // binary might not exist during dev; ignore
10
+ }
package/package.json ADDED
@@ -0,0 +1,39 @@
1
+ {
2
+ "name": "@gjczone/repomap",
3
+ "version": "2.4.1",
4
+ "description": "RepoMap CLI — repository intelligence for AI agents (tree-sitter AST + PageRank + LSP)",
5
+ "bin": {
6
+ "repomap": "repomap"
7
+ },
8
+ "scripts": {
9
+ "postinstall": "node install.js"
10
+ },
11
+ "files": [
12
+ "repomap",
13
+ "install.js"
14
+ ],
15
+ "os": [
16
+ "linux"
17
+ ],
18
+ "cpu": [
19
+ "x64"
20
+ ],
21
+ "keywords": [
22
+ "repomap",
23
+ "codebase",
24
+ "repository",
25
+ "ai-agent",
26
+ "tree-sitter",
27
+ "lsp",
28
+ "cli"
29
+ ],
30
+ "author": "gjczone",
31
+ "license": "MIT",
32
+ "repository": {
33
+ "type": "git",
34
+ "url": "https://github.com/gjczone/repomap"
35
+ },
36
+ "publishConfig": {
37
+ "access": "public"
38
+ }
39
+ }
package/repomap ADDED
Binary file