-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.92 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "best-bible",
"version": "1.7.5",
"description": "Fetch, parse, and analyze the Bible easily with JavaScript",
"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"
},
"packageManager": "[email protected]",
"files": [
"dist",
"README.md",
"LICENSE"
],
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"browser": "./dist/browser/best-bible.min.js",
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js"
}
},
"browser": "./dist/browser/best-bible.min.js",
"repository": {
"type": "git",
"url": "git+https://github.com/The-Best-Codes/best-bible.git"
},
"keywords": [
"bible",
"jesus",
"christ",
"christian",
"christianity",
"verse",
"kjv"
],
"author": "The-Best-Codes",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/The-Best-Codes/best-bible/issues"
},
"homepage": "https://github.com/The-Best-Codes/best-bible#readme",
"devDependencies": {
"@types/bun": "^1.2.2",
"@types/chrome": "^0.0.304",
"@types/node": "^22.13.1",
"bun-types": "^1.2.2",
"typescript": "^5.7.3"
}
}