forked from rohit-purandare/ShelfBridge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.52 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.52 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "shelfbridge",
"version": "1.23.0",
"description": "Sync your audiobook listening progress from Audiobookshelf to Hardcover automatically",
"main": "src/main.js",
"type": "module",
"scripts": {
"start": "node src/main.js",
"interactive": "node src/main.js interactive",
"cron": "node src/main.js cron",
"sync": "node src/main.js sync",
"test": "node --test tests/network-utilities.test.js tests/progress-manager.test.js tests/task-queue-basic.test.js tests/transaction.test.js tests/utilities.test.js",
"test:connections": "node src/main.js test",
"test:native": "node scripts/test-native-modules.js",
"validate:sqlite": "node scripts/validate-better-sqlite3.js",
"pre-flight": "node scripts/pre-flight-check.js",
"config": "node src/main.js config",
"cache": "node src/main.js cache",
"dev": "node --watch src/main.js",
"changelog": "scripts/update-changelog.sh",
"changelog:preview": "scripts/update-changelog.sh --dry-run",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint src/ --ext .js --max-warnings 0",
"lint:fix": "eslint src/ --ext .js --fix --max-warnings 0",
"prepare": "husky install"
},
"keywords": [
"audiobookshelf",
"hardcover",
"sync",
"audiobooks",
"reading-progress"
],
"author": "Rohit Purandare",
"license": "MIT",
"dependencies": {
"axios": "^1.11.0",
"better-sqlite3": "12.2.0",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"cron": "^3.5.0",
"cronstrue": "^3.2.0",
"inquirer": "^12.9.4",
"js-yaml": "^4.1.0",
"luxon": "^3.7.1",
"node-cron": "^3.0.3",
"p-queue": "^8.1.0",
"rate-limiter-flexible": "^7.2.0",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"eslint": "^9.35.0",
"globals": "^16.3.0",
"husky": "^8.0.3",
"lint-staged": "^16.1.6",
"nodemon": "^3.1.10",
"prettier": "^3.6.2"
},
"lint-staged": {
"src/**/*.js": [
"prettier --write",
"eslint --max-warnings 0"
],
"tests/**/*.js": [
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"engines": {
"node": ">=20.0.0"
},
"overrides": {
"ansi-regex": "6.2.2",
"color-name": "2.0.0",
"is-arrayish": "0.3.2",
"supports-color": "10.2.2",
"strip-ansi": "7.1.0",
"string-width": "7.2.0",
"wrap-ansi": "9.0.0",
"color-convert": "2.0.1",
"simple-swizzle": "0.2.2"
}
}