-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 1.88 KB
/
package.json
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
{
"name": "gamelist-utils",
"version": "2.0.0",
"description": "A toolbox for EmulationStation gamelist.xml romsets",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"gamelist": "./dist/cli.js"
},
"scripts": {
"lint": "eslint .",
"fix": "eslint . --fix",
"build": "tsc",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JayCanuck/gamelist-utils.git"
},
"keywords": [
"gamelist.xml",
"emulationstation",
"rom",
"romset",
"emulator",
"emulation",
"retro",
"retropie",
"retrobat",
"batocera",
"recalbox"
],
"author": "Jason Robitaille",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/JayCanuck/gamelist-utils/issues"
},
"homepage": "https://github.com/JayCanuck/gamelist-utils#readme",
"files": [
"dist"
],
"prettier": {
"printWidth": 100,
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"quoteProps": "preserve",
"trailingComma": "none",
"arrowParens": "avoid"
},
"dependencies": {
"adm-zip": "^0.5.16",
"dotenv": "^16.4.5",
"fs-extra": "^11.2.0",
"fswin": "^3.24.829",
"json5": "^2.2.3",
"minimist": "^1.2.8",
"p-queue-compat": "^1.0.227",
"sharp": "^0.33.5",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@types/adm-zip": "^0.5.5",
"@types/eslint__js": "^8.42.3",
"@types/fs-extra": "^11.0.4",
"@types/minimist": "^1.2.5",
"@types/node": "^22.8.1",
"@types/xml2js": "^0.4.14",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.11.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"typescript-eslint": "^8.11.0"
}
}