forked from binsee/padchat-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 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
{
"name": "padchat-sdk",
"version": "0.4.0",
"description": "padchat的本地服务器开发包",
"main": "index.js",
"scripts": {
"start": "node demo",
"doc": "node scripts/docVer.js >nul && jsdoc2md index.js >> docs/index.md",
"doc-minami": "node_modules/.bin/jsdoc --configure jsdoc.json --verbose",
"eslint": "eslint {define,helper,index,demo}.js"
},
"author": "binsee",
"license": "ISC",
"dependencies": {
"uuid": "^3.2.1",
"ws": "^5.1.1"
},
"devDependencies": {
"@types/eslint": "^4.16.0",
"@types/log4js": "^2.3.5",
"@types/uuid": "^3.4.3",
"@types/ws": "^4.0.2",
"eslint": "^4.19.1",
"eslint-config-egg": "^7.0.0",
"jsdoc": "^3.5.5",
"jsdoc-to-markdown": "^4.0.1",
"log4js": "^2.5.3",
"minami": "^1.2.3",
"qrcode-terminal": "^0.12.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/binsee/padchat-sdk.git"
},
"bugs": {
"url": "https://github.com/binsee/padchat-sdk/issues"
},
"homepage": "https://github.com/binsee/padchat-sdk#readme",
"files": [
"README.md",
"package.json",
"define.js",
"helper.js",
"index.js"
]
}