-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.18 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.18 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
{
"name": "mtg-card-analyzer",
"version": "0.2.0",
"description": "a mtg ocr app for documenting a collection",
"type": "module",
"main": "index.mjs",
"packageManager": "pnpm@10.13.1",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=8.0.0"
},
"scripts": {
"test": "mocha \"./test/**/*.spec.mjs\"",
"lint": "eslint . --ext js,mjs",
"lint:fix": "pnpm lint --fix",
"lint-staged": "lint-staged",
"prettier:check": "prettier --check \"**/*.{js,mjs,ts,tsx,md,json,yml,yaml}\"",
"prettier:write": "prettier --write \"**/*.{js,mjs,ts,tsx,md,json,yml,yaml}\"",
"format": "pnpm prettier:write",
"typecheck": "tsc --noEmit",
"check:fast": "pnpm lint && pnpm prettier:check && pnpm typecheck",
"check": "pnpm check:fast && pnpm test",
"setup-db": "node src/data/scripts/setup-db.cjs",
"prepare": "lefthook install"
},
"keywords": [
"mtg",
"ocr",
"collector"
],
"author": {
"name": "Dylan Steele",
"email": "dylansteele57@gmail.com"
},
"license": "MIT",
"dependencies": {
"@dills1220/nedb": "^1.8.4",
"async": "^3.2.6",
"bunyan": "^1.8.15",
"clean-text-utils": "^1.1.17",
"commander": "^14.0.2",
"fuzzyset.js": "1.0.7",
"image-hash": "^5.3.2",
"image-size": "^1.2.1",
"image-to-base64": "^2.2.0",
"jimp": "0.22.12",
"joi": "^18.0.2",
"lodash": "^4.18.1",
"mysql2": "^3.16.0",
"request": "^2.88.0",
"request-promise-native": "^1.0.7",
"rimraf": "^6.1.2",
"string-similarity": "^4.0.4",
"tesseract.js": "^3.0.3",
"tmp": "^0.2.5"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^25.2.3",
"chai": "^6.2.2",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.0.0",
"lefthook": "^2.0.13",
"lint-staged": "^16.2.7",
"mocha": "^11.7.5",
"prettier": "^3.7.4",
"proxyquire": "^2.1.3",
"sinon": "^21.0.1",
"typescript": "^5.9.3"
}
}