{
	"name": "@magikcraft/core",
	"version": "0.2.0",
	"description": "Magikcraft core library for SMA plugins",
	"homepage": "https://www.magikcraft.io",
	"author": {
		"name": "Josh Wulf",
		"email": "josh@magikcraft.io",
		"url": "https://github.com/Magikcraft"
	},
	"main": "lib/index.js",
	"keywords": [
		"scriptcraft",
		"magikcraft",
		"minecraft"
	],
	"devDependencies": {
		"@magikcraft/op-all": "^1.0.0",
		"@scriptcraft/types": "^1.3.2",
		"@types/jasmine": "^3.3.12",
		"husky": "^1.3.1",
		"lint-staged": "^8.1.5",
		"prettier": "^1.16.4",
		"typedoc": "^0.14.2"
	},
	"smaPluginConfig": {
		"scriptcraft_autoload_dir": "autoload"
	},
	"smaServerConfig": {
		"port": "25565",
		"serverName": "magikcraft-core-dev",
		"test": true,
		"dockerTag": "latest",
		"bind": [
			{
				"src": "./",
				"dst": "scriptcraft-plugins/@magikcraft/core/"
			}
		],
		"worlds": [
			{
				"downloadUrl": "https://sitapatis-sydney-storage.s3.amazonaws.com/MCT1/mct1-worlds-0.1.1.zip",
				"version": "0.1.1",
				"name": "mct1"
			}
		]
	},
	"husky": {
		"hooks": {
			"pre-commit": "tsc && lint-staged"
		}
	},
	"lint-staged": {
		"*.{ts,json,css,md},!*.d.ts": [
			"prettier --write",
			"git add"
		],
		"*.js": [
			"git add"
		],
		"*.json": [
			"prettier --write",
			"git add"
		]
	},
	"scripts": {
		"test": "tsc && smac start -t -e",
		"start": "tsc -w",
		"docs": "typedoc --out ./docs --tsconfig ./tsconfig.json --excludePrivate --excludeNotExported --mode file"
	},
	"repository": "Magikcraft/core",
	"license": "Apache-2.0",
	"dependencies": {
		"typescript": "^3.7.3"
	}
}
