isbndb-client
Version:
A TypeScript client library for the ISBNdb API
70 lines (69 loc) • 1.67 kB
JSON
{
"name": "isbndb-client",
"version": "1.0.0",
"description": "A TypeScript client library for the ISBNdb API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"dev": "ts-node src/index.ts",
"clean": "rimraf dist",
"build": "npm run clean && tsc",
"prepare": "npm run build",
"test": "jest",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"check-updates": "npx npm-check-updates --format group -i"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"keywords": [
"isbndb",
"isbn",
"books",
"api",
"client"
],
"author": "Krister Johansson <krister.johansson86@outlook.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Krister-Johansson/isbndb-client"
},
"bugs": {
"url": "https://github.com/Krister-Johansson/isbndb-client/issues"
},
"homepage": "https://github.com/Krister-Johansson/isbndb-client",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.15.17",
"@typescript-eslint/eslint-plugin": "^8.32.0",
"@typescript-eslint/parser": "^8.32.0",
"dotenv": "^16.5.0",
"eslint": "^9.26.0",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"rimraf": "^5.0.0",
"ts-jest": "^29.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"dependencies": {
"axios": "^1.9.0"
}
}