UNPKG

threadiverse

Version:

Unified typescript client for threadiverse instances (Lemmy, Piefed, Mbin etc)

69 lines (68 loc) 1.81 kB
{ "name": "threadiverse", "version": "0.7.1", "description": "Unified typescript client for threadiverse instances (Lemmy, Piefed, Mbin etc)", "license": "AGPL-3.0-only", "author": "Alexander Harding <noreply@harding.dev>", "homepage": "https://github.com/aeharding/threadiverse", "repository": { "type": "git", "url": "https://github.com/aeharding/threadiverse" }, "bugs": { "url": "https://github.com/aeharding/threadiverse/issues" }, "keywords": [ "threadiverse", "lemmy", "piefed", "mbin", "kbin", "fediverse", "client" ], "type": "module", "exports": { ".": "./dist/index.mjs" }, "main": "./dist/index.mjs", "types": "./dist/index.d.mts", "module": "./dist/index.mjs", "sideEffects": false, "files": [ "dist" ], "scripts": { "dev": "vitest dev", "lint": "eslint .", "lint:fix": "eslint . --fix", "test": "pnpm lint && pnpm test:types && vitest run --coverage", "test:types": "tsc --noEmit --skipLibCheck", "build": "unbuild", "prepack": "pnpm build", "release": "pnpm test && pnpm publish" }, "dependencies": { "compare-versions": "^6.1.1", "lemmy-js-client-v0": "npm:lemmy-js-client@0.20.0-alpha.18", "lemmy-js-client-v1": "npm:lemmy-js-client@1.0.0-dont-return-actions.1", "openapi-fetch": "^0.14.0", "zod": "^3.25.67" }, "devDependencies": { "@eslint/js": "^9.29.0", "@types/node": "22.14.1", "@vitest/coverage-v8": "3.1.1", "eslint": "9.25.0", "eslint-config-unjs": "0.4.2", "eslint-plugin-perfectionist": "^4.15.0", "typescript": "5.8.3", "typescript-eslint": "^8.34.1", "unbuild": "^3.5.0", "vitest": "3.1.1" }, "resolutions": { "threadiverse": "link:." }, "packageManager": "pnpm@10.8.1" }