-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.11 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
{
"name": "game-pass-api",
"type": "module",
"version": "2.1.0",
"description": "CLI to get all games on Xbox Game Pass (Console, PC and EA Play) with their properties formatted just the way you need.",
"keywords": [
"xbox",
"game-pass",
"xbox-game-pass",
"gamepass",
"ea-play",
"games"
],
"author": {
"name": "Nikkel Mollenhauer",
"email": "contact@nikkelm.dev"
},
"license": "GPL-3.0-or-later",
"homepage": "https://github.com/NikkelM/Game-Pass-API#readme",
"main": "index.js",
"bin": {
"game-pass-api": "bin/cli.js"
},
"files": [
"bin/",
"index.js",
"js/",
"config.schema.json",
"config.default.json"
],
"engines": {
"node": ">=22.13.0"
},
"scripts": {
"test": "node --test --experimental-test-module-mocks"
},
"funding": [
"https://github.com/sponsors/NikkelM",
"https://ko-fi.com/nikkelm"
],
"repository": {
"type": "git",
"url": "git+https://github.com/NikkelM/Game-Pass-API.git"
},
"bugs": {
"url": "https://github.com/NikkelM/Game-Pass-API/issues"
},
"dependencies": {
"@inquirer/prompts": "^8.5.2",
"commander": "^15.0.0",
"jsonschema": "^1.4.1"
}
}