forked from MCBE-Utilities/BeRAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 704 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 704 Bytes
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
{
"name": "berapi",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"module": "./dist/index.js",
"typings": "./dist/index.d.ts",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"start": "cross-env NODE_ENV=production node dist/index.js",
"dev": "cross-env NODE_ENV=development ts-node src/index.ts"
},
"author": "",
"license": "MIT",
"dependencies": {
"@mcbeutils/beauth": "^1.1.2",
"axios": "^0.27.2",
"beauth": "file:../BeAuth",
"cross-env": "^7.0.3",
"discord.js": "^13.6.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
}
}