-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.32 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.32 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
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@sinedied/mini-scraper",
"description": "Artwork scraper for handheld emulators.",
"version": "1.5.1",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/sinedied/mini-scraper.git"
},
"bin": {
"mscraper": "bin/mscraper.js"
},
"exports": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"start": "npm run build && node \"./bin/mscraper.js\"",
"build": "npm run clean -s && tsc",
"build:watch": "tsc -w --sourceMap",
"lint": "xo",
"lint:fix": "xo --fix",
"test": "xo && npm run start test",
"clean": "rm -rf lib *.tgz",
"release:check": "semantic-release --dry-run"
},
"keywords": [
"minui",
"nextui",
"muos",
"scraper",
"boxart",
"ai"
],
"author": {
"name": "Yohan Lasorsa",
"url": "https://bsky.app/profile/sinedied.bsky.social"
},
"homepage": "https://github.com/sinedied/mini-scraper",
"bugs": {
"url": "https://github.com/sinedied/mini-scraper/issues"
},
"license": "MIT",
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"dependencies": {
"commander": "^13.1.0",
"debug": "^4.4.0",
"fast-glob": "^3.3.3",
"fast-png": "^6.3.0",
"fastest-levenshtein": "^1.0.16",
"string-comparison": "^1.3.0",
"jimp": "^1.6.0",
"ollama": "^0.5.13",
"update-notifier": "^7.3.1"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/update-notifier": "^6.0.8",
"semantic-release": "^24.2.3",
"semantic-release-npm-github": "^5.0.0",
"typescript": "^5.8.2",
"xo": "^0.60.0"
},
"release": {
"extends": "semantic-release-npm-github",
"branches": "main"
},
"prettier": {
"trailingComma": "none",
"bracketSpacing": true
},
"xo": {
"space": true,
"prettier": true,
"envs": [
"node"
],
"rules": {
"no-await-in-loop": "off",
"@typescript-eslint/naming-convention": "off",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-argument": "off",
"unicorn/no-process-exit": "off",
"unicorn/prevent-abbreviations": "off",
"unicorn/no-array-callback-reference": "off",
"max-params": [
"warn",
5
]
}
},
"files": [
"bin",
"lib"
],
"publishConfig": {
"access": "public"
}
}