-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.61 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.61 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
54
55
56
57
58
59
60
{
"name": "@top-gg/sdk",
"version": "4.0.0",
"description": "The community-maintained Node.js SDK for Top.gg.",
"main": "./dist/index.js",
"type": "module",
"engines": {
"node": ">= 18.18.2"
},
"scripts": {
"test": "node --import tsx --test tests/**/*.test.ts",
"test:coverage": "c8 node --import tsx --test tests/**/*.test.ts",
"build": "tsc",
"build:ci": "npm i --include=dev && tsc",
"docs": "typedoc",
"prepublishOnly": "npm run build:ci",
"lint": "eslint src/**/*.ts",
"lint:ci": "eslint --output-file eslint_report.json --format json src/**/*.ts",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/top-gg/node-sdk.git"
},
"author": "Top.gg <support@top.gg> (https://top.gg)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/top-gg/node-sdk/issues"
},
"homepage": "https://topgg.js.org",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/express": "^5.0.6",
"@types/node": "^25.5.0",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"c8": "^11.0.0",
"discord-api-types": "^0.38.42",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"express": "^5.2.1",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"node-mocks-http": "^1.17.2",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typedoc": "^0.28.17",
"typescript": "^5.9.3",
"undici": "^7.24.4"
},
"dependencies": {
"raw-body": "^3.0.2"
},
"overrides": {
"c8": {
"yargs": "^18.0.0"
}
},
"types": "./dist/index.d.ts"
}