AtAuth
1{
2 "name": "atauth",
3 "version": "1.3.0",
4 "description": "AT Protocol (Bluesky) authentication utilities for TypeScript/JavaScript",
5 "main": "dist/index.js",
6 "module": "dist/index.mjs",
7 "types": "dist/index.d.ts",
8 "exports": {
9 ".": {
10 "import": "./dist/index.mjs",
11 "require": "./dist/index.js",
12 "types": "./dist/index.d.ts"
13 },
14 "./react": {
15 "import": "./dist/react.mjs",
16 "require": "./dist/react.js",
17 "types": "./dist/react.d.ts"
18 }
19 },
20 "files": [
21 "dist"
22 ],
23 "scripts": {
24 "build": "tsup src/index.ts src/react.ts --format cjs,esm --dts",
25 "dev": "tsup src/index.ts src/react.ts --format cjs,esm --dts --watch",
26 "test": "vitest run",
27 "test:watch": "vitest",
28 "lint": "eslint src/",
29 "typecheck": "tsc --noEmit"
30 },
31 "keywords": [
32 "atproto",
33 "bluesky",
34 "authentication",
35 "oauth",
36 "did",
37 "react"
38 ],
39 "author": "ATAuth Contributors",
40 "license": "MIT",
41 "repository": {
42 "type": "git",
43 "url": "https://github.com/Cache8063/atauth"
44 },
45 "peerDependencies": {
46 "react": ">=18.0.0",
47 "zustand": ">=4.0.0"
48 },
49 "peerDependenciesMeta": {
50 "react": {
51 "optional": true
52 },
53 "zustand": {
54 "optional": true
55 }
56 },
57 "devDependencies": {
58 "@types/node": "^22.0.0",
59 "@types/react": "^18.3.0",
60 "typescript-eslint": "^8.0.0",
61 "eslint": "^9.0.0",
62 "globals": "^15.0.0",
63 "react": "^18.2.0",
64 "tsup": "^8.3.0",
65 "typescript": "^5.7.0",
66 "vitest": "^2.0.0",
67 "zustand": "^4.4.7"
68 }
69}