{
  "name": "simple-ascii-chart",
  "version": "5.4.0",
  "description": "Simple ascii chart generator",
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    "import": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "require": {
      "types": "./dist/index.d.cts",
      "require": "./dist/index.cjs"
    }
  },
  "scripts": {
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "test": "jest --coverage",
    "test:watch": "jest --watch",
    "check-exports": "npx --yes @arethetypeswrong/cli --pack .",
    "build": "tsup src/index.ts --format cjs,esm --clean --sourcemap && tsc -p tsconfig.build.json && node scripts/fix-dts-imports.mjs && cp dist/index.d.ts dist/index.d.cts",
    "build:watch": "tsup src/index.ts --format cjs,esm --clean --sourcemap --watch",
    "examples": "tsup src/scripts/show-examples.ts --watch --onSuccess \"clear && node dist/show-examples.cjs\"",
    "snapshots:generate": "tsup src/scripts/generate-snapshots.ts --onSuccess \"node dist/generate-snapshots.cjs\"",
    "prepare": "npm run build && npm test && npm run lint"
  },
  "devDependencies": {
    "@types/jest": "^30.0.0",
    "@types/node": "^25.5.2",
    "@typescript-eslint/eslint-plugin": "^8.32.0",
    "@typescript-eslint/parser": "^8.32.0",
    "eslint": "^10.1.0",
    "eslint-config-prettier": "^10.1.5",
    "eslint-plugin-import": "^2.28.1",
    "eslint-plugin-jsdoc": "^62.9.0",
    "jest": "^30.3.0",
    "prettier": "^3.5.3",
    "ts-jest": "^29.3.2",
    "tsup": "^8.4.0",
    "typescript": "^6.0.2"
  },
  "keywords": [
    "ascii",
    "js",
    "ts",
    "chart",
    "line chart",
    "bar chart",
    "plot"
  ],
  "author": "gtktsc",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/gtktsc/ascii-chart.git"
  },
  "bugs": {
    "url": "https://github.com/gtktsc/ascii-chart/issues"
  },
  "homepage": "https://github.com/gtktsc/ascii-chart#readme",
  "files": [
    "dist/**/*"
  ]
}
