This repository has been archived by the owner on May 26, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
59 lines (59 loc) · 1.46 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
49
50
51
52
53
54
55
56
57
58
59
{
"name": "better-revolt-js",
"description": "A NodeJS Revolt library",
"version": "1.0.2",
"scripts": {
"build": "tsc-esm",
"test": "npm run test:types && npm run lint",
"test:types": "tsc --noEmit && echo 'All specs passed validation. You are ready to push!'",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write src/**/*.ts",
"docs": "typedoc src/index.ts"
},
"main": "dist/index.js",
"type": "module",
"dependencies": {
"@discordjs/collection": "^0.6.0",
"node-fetch": "^3.2.4",
"ws": "^8.6.0"
},
"devDependencies": {
"@digitak/tsc-esm": "^3.1.2",
"@types/node": "16.9.x",
"@types/node-fetch": "^2.6.1",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.6.2",
"revolt-api": "0.5.3-5-patch.3",
"typedoc": "^0.22.15",
"typescript": "^4.7.2"
},
"files": [
"dist/*"
],
"license": "Apache-2",
"repository": {
"type": "git",
"url": "https://github.com/abdulrahman1s/better-revolt.js"
},
"keywords": [
"revolt",
"revoltchat",
"api",
"bot",
"node"
],
"bugs": {
"url": "https://github.com/abdulrahman1s/better-revolt.js/issues"
},
"engines": {
"node": ">=16.6.0",
"npm": ">=7.0.0"
}
}