-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.2 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
{
"name": "@hellhub-collective/sdk",
"license": "MIT",
"private": false,
"description": "The official SDK for HellHub API. Filter and collect data with full type safety out of the box.",
"version": "1.4.0",
"main": "dist/index.mjs",
"types": "dist/index.d.ts",
"keywords": [
"hellhub",
"sdk",
"typescript",
"helldivers 2",
"community"
],
"files": [
"dist"
],
"scripts": {
"test": "bun test",
"prepublishOnly": "bun run build",
"build": "bun run scripts/build.ts",
"format": "prettier . --write",
"lint": "eslint . --ext .ts"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"bun-plugin-dts": "^0.2.1",
"bun-types": "latest",
"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/sdk.git"
},
"bugs": {
"url": "https://github.com/hellhub-collective/sdk/issues"
},
"author": {
"name": "Fabio Nettis",
"email": "[email protected]"
}
}