-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1022 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
{
"name": "@statio/funk.js",
"version": "1.2.0",
"main": "dist/lib.js",
"typings": "dist/lib.d.ts",
"repository": "https://github.com/statiohq/funk.js.git",
"author": "OfficialCRUGG <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"build": "rimraf dist && tsc",
"build:docs": "typedoc --out docs src/lib.ts",
"prettier": "prettier --write src",
"prettier:ci": "prettier --check src"
},
"files": [
"dist/*"
],
"keywords": [
"nodejs",
"api",
"wrapper",
"library",
"typescript",
"websocket",
"realtime",
"funk",
"statio"
],
"dependencies": {
"websocket": "^1.0.34"
},
"devDependencies": {
"@types/node": "^16.11.1",
"@types/websocket": "^1.0.4",
"@types/ws": "^8.2.0",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"typedoc": "^0.22.8",
"typescript": "^4.4.4"
}
}