UNPKG

@tdanks2000/anilist-wrapper

Version:

A comprehensive and easy-to-use TypeScript wrapper for the Anilist GraphQL API (v2). Simplifies fetching anime/manga data and managing user lists in Node.js applications.

75 lines (74 loc) 1.82 kB
{ "name": "@tdanks2000/anilist-wrapper", "version": "2.4.1", "description": "A comprehensive and easy-to-use TypeScript wrapper for the Anilist GraphQL API (v2). Simplifies fetching anime/manga data and managing user lists in Node.js applications.", "type": "module", "main": "./dist/index.cjs", "module": "./dist/index.js", "types": "./dist/index.d.ts", "homepage": "https://github.com/Api-Wrappers/anilist-wrapper#readme", "publishConfig": { "access": "public" }, "repository": { "type": "git", "url": "git+https://github.com/Api-Wrappers/anilist-wrapper.git" }, "keywords": [ "anilist", "api", "wrapper", "client", "sdk", "graphql", "anime", "manga", "anilist api", "anilist client", "anilist sdk", "node", "nodejs", "typescript", "library" ], "author": { "name": "tdanks2000", "url": "https://github.com/tdanks2000" }, "license": "MIT", "private": false, "exports": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "require": "./dist/index.cjs" }, "files": [ "dist" ], "scripts": { "build": "bun run build.ts", "prepublishOnly": "bun run build", "codegen": "rimraf src/__generated__ && graphql-codegen --config codegen.yml", "test": "bun test", "check": "biome check .", "check:unsafe": "biome check --write --unsafe .", "check:write": "biome check --write ." }, "devDependencies": { "@biomejs/biome": "^2.1.4", "@graphql-codegen/cli": "^5.0.7", "@graphql-codegen/typescript": "^4.1.6", "@graphql-codegen/typescript-graphql-request": "^6.3.0", "@graphql-codegen/typescript-operations": "^4.6.1", "@types/bun": "latest", "bun-plugin-dts": "^0.3.0", "graphql": "^16.11.0", "rimraf": "^6.0.1" }, "peerDependencies": { "typescript": "^5.8.3" }, "dependencies": { "graphql-request": "^7.2.0" } }