-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.12 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.12 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
{
"name": "overfast-api-client",
"license": "MIT",
"version": "0.1.1",
"description": "OverFast API Client is a TypeScript package that allows users to interact with the OverFast API, an unofficial API for Overwatch 2. It simplifies the process of fetching data about heroes, game modes, maps and player statistics from the OverFast API. It is easy to install and use, and supports both promises and callbacks.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"lint": "tsc",
"release": "pnpm run build && changeset publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sipixer/overfast-api-client.git"
},
"keywords": [
"Overwatch"
],
"author": "Sipixer",
"bugs": {
"url": "https://github.com/Sipixer/overfast-api-client/issues"
},
"homepage": "https://github.com/Sipixer/overfast-api-client#readme",
"devDependencies": {
"@changesets/cli": "^2.27.1",
"tsup": "^8.0.1",
"typescript": "5.3.3"
}
}