-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 3.47 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 3.47 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "bible-api",
"private": true,
"version": "1.8.0",
"type": "module",
"scripts": {
"pretest": "npm run clean && tsc --build",
"test": "jest",
"test:watch": "npm run pretest && node --experimental-vm-modules node_modules/jest/bin/jest.js --watchAll",
"build": "npm run clean && npm run esbuild && npm run build:tsc",
"build:tsc": "tsc --build",
"esbuild": "tsx ./tools/build.ts",
"clean": "jake -f ./jakefile.cjs clean",
"build:docs": "cd docs && pnpm build",
"dev:docs": "vuepress dev docs/src",
"cli": "npm run build && node ./packages/helloao-cli/dist/cjs/cli.cjs",
"db:clone": "npm run cli init ./free-use-bible-api.download.db -- --source https://bible.helloao.org/bible.db",
"db:init": "npm run cli init ./free-use-bible-api.db",
"db:init:eng": "npm run cli init ./free-use-bible-api.eng.db -- --overwrite --source ./free-use-bible-api.db --language eng",
"fetch:bible:audio": "npm run cli fetch-audio -- ./sources/audio",
"fetch:bible:metadata": "npm run cli fetch-bible-metadata -- ./sources/metadata",
"fetch:bible:commentaries": "npm run cli fetch-tyndale-open-resources -- ./sources/comment/tyndale",
"fetch:ebible": "npm run cli source-translations -- --convert-to-usx3 ./sources/ebible",
"import:bible:ebible": "npm run cli import-translations -- --db ./free-use-bible-api.db ./sources/ebible",
"import:bible:commentaries": "npm run cli import-commentaries -- --db ./free-use-bible-api.db ./sources/comment",
"zip:sync": "npm run cli upload-api-files ./free-use-bible-api.zip",
"s3:sync:docs": "aws --profile aolabs s3 sync ./build/docs s3://ao-bible-api/docs --delete",
"s3:sync:api": "npm run cli -- --db ./free-use-bible-api.db upload-api-files s3://ao-bible-api --profile aolabs --overwrite-common-files --verbose",
"s3:sync:db": "npm run db:init:eng && aws --profile aolabs s3 cp ./free-use-bible-api.db s3://ao-bible-api/bible.db && aws --profile aolabs s3 cp ./free-use-bible-api.eng.db s3://ao-bible-api/bible.eng.db",
"s3:sync:zip": "aws --profile aolabs s3 cp ./free-use-bible-api.zip s3://ao-bible-api/api.zip",
"postinstall": "prisma generate",
"prepublish": "npm run build"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.9",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.4.0",
"@types/lodash": "4.14.191",
"@types/markdown-it": "^12.2.3",
"@types/node": "^22.7.4",
"@types/papaparse": "5.3.15",
"@types/luxon": "3.4.2",
"del": "7.0.0",
"esbuild": "0.24.0",
"fast-glob": "^3.3.2",
"husky": "^9.1.6",
"jake": "10.8.5",
"jest": "29.7.0",
"jest-raw-loader": "1.0.1",
"prisma": "^5.12.1",
"ts-jest": "29.2.5",
"ts-node": "^10.9.1",
"tsx": "^4.19.1",
"typescript": "^5.8.3",
"typesense": "3.0.5"
},
"engines": {
"node": "^20.17.0",
"pnpm": "^10.12.1"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"@prisma/client",
"@prisma/engines",
"prisma"
]
},
"packageManager": "pnpm@10.12.1+sha512.f0dda8580f0ee9481c5c79a1d927b9164f2c478e90992ad268bbb2465a736984391d6333d2c327913578b2804af33474ca554ba29c04a8b13060a717675ae3ac",
"prisma": {
"schema": "./packages/helloao-cli/schema.prisma"
}
}