{
    "name": "@jeremy-bankes/vectorics",
    "version": "1.0.0",
    "description": "A linear algebra library.",
    "main": "build/index.js",
    "files": [
        "build"
    ],
    "scripts": {
        "setup": "npm install",
        "clean": "erase /F /S /Q build",
        "build": "npx rollup --bundleConfigAsCjs --config rollup.config.js",
        "build:clean": "npm run clean && npm run build",
        "build:watch": "npx rollup --watch --bundleConfigAsCjs --config rollup.config.js",
        "push": "npm run build:clean && npm publish --access public"
    },
    "repository": {
        "type": "git",
        "url": "git+https://github.com/JeremyBankes/vectorics.git"
    },
    "keywords": [
        "Linear",
        "Algebra",
        "Vector",
        "Matrix",
        "Graphics",
        "Projection"
    ],
    "author": "Jeremy Bankes",
    "license": "UNLICENSED",
    "bugs": {
        "url": "https://github.com/JeremyBankes/vectorics/issues"
    },
    "homepage": "https://github.com/JeremyBankes/vectorics#readme",
    "devDependencies": {
        "@babel/preset-env": "^7.22.5",
        "@rollup/plugin-babel": "^6.0.3",
        "@rollup/plugin-typescript": "^11.1.1",
        "rollup": "^3.25.1",
        "tslib": "^2.5.3",
        "typescript": "^5.1.3"
    }
}