-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 944 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 944 Bytes
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
{
"name": "Tracker Extensions (0.9)",
"private": true,
"description": "Paperback extensions for integrating with progress tracking services. Maintained by Inkdex.",
"type": "module",
"scripts": {
"lint": "oxlint --type-aware --fix",
"lint:check": "oxlint --type-aware --deny-warnings",
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"tsc": "tsc --project tsconfig.json --noEmit",
"bundle": "paperback-cli bundle",
"serve": "paperback-cli serve",
"logcat": "paperback-cli logcat",
"dev": "paperback-cli serve --watch",
"test": "npm run tsc && npm run lint:check && npm run format:check && npm run bundle",
"prepare": "husky"
},
"devDependencies": {
"@paperback/toolchain": "^1.0.0-alpha.74",
"@paperback/types": "^1.0.0-alpha.74",
"husky": "^9.1.7",
"oxfmt": "^0.46.0",
"oxlint": "^1.61.0",
"oxlint-tsgolint": "^0.21.1",
"typescript": "^6.0.3"
}
}