best-bible
Version:
Fetch, parse, and analyze the Bible easily with JavaScript
65 lines (64 loc) • 2.09 kB
JSON
{
"name": "best-bible",
"version": "1.7.7",
"author": "The-Best-Codes",
"repository": {
"type": "git",
"url": "git+https://github.com/The-Best-Codes/best-bible.git"
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"devDependencies": {
"@types/bun": "^1.3.5",
"@types/chrome": "^0.1.32",
"@types/node": "^25.0.3",
"bun-types": "^1.3.5",
"typescript": "^5.9.3"
},
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"browser": "./dist/browser/best-bible.min.js",
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js"
},
"./chrome": {
"types": "./dist/types/index.d.ts",
"browser": "./dist/chrome/best-bible.min.js"
}
},
"browser": "./dist/browser/best-bible.min.js",
"bugs": {
"url": "https://github.com/The-Best-Codes/best-bible/issues"
},
"description": "Fetch, parse, and analyze the Bible easily with JavaScript",
"files": [
"dist",
"README.md",
"LICENSE"
],
"homepage": "https://github.com/The-Best-Codes/best-bible#readme",
"keywords": [
"bible",
"jesus",
"christ",
"christian",
"christianity",
"verse",
"kjv"
],
"license": "GPL-3.0-or-later",
"packageManager": "bun@1.3.5",
"scripts": {
"prebuild": "rm -rf dist",
"build:cjs": "bun build src/index.ts --outdir dist/cjs --target node --format cjs --minify",
"build:esm": "bun build src/index.ts --outdir dist/esm --target node --format esm --minify",
"build:types": "tsc --project tsconfig.types.json && rm -rf dist/types/utils",
"build:browser": "bun build src/browser.ts --outfile dist/browser/best-bible.min.js --target browser --minify",
"build:chrome": "bun build src/chrome.ts --outfile dist/chrome/best-bible.min.js --target browser --minify",
"build": "bun run prebuild && bun run build:cjs && bun run build:esm && bun run build:browser && bun run build:chrome && bun run build:types",
"prepublishOnly": "bun run build",
"test": "bun test"
},
"types": "./dist/types/index.d.ts"
}