{ "name": "@atbb/lexicon", "version": "0.1.0", "private": true, "type": "module", "main": "./dist/types/index.js", "types": "./dist/types/index.d.ts", "exports": { ".": { "types": "./dist/types/index.d.ts", "import": "./dist/types/index.js", "default": "./dist/types/index.js" }, "./json/*": "./dist/json/*", "./dist/types/*": "./dist/types/*" }, "scripts": { "build": "pnpm run build:json && pnpm run build:types && pnpm run build:fix-generated-types && pnpm run build:compile && pnpm run build:fix-imports", "build:json": "tsx scripts/build.ts", "build:types": "bash -c 'shopt -s globstar && lex gen-api --yes ./dist/types ./dist/json/**/*.json'", "build:fix-generated-types": "tsx scripts/fix-generated-types.ts", "build:compile": "tsc --project tsconfig.build.json", "build:fix-imports": "tsx scripts/fix-imports.ts", "test": "vitest run", "lint": "tsc --noEmit", "lint:fix": "oxlint --fix scripts/ lexicons/ __tests__/", "clean": "rm -rf dist" }, "dependencies": { "@atproto/api": "^0.15.0", "@atproto/lexicon": "^0.6.1", "@atproto/xrpc": "^0.7.7", "multiformats": "^13.4.2" }, "devDependencies": { "@atproto/lex-cli": "^0.9.8", "@types/node": "^22.0.0", "glob": "^11.0.0", "tsx": "^4.0.0", "typescript": "^5.7.0", "vitest": "^3.1.0", "yaml": "^2.7.0" } }