{
    "name": "ts-inspect-cli",
    "version": "0.1.1",
    "description": "A read-only TypeScript semantic inspection CLI built on ts-morph",
    "keywords": [
        "typescript",
        "ts-morph",
        "cli",
        "ai",
        "llm",
        "agent",
        "semantic",
        "types",
        "code-navigation",
        "cursor",
        "claude",
        "codex",
        "agent-skills"
    ],
    "license": "MIT",
    "author": {
        "name": "Leo Marinchenko",
        "url": "https://github.com/LeoMarinDev"
    },
    "type": "module",
    "sideEffects": false,
    "main": "./dist/index.js",
    "module": "./dist/index.js",
    "types": "./dist/index.d.ts",
    "bin": {
        "ts-inspect": "./dist/ts-inspect.js"
    },
    "exports": {
        ".": {
            "types": "./dist/index.d.ts",
            "import": "./dist/index.js"
        },
        "./ts-inspect": {
            "types": "./dist/ts-inspect.d.ts",
            "import": "./dist/ts-inspect.js"
        }
    },
    "files": [
        "dist",
        "rules"
    ],
    "engines": {
        "node": ">=20.19.0"
    },
    "scripts": {
        "build": "tsup",
        "prepublishOnly": "npm run build",
        "postinstall": "node dist/ts-inspect.js setup --silent",
        "typecheck": "tsc --noEmit",
        "lint:fix": "eslint . --fix",
        "test": "vitest",
        "test:run": "vitest run",
        "test:coverage": "vitest run --coverage --testTimeout 30000",
        "scip:index": "scip-typescript index --output tools/scip/index.scip",
        "scip:stats": "tools/scip/scip stats --from tools/scip/index.scip",
        "scip:json": "tools/scip/scip print --json tools/scip/index.scip",
        "scip:convert": "tools/scip/scip expt-convert --output tools/scip/scip.db tools/scip/index.scip",
        "scip:sqlite": "sqlite3 tools/scip/scip.db",
        "scip:snapshot": "tools/scip/scip snapshot --from tools/scip/index.scip --to tools/scip/scip-snapshot --strict=false",
        "ts-inspect": "tsx src/ts-inspect.ts"
    },
    "dependencies": {
        "ts-morph": "^28.0.0"
    },
    "devDependencies": {
        "@eslint/eslintrc": "^3.3.0",
        "@eslint/js": "^10.0.0",
        "@sourcegraph/scip-typescript": "^0.4.0",
        "@types/node": "^24.0.0",
        "@typescript-eslint/parser": "^8.66.0",
        "@vitest/coverage-v8": "^4.1.10",
        "eslint": "^10.8.0",
        "eslint-import-resolver-typescript": "^4.4.5",
        "eslint-plugin-auto-inferred-types": "^0.1.3",
        "eslint-plugin-import-x": "^4.17.1",
        "globals": "^17.9.0",
        "ts-inspect-cli": "^0.1.1",
        "tsup": "^8.5.1",
        "tsx": "^4.23.0",
        "typescript": "^6.0.3",
        "typescript-eslint": "^8.65.0",
        "vite-tsconfig-paths": "^6.1.1",
        "vitest": "^4.1.10"
    },
    "funding": {
        "type": "custom",
        "url": "https://brainybuilds.com/"
    },
    "publishConfig": {
        "access": "public"
    },
    "repository": {
        "type": "git",
        "url": "https://github.com/LeoMarinDev/ts-inspect-cli.git"
    },
    "homepage": "https://github.com/LeoMarinDev/ts-inspect-cli#readme",
    "bugs": {
        "url": "https://github.com/LeoMarinDev/ts-inspect-cli/issues"
    }
}
