forked from paracordjs/paracord
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.67 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.67 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "paracord",
"version": "0.0.5",
"description": "Scalable Discord gateway and API handlers alongside a pre-built client.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"engines": {
"node": ">=16"
},
"scripts": {
"build": "rimraf dist && tsc -b && cp -r src/rpc/protobufs dist/rpc/protobufs && npm run build:types",
"build:types": "rimraf build && tsc -p ./tsconfig.json --declaration true --declarationMap true --outDir build && api-extractor run",
"rebuild": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paracordjs/paracord.git"
},
"author": "Landeau McDade",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/paracordjs/paracord/issues"
},
"dependencies": {
"@grpc/grpc-js": "^1.14.1",
"@grpc/proto-loader": "^0.8.0",
"axios": "^1.4.0",
"discord-api-types": "^0.38.20",
"form-data": "^4.0.0",
"pm2": "^5.3.0",
"protobufjs": "^7.2.4",
"ws": "^8.13.0"
},
"devDependencies": {
"@types/node": "^20.4.8",
"@types/ws": "^8.5.5",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.46.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.28.0",
"rimraf": "^5.0.1",
"typescript": "^5.1.6"
},
"optionalDependencies": {
"bufferutil": "^4.0.6",
"utf-8-validate": "^5.0.9"
},
"overrides": {
"semver": "^7.5.3"
},
"keywords": [
"discord",
"discord",
"api",
"bot",
"client",
"node",
"paracord"
]
}