@tutkli/jikan-ts
Version:
Node.js wrapper for the Jikan API with built-in typings.
78 lines (77 loc) • 1.82 kB
JSON
{
"name": "@tutkli/jikan-ts",
"version": "3.0.0",
"description": "Node.js wrapper for the Jikan API with built-in typings.",
"keywords": [
"MyAnimeList",
"jikan",
"jikan-api",
"jikanAPI"
],
"homepage": "https://github.com/tutkli/jikan-ts#readme",
"bugs": {
"url": "https://github.com/tutkli/jikan-ts/issues"
},
"license": "MIT",
"author": {
"name": "Clara Castillo",
"url": "https://github.com/tutkli"
},
"repository": {
"type": "git",
"url": "https://github.com/tutkli/jikan-ts.git"
},
"source": "src/index.ts",
"files": [
"dist/",
"README.md",
"LICENSE"
],
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./types": {
"types": "./dist/types.d.ts",
"import": "./dist/types.js"
},
"./client": {
"types": "./dist/client.d.ts",
"import": "./dist/client.js"
}
},
"scripts": {
"build": "bun bun.build.js && tsc --emitDeclarationOnly --outDir dist",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"prepare": "git config core.hookspath .githooks",
"prepublishOnly": "bun run build",
"test:coverage": "bun test --coverage",
"test:dev": "bun test",
"version": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -s && git add CHANGELOG.md"
},
"devDependencies": {
"@types/bun": "^1.3.11",
"@types/node": "25.5.0",
"conventional-changelog-cli": "^5.0.0",
"ky": "^1.14.3",
"lint-staged": "^16.4.0",
"oxfmt": "^0.41.0",
"oxlint": "^1.56.0",
"typescript": "5.9.3"
},
"peerDependencies": {
"ky": "^1.7.0"
},
"peerDependenciesMeta": {
"ky": {
"optional": true
}
}
}