devlensio 0.2.0 → 0.3.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.
package/dist/index.d.ts CHANGED
@@ -7,9 +7,12 @@ export * from "./summarizer/types.js";
7
7
  export * from "./clustering/index.js";
8
8
  export * from "./pipeline/index.js";
9
9
  export * from "./config/types.js";
10
+ export { queue } from "./jobs/index.js";
11
+ export { storage } from "./storage/index.js";
12
+ export { resolveConfig, initConfig, maskConfig, writeConfig } from "./config/index.js";
13
+ export { readPackageDependencies, categorizeLibrary } from "./graph/thirdPartyLibs.js";
10
14
  export { analyzePipeline } from "./pipeline/index.js";
11
15
  export { runSummarization } from "./summarizer/index.js";
12
- export { resolveConfig } from "./config/index.js";
13
16
  export { computeClusters } from "./clustering/index.js";
14
17
  export { EDGE_LABELS } from "./summarizer/prompts.js";
15
18
  export { CycleGroup, TopologicalResult } from "./summarizer/types.js";
package/dist/index.js CHANGED
@@ -7,9 +7,15 @@ export * from "./summarizer/types.js";
7
7
  export * from "./clustering/index.js";
8
8
  export * from "./pipeline/index.js";
9
9
  export * from "./config/types.js";
10
- // Functions that cloud backend will need
10
+ // Singletons server handlers import these directly
11
+ export { queue } from "./jobs/index.js";
12
+ export { storage } from "./storage/index.js";
13
+ // Config helpers
14
+ export { resolveConfig, initConfig, maskConfig, writeConfig } from "./config/index.js";
15
+ // Pre-scan helpers
16
+ export { readPackageDependencies, categorizeLibrary } from "./graph/thirdPartyLibs.js";
17
+ // Pipeline & analysis
11
18
  export { analyzePipeline } from "./pipeline/index.js";
12
19
  export { runSummarization } from "./summarizer/index.js";
13
- export { resolveConfig } from "./config/index.js";
14
20
  export { computeClusters } from "./clustering/index.js";
15
21
  export { EDGE_LABELS } from "./summarizer/prompts.js";
package/package.json CHANGED
@@ -1,48 +1,48 @@
1
- {
2
- "name": "devlensio",
3
- "version": "0.2.0",
4
- "description": "Codebase intelligence engine for TypeScript/JavaScript/Reactjs/Nextjs repositories.",
5
- "type": "module",
6
- "main": "./dist/index.js",
7
- "module": "./dist/index.js",
8
- "types": "./dist/index.d.ts",
9
- "exports": {
10
- ".": {
11
- "import": "./dist/index.js",
12
- "types": "./dist/index.d.ts"
13
- }
14
- },
15
- "scripts": {
16
- "dev": "bun --watch src/server/index.ts",
17
- "start": "bun src/server/index.ts",
18
- "build": "tsc --project tsconfig.build.json",
19
- "test": "bun test",
20
- "export-graph": "bun src/debug/exportGraph.ts"
21
- },
22
- "keywords": ["codebase", "graph", "ast", "typescript", "javascript", "devtools"],
23
- "author": "",
24
- "license": "AGPL-3.0",
25
- "files": [
26
- "dist/**/*"
27
- ],
28
- "dependencies": {
29
- "@anthropic-ai/sdk": "^0.104.2",
30
- "@google/genai": "^2.8.0",
31
- "dotenv": "^17.4.2",
32
- "openai": "^6.42.0",
33
- "simple-git": "^3.36.0",
34
- "ts-morph": "^28.0.0",
35
- "uuid": "^11.0.0"
36
- },
37
- "devDependencies": {
38
- "@types/bun": "^1.3.9",
39
- "@types/jest": "^30.0.0",
40
- "@types/node": "^25.3.0",
41
- "@types/uuid": "^11.0.0",
42
- "jest": "^30.2.0",
43
- "ts-jest": "^29.4.6",
44
- "ts-node": "^10.9.2",
45
- "ts-node-dev": "^2.0.0",
46
- "typescript": "^5.9.3"
47
- }
1
+ {
2
+ "name": "devlensio",
3
+ "version": "0.3.0",
4
+ "description": "Codebase intelligence engine for TypeScript/JavaScript/Reactjs/Nextjs repositories.",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "import": "./dist/index.js",
12
+ "types": "./dist/index.d.ts"
13
+ }
14
+ },
15
+ "scripts": {
16
+ "dev": "bun --watch src/server/index.ts",
17
+ "start": "bun src/server/index.ts",
18
+ "build": "tsc --project tsconfig.build.json",
19
+ "test": "bun test",
20
+ "export-graph": "bun src/debug/exportGraph.ts"
21
+ },
22
+ "keywords": ["codebase", "graph", "ast", "typescript", "javascript", "devtools"],
23
+ "author": "",
24
+ "license": "AGPL-3.0",
25
+ "files": [
26
+ "dist/**/*"
27
+ ],
28
+ "dependencies": {
29
+ "@anthropic-ai/sdk": "^0.104.2",
30
+ "@google/genai": "^2.8.0",
31
+ "dotenv": "^17.4.2",
32
+ "openai": "^6.42.0",
33
+ "simple-git": "^3.36.0",
34
+ "ts-morph": "^28.0.0",
35
+ "uuid": "^11.0.0"
36
+ },
37
+ "devDependencies": {
38
+ "@types/bun": "^1.3.9",
39
+ "@types/jest": "^30.0.0",
40
+ "@types/node": "^25.3.0",
41
+ "@types/uuid": "^11.0.0",
42
+ "jest": "^30.2.0",
43
+ "ts-jest": "^29.4.6",
44
+ "ts-node": "^10.9.2",
45
+ "ts-node-dev": "^2.0.0",
46
+ "typescript": "^5.9.3"
47
+ }
48
48
  }