repowise 0.0.1 → 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 (52) hide show
  1. package/dist/bin/repowise.js +19723 -0
  2. package/dist/src/commands/config.d.ts +2 -0
  3. package/dist/src/commands/config.d.ts.map +1 -0
  4. package/dist/src/commands/config.js +4 -0
  5. package/dist/src/commands/config.js.map +1 -0
  6. package/dist/src/commands/create.d.ts +2 -0
  7. package/dist/src/commands/create.d.ts.map +1 -0
  8. package/dist/src/commands/create.js +4 -0
  9. package/dist/src/commands/create.js.map +1 -0
  10. package/dist/src/commands/listen.d.ts +4 -0
  11. package/dist/src/commands/listen.d.ts.map +1 -0
  12. package/dist/src/commands/listen.js +5 -0
  13. package/dist/src/commands/listen.js.map +1 -0
  14. package/dist/src/commands/login.d.ts +2 -0
  15. package/dist/src/commands/login.d.ts.map +1 -0
  16. package/dist/src/commands/login.js +4 -0
  17. package/dist/src/commands/login.js.map +1 -0
  18. package/dist/src/commands/logout.d.ts +2 -0
  19. package/dist/src/commands/logout.d.ts.map +1 -0
  20. package/dist/src/commands/logout.js +4 -0
  21. package/dist/src/commands/logout.js.map +1 -0
  22. package/dist/src/commands/status.d.ts +2 -0
  23. package/dist/src/commands/status.d.ts.map +1 -0
  24. package/dist/src/commands/status.js +4 -0
  25. package/dist/src/commands/status.js.map +1 -0
  26. package/dist/src/commands/sync.d.ts +2 -0
  27. package/dist/src/commands/sync.d.ts.map +1 -0
  28. package/dist/src/commands/sync.js +4 -0
  29. package/dist/src/commands/sync.js.map +1 -0
  30. package/dist/src/lib/api.d.ts +2 -0
  31. package/dist/src/lib/api.d.ts.map +1 -0
  32. package/dist/src/lib/api.js +17 -0
  33. package/dist/src/lib/api.js.map +1 -0
  34. package/dist/src/lib/auth.d.ts +10 -0
  35. package/dist/src/lib/auth.d.ts.map +1 -0
  36. package/dist/src/lib/auth.js +27 -0
  37. package/dist/src/lib/auth.js.map +1 -0
  38. package/dist/src/lib/config.d.ts +7 -0
  39. package/dist/src/lib/config.d.ts.map +1 -0
  40. package/dist/src/lib/config.js +19 -0
  41. package/dist/src/lib/config.js.map +1 -0
  42. package/dist/src/lib/prompts.d.ts +2 -0
  43. package/dist/src/lib/prompts.d.ts.map +1 -0
  44. package/dist/src/lib/prompts.js +4 -0
  45. package/dist/src/lib/prompts.js.map +1 -0
  46. package/dist/src/types/index.d.ts +3 -0
  47. package/dist/src/types/index.d.ts.map +1 -0
  48. package/dist/src/types/index.js +2 -0
  49. package/dist/src/types/index.js.map +1 -0
  50. package/package.json +37 -8
  51. package/LICENSE +0 -4
  52. package/index.js +0 -2
@@ -0,0 +1,2 @@
1
+ export declare function config(): void;
2
+ //# sourceMappingURL=config.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../../src/commands/config.ts"],"names":[],"mappings":"AAAA,wBAAgB,MAAM,IAAI,IAAI,CAE7B"}
@@ -0,0 +1,4 @@
1
+ export function config() {
2
+ console.log('Config command - not yet implemented');
3
+ }
4
+ //# sourceMappingURL=config.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"config.js","sourceRoot":"","sources":["../../../src/commands/config.ts"],"names":[],"mappings":"AAAA,MAAM,UAAU,MAAM;IACpB,OAAO,CAAC,GAAG,CAAC,sCAAsC,CAAC,CAAC;AACtD,CAAC"}
@@ -0,0 +1,2 @@
1
+ export declare function create(): void;
2
+ //# sourceMappingURL=create.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"create.d.ts","sourceRoot":"","sources":["../../../src/commands/create.ts"],"names":[],"mappings":"AAAA,wBAAgB,MAAM,IAAI,IAAI,CAE7B"}
@@ -0,0 +1,4 @@
1
+ export function create() {
2
+ console.log('Create command - not yet implemented');
3
+ }
4
+ //# sourceMappingURL=create.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"create.js","sourceRoot":"","sources":["../../../src/commands/create.ts"],"names":[],"mappings":"AAAA,MAAM,UAAU,MAAM;IACpB,OAAO,CAAC,GAAG,CAAC,sCAAsC,CAAC,CAAC;AACtD,CAAC"}
@@ -0,0 +1,4 @@
1
+ export declare function listen(_options: {
2
+ install?: boolean;
3
+ }): void;
4
+ //# sourceMappingURL=listen.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"listen.d.ts","sourceRoot":"","sources":["../../../src/commands/listen.ts"],"names":[],"mappings":"AAAA,wBAAgB,MAAM,CAAC,QAAQ,EAAE;IAAE,OAAO,CAAC,EAAE,OAAO,CAAA;CAAE,GAAG,IAAI,CAG5D"}
@@ -0,0 +1,5 @@
1
+ export function listen(_options) {
2
+ void _options;
3
+ console.log('Listen command - not yet implemented');
4
+ }
5
+ //# sourceMappingURL=listen.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"listen.js","sourceRoot":"","sources":["../../../src/commands/listen.ts"],"names":[],"mappings":"AAAA,MAAM,UAAU,MAAM,CAAC,QAA+B;IACpD,KAAK,QAAQ,CAAC;IACd,OAAO,CAAC,GAAG,CAAC,sCAAsC,CAAC,CAAC;AACtD,CAAC"}
@@ -0,0 +1,2 @@
1
+ export declare function login(): void;
2
+ //# sourceMappingURL=login.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"login.d.ts","sourceRoot":"","sources":["../../../src/commands/login.ts"],"names":[],"mappings":"AAAA,wBAAgB,KAAK,IAAI,IAAI,CAE5B"}
@@ -0,0 +1,4 @@
1
+ export function login() {
2
+ console.log('Login command - not yet implemented');
3
+ }
4
+ //# sourceMappingURL=login.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"login.js","sourceRoot":"","sources":["../../../src/commands/login.ts"],"names":[],"mappings":"AAAA,MAAM,UAAU,KAAK;IACnB,OAAO,CAAC,GAAG,CAAC,qCAAqC,CAAC,CAAC;AACrD,CAAC"}
@@ -0,0 +1,2 @@
1
+ export declare function logout(): void;
2
+ //# sourceMappingURL=logout.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"logout.d.ts","sourceRoot":"","sources":["../../../src/commands/logout.ts"],"names":[],"mappings":"AAAA,wBAAgB,MAAM,IAAI,IAAI,CAE7B"}
@@ -0,0 +1,4 @@
1
+ export function logout() {
2
+ console.log('Logout command - not yet implemented');
3
+ }
4
+ //# sourceMappingURL=logout.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"logout.js","sourceRoot":"","sources":["../../../src/commands/logout.ts"],"names":[],"mappings":"AAAA,MAAM,UAAU,MAAM;IACpB,OAAO,CAAC,GAAG,CAAC,sCAAsC,CAAC,CAAC;AACtD,CAAC"}
@@ -0,0 +1,2 @@
1
+ export declare function status(): void;
2
+ //# sourceMappingURL=status.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"status.d.ts","sourceRoot":"","sources":["../../../src/commands/status.ts"],"names":[],"mappings":"AAAA,wBAAgB,MAAM,IAAI,IAAI,CAE7B"}
@@ -0,0 +1,4 @@
1
+ export function status() {
2
+ console.log('Status command - not yet implemented');
3
+ }
4
+ //# sourceMappingURL=status.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"status.js","sourceRoot":"","sources":["../../../src/commands/status.ts"],"names":[],"mappings":"AAAA,MAAM,UAAU,MAAM;IACpB,OAAO,CAAC,GAAG,CAAC,sCAAsC,CAAC,CAAC;AACtD,CAAC"}
@@ -0,0 +1,2 @@
1
+ export declare function sync(): void;
2
+ //# sourceMappingURL=sync.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sync.d.ts","sourceRoot":"","sources":["../../../src/commands/sync.ts"],"names":[],"mappings":"AAAA,wBAAgB,IAAI,IAAI,IAAI,CAE3B"}
@@ -0,0 +1,4 @@
1
+ export function sync() {
2
+ console.log('Sync command - not yet implemented');
3
+ }
4
+ //# sourceMappingURL=sync.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sync.js","sourceRoot":"","sources":["../../../src/commands/sync.ts"],"names":[],"mappings":"AAAA,MAAM,UAAU,IAAI;IAClB,OAAO,CAAC,GAAG,CAAC,oCAAoC,CAAC,CAAC;AACpD,CAAC"}
@@ -0,0 +1,2 @@
1
+ export declare function apiRequest<T>(path: string, options?: RequestInit): Promise<T>;
2
+ //# sourceMappingURL=api.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../../../src/lib/api.ts"],"names":[],"mappings":"AAMA,wBAAsB,UAAU,CAAC,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,CAAC,CAAC,CAgBnF"}
@@ -0,0 +1,17 @@
1
+ const API_URL = process.env['REPOWISE_API_URL'] ?? 'https://api.repowise.ai';
2
+ export async function apiRequest(path, options) {
3
+ const response = await fetch(`${API_URL}${path}`, {
4
+ ...options,
5
+ headers: {
6
+ 'Content-Type': 'application/json',
7
+ ...options?.headers,
8
+ },
9
+ });
10
+ if (!response.ok) {
11
+ const body = (await response.json());
12
+ throw new Error(body.error?.message ?? 'Request failed');
13
+ }
14
+ const json = (await response.json());
15
+ return json.data;
16
+ }
17
+ //# sourceMappingURL=api.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"api.js","sourceRoot":"","sources":["../../../src/lib/api.ts"],"names":[],"mappings":"AAAA,MAAM,OAAO,GAAG,OAAO,CAAC,GAAG,CAAC,kBAAkB,CAAC,IAAI,yBAAyB,CAAC;AAM7E,MAAM,CAAC,KAAK,UAAU,UAAU,CAAI,IAAY,EAAE,OAAqB;IACrE,MAAM,QAAQ,GAAG,MAAM,KAAK,CAAC,GAAG,OAAO,GAAG,IAAI,EAAE,EAAE;QAChD,GAAG,OAAO;QACV,OAAO,EAAE;YACP,cAAc,EAAE,kBAAkB;YAClC,GAAG,OAAO,EAAE,OAAO;SACpB;KACF,CAAC,CAAC;IAEH,IAAI,CAAC,QAAQ,CAAC,EAAE,EAAE,CAAC;QACjB,MAAM,IAAI,GAAG,CAAC,MAAM,QAAQ,CAAC,IAAI,EAAE,CAAa,CAAC;QACjD,MAAM,IAAI,KAAK,CAAC,IAAI,CAAC,KAAK,EAAE,OAAO,IAAI,gBAAgB,CAAC,CAAC;IAC3D,CAAC;IAED,MAAM,IAAI,GAAG,CAAC,MAAM,QAAQ,CAAC,IAAI,EAAE,CAAgB,CAAC;IACpD,OAAO,IAAI,CAAC,IAAI,CAAC;AACnB,CAAC"}
@@ -0,0 +1,10 @@
1
+ export interface StoredCredentials {
2
+ accessToken: string;
3
+ refreshToken: string;
4
+ idToken: string;
5
+ expiresAt: number;
6
+ }
7
+ export declare function getStoredCredentials(): Promise<StoredCredentials | null>;
8
+ export declare function storeCredentials(credentials: StoredCredentials): Promise<void>;
9
+ export declare function clearCredentials(): Promise<void>;
10
+ //# sourceMappingURL=auth.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"auth.d.ts","sourceRoot":"","sources":["../../../src/lib/auth.ts"],"names":[],"mappings":"AAOA,MAAM,WAAW,iBAAiB;IAChC,WAAW,EAAE,MAAM,CAAC;IACpB,YAAY,EAAE,MAAM,CAAC;IACrB,OAAO,EAAE,MAAM,CAAC;IAChB,SAAS,EAAE,MAAM,CAAC;CACnB;AAED,wBAAsB,oBAAoB,IAAI,OAAO,CAAC,iBAAiB,GAAG,IAAI,CAAC,CAO9E;AAED,wBAAsB,gBAAgB,CAAC,WAAW,EAAE,iBAAiB,GAAG,OAAO,CAAC,IAAI,CAAC,CAGpF;AAED,wBAAsB,gBAAgB,IAAI,OAAO,CAAC,IAAI,CAAC,CAMtD"}
@@ -0,0 +1,27 @@
1
+ import { readFile, writeFile, mkdir } from 'node:fs/promises';
2
+ import { homedir } from 'node:os';
3
+ import { join } from 'node:path';
4
+ const CONFIG_DIR = join(homedir(), '.repowise');
5
+ const CREDENTIALS_PATH = join(CONFIG_DIR, 'credentials.json');
6
+ export async function getStoredCredentials() {
7
+ try {
8
+ const data = await readFile(CREDENTIALS_PATH, 'utf-8');
9
+ return JSON.parse(data);
10
+ }
11
+ catch {
12
+ return null;
13
+ }
14
+ }
15
+ export async function storeCredentials(credentials) {
16
+ await mkdir(CONFIG_DIR, { recursive: true });
17
+ await writeFile(CREDENTIALS_PATH, JSON.stringify(credentials, null, 2), { mode: 0o600 });
18
+ }
19
+ export async function clearCredentials() {
20
+ try {
21
+ await writeFile(CREDENTIALS_PATH, '{}', { mode: 0o600 });
22
+ }
23
+ catch {
24
+ // Ignore if file doesn't exist
25
+ }
26
+ }
27
+ //# sourceMappingURL=auth.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"auth.js","sourceRoot":"","sources":["../../../src/lib/auth.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,SAAS,EAAE,KAAK,EAAE,MAAM,kBAAkB,CAAC;AAC9D,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAClC,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAC;AAEjC,MAAM,UAAU,GAAG,IAAI,CAAC,OAAO,EAAE,EAAE,WAAW,CAAC,CAAC;AAChD,MAAM,gBAAgB,GAAG,IAAI,CAAC,UAAU,EAAE,kBAAkB,CAAC,CAAC;AAS9D,MAAM,CAAC,KAAK,UAAU,oBAAoB;IACxC,IAAI,CAAC;QACH,MAAM,IAAI,GAAG,MAAM,QAAQ,CAAC,gBAAgB,EAAE,OAAO,CAAC,CAAC;QACvD,OAAO,IAAI,CAAC,KAAK,CAAC,IAAI,CAAsB,CAAC;IAC/C,CAAC;IAAC,MAAM,CAAC;QACP,OAAO,IAAI,CAAC;IACd,CAAC;AACH,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,gBAAgB,CAAC,WAA8B;IACnE,MAAM,KAAK,CAAC,UAAU,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,CAAC;IAC7C,MAAM,SAAS,CAAC,gBAAgB,EAAE,IAAI,CAAC,SAAS,CAAC,WAAW,EAAE,IAAI,EAAE,CAAC,CAAC,EAAE,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC,CAAC;AAC3F,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,gBAAgB;IACpC,IAAI,CAAC;QACH,MAAM,SAAS,CAAC,gBAAgB,EAAE,IAAI,EAAE,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC,CAAC;IAC3D,CAAC;IAAC,MAAM,CAAC;QACP,+BAA+B;IACjC,CAAC;AACH,CAAC"}
@@ -0,0 +1,7 @@
1
+ export interface CliConfig {
2
+ apiUrl?: string;
3
+ wsUrl?: string;
4
+ }
5
+ export declare function getConfig(): Promise<CliConfig>;
6
+ export declare function saveConfig(config: CliConfig): Promise<void>;
7
+ //# sourceMappingURL=config.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../../src/lib/config.ts"],"names":[],"mappings":"AAOA,MAAM,WAAW,SAAS;IACxB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,wBAAsB,SAAS,IAAI,OAAO,CAAC,SAAS,CAAC,CAOpD;AAED,wBAAsB,UAAU,CAAC,MAAM,EAAE,SAAS,GAAG,OAAO,CAAC,IAAI,CAAC,CAGjE"}
@@ -0,0 +1,19 @@
1
+ import { readFile, writeFile, mkdir } from 'node:fs/promises';
2
+ import { homedir } from 'node:os';
3
+ import { join } from 'node:path';
4
+ const CONFIG_DIR = join(homedir(), '.repowise');
5
+ const CONFIG_PATH = join(CONFIG_DIR, 'config.json');
6
+ export async function getConfig() {
7
+ try {
8
+ const data = await readFile(CONFIG_PATH, 'utf-8');
9
+ return JSON.parse(data);
10
+ }
11
+ catch {
12
+ return {};
13
+ }
14
+ }
15
+ export async function saveConfig(config) {
16
+ await mkdir(CONFIG_DIR, { recursive: true });
17
+ await writeFile(CONFIG_PATH, JSON.stringify(config, null, 2));
18
+ }
19
+ //# sourceMappingURL=config.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"config.js","sourceRoot":"","sources":["../../../src/lib/config.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,SAAS,EAAE,KAAK,EAAE,MAAM,kBAAkB,CAAC;AAC9D,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAClC,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAC;AAEjC,MAAM,UAAU,GAAG,IAAI,CAAC,OAAO,EAAE,EAAE,WAAW,CAAC,CAAC;AAChD,MAAM,WAAW,GAAG,IAAI,CAAC,UAAU,EAAE,aAAa,CAAC,CAAC;AAOpD,MAAM,CAAC,KAAK,UAAU,SAAS;IAC7B,IAAI,CAAC;QACH,MAAM,IAAI,GAAG,MAAM,QAAQ,CAAC,WAAW,EAAE,OAAO,CAAC,CAAC;QAClD,OAAO,IAAI,CAAC,KAAK,CAAC,IAAI,CAAc,CAAC;IACvC,CAAC;IAAC,MAAM,CAAC;QACP,OAAO,EAAE,CAAC;IACZ,CAAC;AACH,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,UAAU,CAAC,MAAiB;IAChD,MAAM,KAAK,CAAC,UAAU,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,CAAC;IAC7C,MAAM,SAAS,CAAC,WAAW,EAAE,IAAI,CAAC,SAAS,CAAC,MAAM,EAAE,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC;AAChE,CAAC"}
@@ -0,0 +1,2 @@
1
+ export declare const PLACEHOLDER = true;
2
+ //# sourceMappingURL=prompts.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"prompts.d.ts","sourceRoot":"","sources":["../../../src/lib/prompts.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,WAAW,OAAO,CAAC"}
@@ -0,0 +1,4 @@
1
+ // Interactive prompt helpers using inquirer
2
+ // Will be implemented in Story 3.4 (Interactive Onboarding Interview)
3
+ export const PLACEHOLDER = true;
4
+ //# sourceMappingURL=prompts.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"prompts.js","sourceRoot":"","sources":["../../../src/lib/prompts.ts"],"names":[],"mappings":"AAAA,4CAA4C;AAC5C,sEAAsE;AACtE,MAAM,CAAC,MAAM,WAAW,GAAG,IAAI,CAAC"}
@@ -0,0 +1,3 @@
1
+ export type { StoredCredentials } from '../lib/auth.js';
2
+ export type { CliConfig } from '../lib/config.js';
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/types/index.ts"],"names":[],"mappings":"AAAA,YAAY,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AACxD,YAAY,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/types/index.ts"],"names":[],"mappings":""}
package/package.json CHANGED
@@ -1,16 +1,45 @@
1
1
  {
2
2
  "name": "repowise",
3
- "version": "0.0.1",
4
- "description": "AI-ready codebase documentation - Coming soon",
3
+ "version": "0.1.0",
4
+ "type": "module",
5
+ "description": "AI-optimized codebase context generator",
5
6
  "bin": {
6
- "repowise": "./index.js"
7
+ "repowise": "dist/bin/repowise.js"
7
8
  },
8
- "keywords": ["ai", "documentation", "codebase", "context"],
9
- "author": "RepoWise",
10
- "license": "SEE LICENSE IN LICENSE",
9
+ "files": [
10
+ "dist"
11
+ ],
12
+ "scripts": {
13
+ "build": "tsc",
14
+ "build:bundle": "tsup",
15
+ "lint": "eslint src/ bin/",
16
+ "test": "vitest run",
17
+ "type-check": "tsc --noEmit"
18
+ },
19
+ "dependencies": {
20
+ "chalk": "^5.4.0",
21
+ "commander": "^12.1.0",
22
+ "inquirer": "^12.3.0",
23
+ "open": "^11.0.0",
24
+ "ora": "^8.2.0"
25
+ },
26
+ "devDependencies": {
27
+ "@repowise/listener": "*",
28
+ "@repowise/shared": "*",
29
+ "tsup": "^8.5.1"
30
+ },
31
+ "keywords": [
32
+ "ai",
33
+ "documentation",
34
+ "codebase",
35
+ "context",
36
+ "repowise"
37
+ ],
38
+ "homepage": "https://repowise.ai",
11
39
  "repository": {
12
40
  "type": "git",
13
- "url": "https://github.com/nirhemo/repowise"
41
+ "url": "git+https://github.com/nirhemo/repowise.git"
14
42
  },
15
- "homepage": "https://repowise.ai"
43
+ "author": "RepoWise",
44
+ "license": "MIT"
16
45
  }
package/LICENSE DELETED
@@ -1,4 +0,0 @@
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 DELETED
@@ -1,2 +0,0 @@
1
- #!/usr/bin/env node
2
- console.log("RepoWise is coming soon! Visit https://repowise.ai");