-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 941 Bytes
/
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
{
"name": "brawlstars-api-nodejs",
"version": "1.3.0",
"description": "brawlstars-api-nodejsis a Node.js library for accessing the Brawl Stars API. It provides an easy-to-use interface for making requests to the API and receiving the responses in a convenient format.",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/awekrx/BrawlStarsAPI.git"
},
"keywords": [
"brawlstars",
"brawlstars-api"
],
"author": "awekrx",
"license": "MIT",
"dependencies": {
"axios": "^1.2.1"
},
"bugs": {
"url": "https://github.com/awekrx/BrawlStarsAPI/issues"
},
"homepage": "https://github.com/awekrx/BrawlStarsAPI/#readme",
"files": [
"lib/**/*"
],
"devDependencies": {
"@types/node": "^18.11.18"
}
}