{
  "name": "@traversets/code-extractor",
  "version": "0.0.6",
  "description": "The TypeScript Code Extractor and Analyzer can be handy for RAG (Retrieval-Augmented Generation) systems for codebases. It provides a detailed and structured representation of the codebase that can be converted into embeddings, enabling more effective advanced code analysis, retrieval, and generation tasks.",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist/**/*"
  ],
  "keywords": [
    "typescript",
    "typescript-code-analysis",
    "ts-code-analysis",
    "ast",
    "code-parser",
    "code-mapper",
    "typescript metadata-extraction",
    "dependency-graph",
    "code-structure",
    "rag",
    "retrieval-augmented-generation",
    "codebase-analysis",
    "typescript-parser",
    "code-extraction",
    "source-code-analysis",
    "typescript-analyzer",
    "code-intelligence",
    "code-metadata",
    "typescript-tools",
    "developer-tools",
    "RAG",
    "Agentic-RAG",
    "Code-RAG"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/olasunkanmi-SE/ts-codebase-analyzer"
  },
  "publishConfig": {
    "access": "public"
  },
  "publisher": "Oyinlola Olasunkanmi Raymond",
  "scripts": {
    "test:unit": "jest",
    "test:watch": "jest --watch",
    "test:cov": "jest --coverage --verbose",
    "build": "npx tsc",
    "start": "node dist/index.js",
    "start:dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\"",
    "format": "prettier --write \"src/**/*.ts\""
  },
  "author": "Oyinlola Olasunkanmi Raymond",
  "license": "ISC",
  "devDependencies": {
    "@babel/core": "^7.25.2",
    "@babel/preset-env": "^7.25.3",
    "@types/express": "^4.17.21",
    "@types/jest": "^29.5.12",
    "@types/node": "^20.14.8",
    "babel-jest": "^29.7.0",
    "concurrently": "^8.2.2",
    "jest": "^29.7.0",
    "nodemon": "^3.1.4",
    "prettier": "^3.3.2",
    "ts-jest": "^29.2.4"
  },
  "dependencies": {
    "dotenv": "^16.4.5",
    "express": "^4.19.2",
    "glob": "^11.0.0",
    "joi": "^17.13.3",
    "keytar": "^7.9.0",
    "winston": "^3.13.0",
    "zod": "^3.23.8"
  }
}
