{
    "name": "meowshapes",
    "version": "0.0.6",
    "description": "A simple library for easy mathematical visualizations",
    "license": "ISC",
    "author": "ad-kr",
    "type": "module",
    "repository": "https://github.com/ad-kr/meowshapes",
    "main": "src/index.ts",
    "scripts": {
        "build": "npx dts-bundle-generator --no-check --external-inlines=@types/three --out-file dist/meowshapes.d.ts ./src/index.ts && npx esbuild src/index.ts --bundle --format=iife --minify --global-name=Runner --outfile=dist/meowshapes.min.js"
    },
    "dependencies": {
        "three": "^0.182.0",
        "typescript": "^5.9.3"
    },
    "exports": {
        ".": {
            "import": "./src/index.ts"
        },
        "./dist/meowshapes.d.ts": "./dist/meowshapes.d.ts",
        "./dist/meowshapes.min.js": "./dist/meowshapes.min.js"
    },
    "devDependencies": {
        "@types/three": "^0.182.0"
    }
}