{
  "name": "astarjs",
  "version": "1.1.3",
  "description": "Pathfinding algorithm library.",
  "main": "lib/index.js",
  "typings": "lib/index.d.ts",
  "scripts": {
    "build-dev": "webpack --config webpack.config.js --env development",
    "build-prod": "webpack --config webpack.config.js --env production",
    "build-lib": "tsc -d --importHelpers",
    "test": "jest",
    "lint": "eslint \"**/*.+(ts)\"",
    "format": "prettier --write \"**/*.+(js|ts|json)\""
  },
  "author": "Thatiane Pisco",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git@github.com:tbpisco/astarjs.git"
  },
  "homepage": "https://github.com/tbpisco/astarjs#readme",
  "devDependencies": {
    "@eslint/js": "^9.20.0",
    "@jest/globals": "^29.7.0",
    "@types/jquery": "^3.5.32",
    "@types/webpack-env": "^1.18.8",
    "@typescript-eslint/eslint-plugin": "^8.24.0",
    "@typescript-eslint/parser": "^8.24.0",
    "eslint": "^9.20.1",
    "jest": "^29.7.0",
    "prettier": "^3.5.1",
    "ts-jest": "^29.2.5",
    "ts-loader": "^9.5.2",
    "tslib": "^2.8.1",
    "typescript": "^5.7.3",
    "typescript-eslint": "^8.24.0",
    "webpack": "^5.97.1",
    "webpack-cli": "^6.0.1"
  },
  "files": [
    "dist/",
    "lib/",
    "package.json",
    "README.md"
  ],
  "keywords": [
    "pathfinding",
    "astar",
    "a star",
    "a-star",
    "path",
    "a*",
    "heuristic",
    "manhattan",
    "diagonal"
  ]
}
