@spigotmc/microservice
Version:
The library for powering the Microservice API for your Minecraft server.
42 lines (41 loc) • 1.07 kB
JSON
{
"name": "@spigotmc/microservice",
"repository": {
"type": "git",
"url": "https://github.com/walkintheparkcoder/microservice.git"
},
"homepage": "https://walkinthepark.gitbook.io/microservice-api/",
"version": "1.2.3",
"description": "The library for powering the Microservice API for your Minecraft server.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"scripts": {
"dev": "nodemon src/index.ts",
"build": "rmdir /s /q dist && npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module CommonJS --outDir dist/cjs"
},
"keywords": [
"spigotmc",
"microservice",
"api"
],
"author": {
"name": "walkinthepark",
"email": "walkintheparkcoder@gmail.com",
"url": "https://github.com/walkintheparkcoder"
},
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.17",
"@types/mysql": "^2.15.21",
"@types/node": "^18.11.19"
},
"dependencies": {
"express": "^4.18.2",
"mysql": "^2.18.1"
}
}