{
    "name": "@theorchard/backend-isni-api",
    "version": "0.0.4",
    "description": "Connect to the various ISNI APIs to retrieve information for artists.",
    "main": "dist/cjs/src/index.js",
    "module": "dist/esm/src/index.js",
    "types": "dist/esm/src/index.d.ts",
    "publishConfig": {
        "registry": "https://npm.pkg.github.com"
    },
    "repository": {
        "type": "git",
        "url": "git+https://github.com/theorchard/backend-js-packages.git"
    },
    "scripts": {
        "build:cjs": "tsc --build ./tsconfig.cjs.json",
        "build:esm": "tsc --build ./tsconfig.esm.json",
        "build": "pnpm run build:esm && pnpm run build:cjs",
        "clean": "rm -rf dist && rm -rf .cache && rm -rf node_modules",
        "format": "biome format --write src && biome check --write src",
        "format:check": "biome format src",
        "lint": "biome ci src",
        "test:unit": "jest",
        "test": "pnpm lint && pnpm test:unit",
        "validate": "tsx scripts/validate.ts"
    },
    "files": [
        "dist"
    ],
    "dependencies": {
        "fast-xml-parser": "^5.2.5",
        "zod": "^3.25.0"
    },
    "devDependencies": {
        "@aws-sdk/client-s3": "^3.864.0",
        "p-limit": "^7.1.0",
        "prompts": "^2.4.2",
        "tsx": "^4.20.4"
    }
}
