repowise 0.0.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/LICENSE +4 -0
  2. package/index.js +2 -0
  3. package/package.json +16 -0
package/LICENSE ADDED
@@ -0,0 +1,4 @@
1
+ Copyright (c) 2026 RepoWise. All rights reserved.
2
+
3
+ This software is proprietary and confidential.
4
+ Unauthorized copying, distribution, or use is strictly prohibited.
package/index.js ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ console.log("RepoWise is coming soon! Visit https://repowise.ai");
package/package.json ADDED
@@ -0,0 +1,16 @@
1
+ {
2
+ "name": "repowise",
3
+ "version": "0.0.1",
4
+ "description": "AI-ready codebase documentation - Coming soon",
5
+ "bin": {
6
+ "repowise": "./index.js"
7
+ },
8
+ "keywords": ["ai", "documentation", "codebase", "context"],
9
+ "author": "RepoWise",
10
+ "license": "SEE LICENSE IN LICENSE",
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "https://github.com/nirhemo/repowise"
14
+ },
15
+ "homepage": "https://repowise.ai"
16
+ }