aniki
Version:
Aniki is an easy-to-use NPM module that gets information about your favorite anime and manga.
64 lines (63 loc) • 1.54 kB
JSON
{
"name": "aniki",
"version": "1.3.5",
"description": "Aniki is an easy-to-use NPM module that gets information about your favorite anime and manga.",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"engines": {
"node": ">=18"
},
"scripts": {
"compile": "pnpm build:cjs && pnpm build:esm",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build:clean": "rmdir /s dist",
"build": "pnpm build:clean && pnpm compile"
},
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
},
"./kitsu": {
"import": "./dist/esm/kitsu/index.js",
"require": "./dist/cjs/kitsu/index.js",
"types": "./dist/types/kitsu/index.d.ts"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Normioffi/Aniki.git"
},
"keywords": [
"aniki",
"api",
"anime",
"kitsu.app",
"anime-info",
"anime-api",
"manga",
"manga-api",
"manga-info",
"kitsu",
"anime-kitsu",
"manga-kitsu"
],
"author": "normioffi",
"license": "MIT",
"bugs": {
"url": "https://github.com/Normioffi/Aniki/issues"
},
"homepage": "https://github.com/Normioffi/Aniki#readme",
"dependencies": {
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@types/node": "^20.17.46",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.8.3"
}
}