2020-01-08 01:48:37 +00:00
|
|
|
{
|
|
|
|
"name": "@ms/manager",
|
|
|
|
"version": "0.1.0",
|
|
|
|
"description": "MiaoScript compile package",
|
|
|
|
"keywords": [
|
|
|
|
"miaoscript",
|
|
|
|
"minecraft",
|
|
|
|
"bukkit",
|
|
|
|
"sponge"
|
|
|
|
],
|
|
|
|
"author": "MiaoWoo <admin@yumc.pw>",
|
|
|
|
"homepage": "https://github.com/circlecloud/ms.git",
|
|
|
|
"license": "ISC",
|
|
|
|
"main": "dist/index.js",
|
|
|
|
"publishConfig": {
|
|
|
|
"registry": "https://repo.yumc.pw/repository/npm-hosted/"
|
|
|
|
},
|
|
|
|
"scripts": {
|
2020-01-16 09:28:10 +00:00
|
|
|
"dev": "npx ts-node-dev --respawn --debounce=1500 src/index.ts",
|
2020-01-08 01:48:37 +00:00
|
|
|
"clean": "rimraf dist",
|
|
|
|
"watch": "npx tsc --watch",
|
|
|
|
"build": "yarn clean && npx tsc",
|
|
|
|
"test": "echo \"Error: run tests from root\" && exit 1"
|
|
|
|
},
|
2020-01-16 09:28:10 +00:00
|
|
|
"dependencies": {
|
|
|
|
"@cc-server/core": "^0.7.0",
|
|
|
|
"mongodb": "^3.4.1"
|
|
|
|
},
|
2020-01-08 01:48:37 +00:00
|
|
|
"devDependencies": {
|
2020-01-16 09:28:10 +00:00
|
|
|
"@types/mongodb": "^3.3.14",
|
2020-01-08 01:48:37 +00:00
|
|
|
"reflect-metadata": "^0.1.13",
|
|
|
|
"rimraf": "^3.0.0",
|
2020-01-16 09:28:10 +00:00
|
|
|
"ts-node-dev": "^1.0.0-pre.44",
|
2020-01-08 01:48:37 +00:00
|
|
|
"typescript": "^3.7.2"
|
2020-01-16 09:28:10 +00:00
|
|
|
}
|
|
|
|
}
|