a collection of lightweight TypeScript packages for AT Protocol, the protocol powering Bluesky
at trunk 43 lines 855 B view raw
1{ 2 "name": "@atcute/uint8array", 3 "version": "1.1.1", 4 "description": "uint8array utilities", 5 "license": "0BSD", 6 "repository": { 7 "url": "https://github.com/mary-ext/atcute", 8 "directory": "packages/misc/uint8array" 9 }, 10 "files": [ 11 "dist/", 12 "lib/", 13 "!lib/**/*.bench.ts", 14 "!lib/**/*.test.ts" 15 ], 16 "type": "module", 17 "sideEffects": false, 18 "exports": { 19 ".": { 20 "types": "./lib/index.ts", 21 "bun": "./lib/index.bun.ts", 22 "node": "./lib/index.node.ts", 23 "default": "./lib/index.ts" 24 } 25 }, 26 "publishConfig": { 27 "access": "public", 28 "exports": { 29 ".": { 30 "bun": "./dist/index.bun.js", 31 "node": "./dist/index.node.js", 32 "default": "./dist/index.js" 33 } 34 } 35 }, 36 "scripts": { 37 "build": "tsgo --project tsconfig.build.json", 38 "prepublish": "rm -rf dist; pnpm run build" 39 }, 40 "devDependencies": { 41 "@types/bun": "^1.3.9" 42 } 43}