添加网页调试

This commit is contained in:
wangdan
2020-09-09 12:31:17 +08:00
parent f8ac401c67
commit b591a0120c
19 changed files with 370 additions and 7 deletions
@@ -0,0 +1,6 @@
{
"name": "pomelo-client",
"description": "pomelo-client",
"local": [ "boot" ],
"paths": [ "local"]
}
@@ -0,0 +1,14 @@
{
"name": "pomelo-protocol",
"description": "pomelo-protocol",
"keywords": [
"pomelo",
"protocol"
],
"version": "0.1.3",
"main": "lib/protocol.js",
"scripts": [
"lib/protocol.js"
],
"repo": "https://github.com/NetEase/pomelo-protocol"
}
@@ -0,0 +1,14 @@
{
"name": "emitter",
"repo": "component/emitter",
"description": "Event emitter",
"keywords": [
"emitter",
"events"
],
"version": "1.1.2",
"scripts": [
"index.js"
],
"license": "MIT"
}
@@ -0,0 +1,15 @@
{
"name": "pomelo-jsclient-websocket",
"description": "pomelo-jsclient-websocket",
"keywords": [
"pomelo",
"jsclient",
"websocket"
],
"version": "0.0.1",
"main": "lib/pomelo-client.js",
"scripts": [
"lib/pomelo-client.js"
],
"repo": "https://github.com/pomelonode/pomelo-jsclient-websocket"
}
@@ -0,0 +1,14 @@
{
"name": "pomelo-protobuf",
"description": "pomelo-protobuf",
"keywords": [
"pomelo",
"protobuf"
],
"version": "0.2.0",
"main": "lib/client/protobuf.js",
"scripts": [
"lib/client/protobuf.js"
],
"repo": "https://github.com/pomelonode/pomelo-protobuf"
}
@@ -0,0 +1,11 @@
{
"name": "boot",
"description": "Main app boot component",
"dependencies": {
"component/emitter":"master",
"NetEase/pomelo-protocol": "master",
"pomelonode/pomelo-protobuf": "master",
"pomelonode/pomelo-jsclient-websocket": "master"
},
"scripts": ["index.js"]
}