ms/packages/client/package.json

33 lines
870 B
JSON
Raw Normal View History

{
"private": true,
"name": "@ccms/client",
2021-07-14 07:48:56 +00:00
"version": "0.16.1",
"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",
2020-02-23 16:21:48 +00:00
"start": "node dist/index.js",
"test": "echo \"Error: run tests from root\" && exit 1"
},
"dependencies": {
"minecraft-protocol": "^1.25.0"
},
"devDependencies": {
"@types/node": "^16.4.12",
"rimraf": "^3.0.2",
2021-07-10 10:28:22 +00:00
"typescript": "^4.3.5"
}
2020-04-07 05:39:50 +00:00
}