-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
48 lines (48 loc) · 1005 Bytes
/
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": "ferrislib",
"version": "0.0.3",
"description": "An Api wrapper to interact with FerrisChat Api",
"main": "build/index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "node --trace-warnings test/test.js",
"docs": "typedoc --excludePrivate",
"build": "tsc --build",
"format": "npx prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/Drxckzyz/Ferris-lib.git"
},
"types": "build/typings/index.d.ts",
"keywords": [
"api-wrapper",
"FerrisChat",
"Ferris",
"Nodejs"
],
"author": "Drxckzyz",
"license": "ISC",
"bugs": {
"url": "https://github.com/Drxckzyz/Ferris-lib/issues"
},
"homepage": "https://node.docs.ferris.chat/",
"devDependencies": {
"@types/node": "^16.4.13",
"@types/ws": "^8.2.0",
"prettier": "^2.4.1",
"typedoc": "^0.22.8",
"typescript": "^4.3.5"
},
"dependencies": {
"axios": "^0.24.0",
"ci": "^2.1.1",
"ws": "^8.2.0"
},
"engines": {
"node": ">=16.6.0",
"npm": ">=7.0.0"
}
}