{
    "name": "npyjs",
    "version": "1.1.0",
    "description": "Parse npy files in JS",
    "license": "Apache-2.0",
    "author": "Jordan Matelsky <j6k4m8@gmail.com>",
    "repository": "https://github.com/aplbrain/npyjs.git",
    "homepage": "https://github.com/aplbrain/npyjs",
    "bugs": "https://github.com/aplbrain/npyjs/issues",
    "type": "module",
    "main": "./dist/index.cjs",
    "module": "./dist/index.js",
    "types": "./dist/index.d.ts",
    "files": [
        "dist"
    ],
    "exports": {
        ".": {
            "types": "./dist/index.d.ts",
            "import": "./dist/index.js",
            "require": "./dist/index.cjs"
        },
        "./reshape": {
            "types": "./dist/reshape.d.ts",
            "import": "./dist/reshape.js",
            "require": "./dist/reshape.cjs"
        }
    },
    "sideEffects": false,
    "engines": {
        "node": ">=18"
    },
    "scripts": {
        "build": "tsup src/index.ts src/reshape.ts --dts --format esm,cjs --clean",
        "test": "vitest run",
        "typecheck": "tsc --noEmit",
        "prepublishOnly": "npm run build && npm test && npm run typecheck"
    },
    "dependencies": {
        "cross-fetch": "^4.1.0"
    },
    "devDependencies": {
        "tsup": "^8.5.0",
        "typescript": "^5.9.2",
        "vitest": "^3.2.4"
    },
    "keywords": [
        "numpy",
        "npy",
        "javascript",
        "typescript",
        "browser",
        "node",
        "tensor"
    ]
}
