{
  "name": "depseek",
  "version": "0.4.6",
  "description": "Seeks for dependency references in JS/TS code",
  "keywords": [
    "dependency",
    "import",
    "require",
    "detect",
    "static-analysis"
  ],
  "type": "module",
  "main": "target/cjs/index.cjs",
  "exports": {
    ".": {
      "types": "./target/dts/index.d.ts",
      "require": "./target/cjs/index.cjs",
      "import": "./target/esm/index.mjs",
      "default": "./target/esm/index.mjs"
    }
  },
  "module": "target/esm/index.mjs",
  "types": "./target/dts/index.d.ts",
  "files": [
    "target/cjs",
    "target/esm",
    "target/dts",
    "target/coverage/lcov.info"
  ],
  "scripts": {
    "build": "concurrently 'npm:build:*'",
    "build:js": "yarn build:esbuild",
    "build:dts": "yarn build:tsc",
    "build:docs": "yarn build:typedoc",
    "test": "concurrently 'npm:test:*'",
    "test:lint": "OXLINTRC=src/test/lint/.oxlintrc.json yarn test:oxlint",
    "test:unit": "yarn test:c8",
    "test:it": "yarn run:void",
    "publish:draft": "yarn build && npm publish --no-git-tag-version --tag draft"
  },
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/antongolub/misc.git",
    "directory": "packages/dep/depseek"
  },
  "author": "Anton Golub <antongolub@antongolub.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/antongolub/misc/issues"
  },
  "homepage": "https://github.com/antongolub/misc/tree/master/packages/dep/depseek",
  "devDependencies": {
    "@antongolub/infra": "workspace:*",
    "@types/node": "^25.5.2",
    "benchmark": "^2.1.4",
    "deps-regex": "^0.2.0",
    "esprima": "^4.0.1"
  }
}
