{ "name": "atauth", "version": "1.3.0", "description": "AT Protocol (Bluesky) authentication utilities for TypeScript/JavaScript", "main": "dist/index.js", "module": "dist/index.mjs", "types": "dist/index.d.ts", "exports": { ".": { "import": "./dist/index.mjs", "require": "./dist/index.js", "types": "./dist/index.d.ts" }, "./react": { "import": "./dist/react.mjs", "require": "./dist/react.js", "types": "./dist/react.d.ts" } }, "files": [ "dist" ], "scripts": { "build": "tsup src/index.ts src/react.ts --format cjs,esm --dts", "dev": "tsup src/index.ts src/react.ts --format cjs,esm --dts --watch", "test": "vitest run", "test:watch": "vitest", "lint": "eslint src/", "typecheck": "tsc --noEmit" }, "keywords": [ "atproto", "bluesky", "authentication", "oauth", "did", "react" ], "author": "ATAuth Contributors", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/Cache8063/atauth" }, "peerDependencies": { "react": ">=18.0.0", "zustand": ">=4.0.0" }, "peerDependenciesMeta": { "react": { "optional": true }, "zustand": { "optional": true } }, "devDependencies": { "@types/node": "^22.0.0", "@types/react": "^18.3.0", "typescript-eslint": "^8.0.0", "eslint": "^9.0.0", "globals": "^15.0.0", "react": "^18.2.0", "tsup": "^8.3.0", "typescript": "^5.7.0", "vitest": "^2.0.0", "zustand": "^4.4.7" } }