personal web client for Bluesky
typescript solidjs bluesky atcute
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

at be674564d2b3c0e029547c5bdb684ad5ba8f051c 82 lines 2.6 kB view raw
1{ 2 "type": "module", 3 "private": true, 4 "scripts": { 5 "dev": "vite", 6 "build": "tsc -b && vite build", 7 "preview": "vite preview", 8 "fmt": "PRETTIER_EXPERIMENTAL_CLI=1 prettier --cache --write ." 9 }, 10 "dependencies": { 11 "@atcute/atproto": "^3.1.2", 12 "@atcute/bluemoji": "^3.1.0", 13 "@atcute/bluesky": "^3.2.1", 14 "@atcute/bluesky-richtext-parser": "^1.0.7", 15 "@atcute/bluesky-richtext-segmenter": "^2.0.3", 16 "@atcute/bluesky-search-parser": "^0.1.0", 17 "@atcute/cbor": "^2.2.5", 18 "@atcute/cid": "^2.2.3", 19 "@atcute/client": "^4.0.3", 20 "@atcute/identity": "^1.1.0", 21 "@atcute/identity-resolver": "^1.1.3", 22 "@atcute/lexicons": "^1.1.1", 23 "@atcute/oauth-browser-client": "2.0.0-next.0", 24 "@atcute/tid": "^1.0.2", 25 "@atcute/xrpc-server": "^0.1.1", 26 "@atlaskit/pragmatic-drag-and-drop": "1.6.0", 27 "@atlaskit/pragmatic-drag-and-drop-hitbox": "1.0.3", 28 "@floating-ui/dom": "^1.7.1", 29 "@floating-ui/utils": "^0.2.9", 30 "@kelinci/basa-lexicons": "^1.0.0", 31 "@mary/array-fns": "jsr:^0.1.4", 32 "@mary/async-iterator-fns": "jsr:^0.1.1", 33 "@mary/batch-fetch": "jsr:^0.1.0", 34 "@mary/date-fns": "jsr:^0.1.3", 35 "@mary/events": "jsr:^0.2.0", 36 "@mary/exif-rm": "jsr:^0.2.2", 37 "@mary/solid-freeze": "npm:@externdefs/solid-freeze@^0.1.1", 38 "@mary/solid-query": "npm:@externdefs/solid-query@^0.1.5", 39 "comlink": "^4.4.2", 40 "hls.js": "^1.6.5", 41 "idb": "^8.0.3", 42 "nanoid": "^5.1.5", 43 "solid-floating-ui": "~0.2.1", 44 "solid-js": "^1.9.7", 45 "webm-muxer": "^5.1.3" 46 }, 47 "devDependencies": { 48 "@cloudflare/vite-plugin": "^1.11.7", 49 "@trivago/prettier-plugin-sort-imports": "^5.2.2", 50 "@types/dom-close-watcher": "^1.0.0", 51 "@types/dom-webcodecs": "^0.1.15", 52 "@types/node": "^24.3.0", 53 "autoprefixer": "^10.4.21", 54 "babel-plugin-transform-typescript-const-enums": "^0.1.0", 55 "prettier": "^3.6.0", 56 "prettier-plugin-tailwindcss": "^0.6.13", 57 "tailwindcss": "^3.4.17", 58 "terser": "^5.43.1", 59 "typescript": "~5.8.3", 60 "vite": "^6.3.5", 61 "vite-plugin-pwa": "0.21.0", 62 "vite-plugin-solid": "^2.11.6", 63 "wrangler": "^4.32.0" 64 }, 65 "pnpm": { 66 "patchedDependencies": { 67 "@floating-ui/utils": "patches/@floating-ui__utils.patch", 68 "@tanstack/query-core@5.17.19": "patches/@tanstack__query-core@5.17.19.patch", 69 "solid-js": "patches/solid-js.patch", 70 "vite-plugin-pwa": "patches/vite-plugin-pwa.patch", 71 "workbox-precaching": "patches/workbox-precaching.patch" 72 }, 73 "overrides": { 74 "is-core-module": "npm:@nolyfill/is-core-module@^1", 75 "safe-buffer": "npm:@nolyfill/safe-buffer@^1", 76 "string.prototype.matchall": "npm:@nolyfill/string.prototype.matchall@^1" 77 }, 78 "onlyBuiltDependencies": [ 79 "esbuild" 80 ] 81 } 82}