feat: add protocol package

Signed-off-by: MiaoWoo <admin@yumc.pw>
backup
MiaoWoo 2020-10-31 10:20:41 +08:00
parent 85f2bd5a10
commit 3f101ca250
4 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1 @@
../../.npmignore

View File

@ -0,0 +1,27 @@
{
"name": "@ccms/protocol",
"version": "0.9.8",
"description": "MiaoScript protocol package",
"keywords": [
"miaoscript",
"minecraft",
"bukkit",
"sponge"
],
"author": "MiaoWoo <admin@yumc.pw>",
"homepage": "https://github.com/circlecloud/ms.git",
"license": "ISC",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"watch": "tsc --watch",
"build": "yarn clean && tsc",
"test": "echo \"Error: run tests from root\" && exit 1"
},
"devDependencies": {
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"typescript": "^4.0.3"
}
}

View File

@ -0,0 +1 @@
export { }

View File

@ -0,0 +1,7 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"baseUrl": "src",
"outDir": "dist"
}
}