biblesdk
Version:
Typescript client for Bible SDK API
76 lines (75 loc) • 1.66 kB
JSON
{
"name": "biblesdk",
"version": "0.4.0",
"description": "Typescript client for Bible SDK API",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./types": {
"import": "./dist/types/index.mjs",
"require": "./dist/types/index.js",
"types": "./dist/types/index.d.ts"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"type-check": "tsc --noEmit"
},
"keywords": [
"bible",
"scripture",
"api",
"sdk",
"typescript",
"search",
"verses",
"books",
"chapters"
],
"author": "biblesdk",
"license": "MIT",
"bugs": {
"url": "https://github.com/biblesdk/issues/issues"
},
"homepage": "https://biblesdk.com",
"devDependencies": {
"@types/jest": "^29.5.8",
"@types/node": "^20.8.10",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.52.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=16.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"dependencies": {
"lru-cache": "^11.1.0"
}
}