-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.29 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
{
"name": "bloxlink-api-sdk",
"version": "1.0.1-dev",
"description": "Official Node.js API wrapper for interacting with the Bloxlink API.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc && gen-esm-wrapper . ./dist/index.mjs"
},
"author": "DaStormer",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"eslint": "^8.56.0",
"gen-esm-wrapper": "^1.1.3",
"typescript": "^5.3.3"
},
"dependencies": {
"discord-api-types": "^0.37.66",
"node-fetch": "^2.7.0"
},
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./": "./"
},
"homepage": "https://github.com/DaStormer/bloxlink-api-sdk/blob/main/README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/DaStormer/bloxlink-api-sdk.git"
},
"bugs": {
"url": "https://github.com/DaStormer/bloxlink-api-sdk/issues"
},
"keywords": [
"bloxlink",
"roblox",
"discord"
]
}