{
  "name": "skott",
  "version": "0.35.7",
  "description": "Automatically construct and visualize Graphs generated from your JavaScript and TypeScript project",
  "author": "Antoine Coulon",
  "license": "MIT",
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/antoine-coulon/skott.git"
  },
  "bugs": {
    "url": "https://github.com/antoine-coulon/skott/issues"
  },
  "main": "dist/index.js",
  "bin": {
    "skott": "./dist/bin/cli.js"
  },
  "type": "module",
  "exports": {
    ".": "./dist/index.js",
    "./filesystem/*": "./dist/src/filesystem/*.js",
    "./modules/*": "./dist/src/modules/*.js",
    "./graph/*": "./dist/src/graph/*.js",
    "./rendering": "./dist/src/rendering/api.js"
  },
  "types": "./dist/index.d.ts",
  "dependencies": {
    "@parcel/watcher": "2.5.4",
    "@typescript-eslint/typescript-estree": "8.53.0",
    "commander": "^11.0.0",
    "compression": "^1.7.4",
    "depcheck": "1.4.7",
    "digraph-js": "2.2.4",
    "effect": "3.3.2",
    "estree-walker": "^3.0.3",
    "fp-ts": "2.5.0",
    "ignore-walk": "^6.0.3",
    "io-ts": "^2.2.20",
    "is-wsl": "^3.0.0",
    "json5": "^2.2.3",
    "kleur": "^4.1.5",
    "lodash-es": "^4.17.21",
    "meriyah": "^4.3.7",
    "minimatch": "^9.0.3",
    "nanospinner": "^1.2.2",
    "parse-gitignore": "^2.0.0",
    "polka": "^0.5.2",
    "sirv": "^2.0.3",
    "typescript": "5.9.3",
    "skott-webapp": "^2.3.0",
    "fs-tree-structure": "0.0.5"
  },
  "devDependencies": {
    "@nodesecure/eslint-config": "^1.7.0",
    "@types/compression": "^1.7.2",
    "@types/ignore-walk": "^4.0.0",
    "@types/lodash-es": "^4.17.12",
    "@types/node": "^25.0.9",
    "@types/polka": "^0.5.4",
    "@typescript-eslint/eslint-plugin": "^8.53.0",
    "@typescript-eslint/parser": "^8.53.0",
    "eslint": "^8.56.0",
    "eslint-config-prettier": "^8.8.0",
    "eslint-import-resolver-typescript": "^3.6.1",
    "eslint-plugin-import": "^2.27.5",
    "eslint-plugin-prettier": "^5.0.0",
    "memfs": "^3.5.3",
    "prettier": "^3.0.3",
    "rimraf": "^5.0.5",
    "vitest": "3.0.5",
    "@skottorg/config": "0.0.1",
    "remote-tarball-fetcher": "0.1.1"
  },
  "files": [
    "dist",
    "./README.md"
  ],
  "keywords": [
    "javascript",
    "graph",
    "nodejs",
    "visualization",
    "module",
    "dependencies"
  ],
  "scripts": {
    "benchmark": "pnpm vitest bench --config=test/vitest.benchmark.js && node test/benchmark/rewrite-result.js",
    "build": "rimraf ./dist && tsc --project tsconfig.build.json",
    "build:test": "rimraf ./test_dist && tsc --project tsconfig.test.json",
    "lint": "eslint .",
    "lint:fix": "pnpm run lint --fix",
    "prestart": "pnpm run build",
    "start": "node dist/bin/cli.js",
    "test": "pnpm run test:unit && pnpm run test:integration",
    "test:watch": "vitest --watch --config=test/vitest.config.js",
    "test:unit": "vitest run --config=test/vitest.unit.js",
    "test:integration": "vitest run --config=test/vitest.integration.js",
    "test:unit:watch": "vitest --watch --config=test/vitest.unit.js",
    "test:integration:watch": "vitest --watch --config=test/vitest.integration.js"
  }
}