ms/packages/client/package.json

33 lines
871 B
JSON

{
"private": true,
"name": "@ccms/client",
"version": "0.14.0",
"description": "MiaoScript client package",
"keywords": [
"miaoscript",
"minecraft",
"bukkit",
"sponge"
],
"author": "MiaoWoo <admin@yumc.pw>",
"homepage": "https://github.com/circlecloud/ms.git",
"license": "ISC",
"main": "dist/index.js",
"scripts": {
"dev": "ts-node-dev --respawn --debounce=1500 src/index.ts",
"clean": "rimraf dist",
"watch": "tsc --watch",
"build": "yarn clean && tsc",
"start": "node dist/index.js",
"test": "echo \"Error: run tests from root\" && exit 1"
},
"dependencies": {
"minecraft-protocol": "^1.24.1"
},
"devDependencies": {
"@types/node": "^14.14.37",
"rimraf": "^3.0.2",
"typescript": "^4.2.3"
}
}