{
  "name": "@elchininet/isometric",
  "version": "4.0.0",
  "description": "A JavaScript library written in TypeScript to create isometric projections using SVGs",
  "main": "index.js",
  "module": "esm/index.js",
  "types": "index.d.ts",
  "exports": {
    ".": {
      "require": {
        "types": "./index.d.ts",
        "default": "./index.js"
      },
      "import": {
        "types": "./esm/index.d.ts",
        "default": "./esm/index.js"
      }
    },
    "./node": {
      "require": {
        "types": "./node.d.ts",
        "default": "./index.node.js"
      },
      "import": {
        "types": "./esm/node.d.ts",
        "default": "./esm/index.node.js"
      }
    }
  },
  "files": [
    "esm/**/*",
    "web/**/*",
    "index.d.ts",
    "node.d.ts",
    "index.node.js",
    "index.js"
  ],
  "scripts": {
    "clean": "./scripts/clean.sh",
    "finish": "./scripts/finish.sh",
    "build": "pnpm clean && rollup --config rollup.config.js --bundleConfigAsCjs && pnpm finish",
    "demo": "webpack serve --open --config webpack.demo.config.js",
    "docs": "webpack --config webpack.demo.publish.js --mode production",
    "test:ts": "tsc --noEmit",
    "test:lint": "eslint src/**/* tests/*.ts demo/**/*.js",
    "test:unit": "jest --verbose",
    "test:all": "pnpm test:ts && pnpm test:lint && pnpm test:unit",
    "prepare": "pnpm build",
    "prepublishOnly": "pnpm test:all",
    "version": "git add .",
    "postversion": "git push && git push --tags"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/elchininet/isometric"
  },
  "keywords": [
    "isometric",
    "projection",
    "isometric-projection",
    "svg",
    "draw",
    "drawing",
    "engineering",
    "engineering-drawing",
    "coordinates",
    "graphics",
    "typescript"
  ],
  "author": "ElChiniNet",
  "license": "Apache-2.0",
  "peerDependencies": {
    "jsdom": "^18.0.1"
  },
  "devDependencies": {
    "@eslint/js": "^10.0.1",
    "@rollup/plugin-terser": "^1.0.0",
    "@rollup/plugin-typescript": "^12.3.0",
    "@types/jest": "^30.0.0",
    "@types/node": "^25.5.0",
    "clean-webpack-plugin": "^4.0.0",
    "copy-webpack-plugin": "^14.0.0",
    "css-loader": "^7.1.4",
    "eslint": "^10.1.0",
    "globals": "^17.4.0",
    "google-code-prettify": "^1.0.5",
    "html-webpack-plugin": "^5.6.6",
    "jest": "^30.3.0",
    "jest-environment-jsdom": "^30.3.0",
    "mini-css-extract-plugin": "^2.10.2",
    "rimraf": "^6.1.3",
    "rollup": "^4.60.0",
    "rollup-plugin-dts": "^6.4.1",
    "rollup-plugin-tsconfig-paths": "^1.5.2",
    "sass": "^1.98.0",
    "sass-loader": "^16.0.7",
    "style-loader": "^4.0.0",
    "ts-jest": "^29.4.6",
    "ts-loader": "^9.5.4",
    "tslib": "^2.8.1",
    "typescript": "^6.0.2",
    "typescript-eslint": "^8.57.2",
    "webpack": "^5.105.4",
    "webpack-cli": "^7.0.2",
    "webpack-dev-server": "^5.2.3"
  },
  "engines": {
    "node": ">=12.22.0"
  },
  "dependencies": {
    "jsdom": "^29.0.1"
  },
  "pnpm": {
    "overrides": {
      "lodash@>=4.0.0 <=4.17.22": ">=4.17.23",
      "@isaacs/brace-expansion@<=5.0.0": ">=5.0.1"
    }
  }
}
