-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.54 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
{
"name": "@hellhub-collective/cli",
"license": "MIT",
"private": false,
"description": "A CLI for Helldivers 2: View the war progress without leaving your terminal! Powered by the HellHub API.",
"version": "1.4.0",
"main": "build/index.mjs",
"types": "build/index.d.ts",
"keywords": [
"hellhub",
"cli",
"typescript",
"helldivers 2",
"community"
],
"files": [
"build"
],
"bin": {
"hellhub": "build/index.mjs"
},
"scripts": {
"test": "bun test",
"prepublishOnly": "bun run build",
"build": "bun run scripts/build.ts",
"format": "prettier . --write",
"lint": "eslint . --ext .ts"
},
"devDependencies": {
"@types/accounting": "^0.4.5",
"@types/boxen": "^3.0.1",
"@types/chalk": "^2.2.0",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"bun-plugin-dts": "^0.2.1",
"bun-types": "^1.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/hellhub-collective/cli.git"
},
"bugs": {
"url": "https://github.com/hellhub-collective/cli/issues"
},
"author": {
"name": "Fabio Nettis",
"email": "[email protected]"
},
"dependencies": {
"@hellhub-collective/sdk": "^1.3.0",
"accounting": "^0.4.1",
"boxen": "^7.1.1",
"chalk": "^5.3.0",
"cli-table3": "^0.6.4",
"commander": "^12.0.0"
}
}