{
    "name": "flexdataset",
    "version": "0.26.0",
    "license": "Apache-2.0",
    "description": "Flexible Dataset Definition (FDD) — validator and tooling for the FDD dataset standard.",
    "author": "Rodrigo Carvajal",
    "repository": {
        "type": "git",
        "url": "git+https://github.com/ksco92/eevee.git"
    },
    "homepage": "https://github.com/ksco92/eevee#readme",
    "bugs": {
        "url": "https://github.com/ksco92/eevee/issues"
    },
    "keywords": [
        "dataset",
        "schema",
        "data-catalog",
        "iceberg",
        "hive",
        "postgres",
        "validation",
        "data-lake"
    ],
    "main": "dist/src/index.js",
    "types": "dist/src/index.d.ts",
    "bin": {
        "flexdataset": "dist/src/cli.js"
    },
    "files": [
        "dist/src/**/*.js",
        "dist/src/**/*.d.ts",
        "dist/src/schema/*.json",
        "README.md",
        "LICENSE"
    ],
    "scripts": {
        "build": "tsc -p tsconfig.build.json && npm run copy-schema",
        "copy-schema": "mkdir -p dist/src/schema && cp src/schema/*.json dist/src/schema/",
        "build:binary": "bun build src/cli.ts --compile --outfile dist-bin/flexdataset",
        "watch": "tsc -p tsconfig.build.json -w",
        "test": "jest",
        "lint": "eslint . --ext .ts,.tsx --report-unused-disable-directives --max-warnings=0 --fix --ignore-pattern '**/*.d.ts'",
        "clean": "rm -rf node_modules package-lock.json build dist",
        "dev": "npm run lint && npm run build && npm run test",
        "prepublishOnly": "npm run build && npm test"
    },
    "dependencies": {
        "@hpcc-js/wasm-graphviz": "^1.22.0",
        "ajv": "^8.17.1",
        "ajv-formats": "^3.0.1"
    },
    "devDependencies": {
        "@eslint/js": "^9.27.0",
        "@types/jest": "^29.5.14",
        "@types/node": "^24.13.2",
        "@typescript-eslint/eslint-plugin": "^8.0.0",
        "@typescript-eslint/parser": "^8.0.0",
        "eslint": "^9.27.0",
        "eslint-plugin-jest": "^28.0.0",
        "globals": "^15.0.0",
        "jest": "^29.7.0",
        "ts-jest": "^29.2.5",
        "typescript": "~5.6.3"
    },
    "engines": {
        "node": ">=22.14"
    },
    "publishConfig": {
        "access": "public"
    }
}
