-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.74 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "srm-manifest-generator",
"version": "1.0.1",
"description": "Create manifests for Steam ROM Manager's manual parsers from simple and maintainable YAML syntax",
"keywords": [
"Steam ROM Manager",
"steam-rom-manager",
"SteamROMManager",
"SRM",
"SteamGridDB",
"Steam",
"Steam Deck",
"PC Gaming",
"emulation",
"YAML",
"yml"
],
"author": {
"name": "tsgrissom",
"url": "https://github.com/tsgrissom"
},
"repository": "tsgrissom/srm-manifest-generator",
"bugs": "https://github.com/tsgrissom/srm-manifest-generator/issues",
"readme": "https://github.com/tsgrissom/srm-manifest-generator/blob/main/README.md",
"homepage": "https://github.com/tsgrissom/srm-manifest-generator/blob/main/README.md",
"license": "MIT",
"os": [
"win32",
"darwin",
"linux"
],
"type": "module",
"main": "./src/app/main.ts",
"bin": {
"srmg": "dist/src/cli/main.js"
},
"scripts": {
"start": "tsx .",
"start:debug": "tsx . --debug",
"start:verbose": "tsx . --verbose",
"start:d": "npm run start:debug",
"start:v": "npm run start:verbose",
"start:loader": "node --loader ts-node/esm ./src/index.ts",
"cli": "npm run build && npm link && srmg",
"clean": "npm run clean:dist",
"clean:dist": "rimraf ./dist",
"prebuild": "npm run clean",
"build": "tsc",
"build:noclean": "tsc",
"postbuild": "chmod +x ./dist/src/cli/main.js",
"postuninstall": "npm unlink . && npm run clean:dist",
"lint": "eslint",
"lint:test": "eslint test",
"lint:config": "eslint --print-config ./src/index.ts",
"lint:errors": "eslint --quiet",
"test": "jest",
"test:coverage": "npm run test -- --coverage",
"test:c": "npm run test:coverage",
"test:verbose": "npm run test -- --coverage --verbose",
"test:v": "npm run test:verbose"
},
"packageManager": "pnpm@9.13.2+sha512.88c9c3864450350e65a33587ab801acf946d7c814ed1134da4a924f6df5a2120fd36b46aab68f7cd1d413149112d53c7db3a4136624cfd00ff1846a0c6cef48a",
"dependencies": {
"chalk": "^4.1.2",
"steamgriddb": "^2.2.0",
"yaml": "^2.6.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@eslint/js": "^9.17.0",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"@types/mock-fs": "^4.13.4",
"@types/node": "^22.10.2",
"@types/tmp": "^0.2.6",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"babel-jest": "^29.7.0",
"eslint": "^9.17.0",
"eslint-plugin-jest": "^28.10.0",
"globals": "^15.14.0",
"jest": "^29.7.0",
"jest-mock": "^29.7.0",
"mock-fs": "^5.4.1",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"rimraf": "^6.0.1",
"tmp": "^0.2.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1"
}
}