-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.27 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
{
"name": "discord-auth2",
"version": "1.1.3",
"description": "Simple discord oauth library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"engines": {
"node": ">=16.6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MightyBotDevs/discord-oauth.git"
},
"bugs": {
"url": "https://github.com/MightyBotDevs/discord-oauth/issues",
"email": "[email protected]"
},
"author": "Dawid Jaworski <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "npm run build && npm start",
"build": "rm -rf dist/ && tsc && resolve-tspaths",
"start": "node --enable-source-maps .",
"watch": "tsc-watch --onSuccess 'resolve-tspaths'"
},
"dependencies": {
"@discordjs/rest": "^0.5.0",
"discord-api-types": "^0.37.35",
"jsonwebtoken": "^8.5.1",
"undici": "^5.20.0"
},
"devDependencies": {
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.1.0",
"resolve-tspaths": "^0.6.0",
"tsc-watch": "^5.0.3",
"typescript": "^4.7.4"
}
}