{
    "name": "rtz-io",
    "version": "1.1.4",
    "description": "TypeScript library for RTZ file format serialization and persistence",
    "main": "dist/index.js",
    "types": "dist/index.d.ts",
    "scripts": {
        "build": "tsc",
        "dev": "ts-node src/index.ts",
        "test:make-file": "ts-node test/make-file/index.test.ts",
        "test": "ts-node test/test.ts",
        "test:vitest": "vitest",
        "test:writer": "vitest tests/writer.spec.ts",
        "test:disk": "ts-node --transpile-only test/write-to-disk.test.ts",
        "test:partition": "ts-node --transpile-only test/partition.test.ts",
        "test:json-split": "ts-node --transpile-only test/json-split.test.ts",
        "test:all": "npm run test && npm run test:disk && npm run test:partition && npm run test:json-split",
        "demo:json-split": "ts-node --transpile-only demo/json-split-demo.ts",
        "example": "npx ts-node --transpile-only example.ts",
        "prepublishOnly": "npm run build"
    },
    "bin": {
        "rtz": "dist/cli.js"
    },
    "keywords": [
        "rtz",
        "serialization",
        "persistence",
        "encryption",
        "typescript"
    ],
    "author": "",
    "license": "MIT",
    "devDependencies": {
        "@types/node": "^20.0.0",
        "@types/uuid": "^10.0.0",
        "ts-node": "^10.0.0",
        "typescript": "^5.0.0",
        "vitest": "^3.2.4"
    },
    "dependencies": {
        "jszip": "^3.10.1",
        "uuid": "^11.1.0"
    },
    "files": [
        "dist/**/*"
    ]
}