@bedrock-oss/stylish
Version:
A decorator package with for developing add-ons with Script API in Minecraft Bedrock Edition
58 lines (57 loc) • 1.35 kB
JSON
{
"name": "@bedrock-oss/stylish",
"version": "0.0.3",
"description": "A decorator package with for developing add-ons with Script API in Minecraft Bedrock Edition",
"keywords": [
"minecraft",
"bedrock",
"addon",
"script-api",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/Bedrock-OSS/stylish.git"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsup",
"lint": "eslint src --ext .ts",
"test": "jest",
"prepublishOnly": "npm run build"
},
"author": "Bedrock-OSS",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.6",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.57.0",
"eslint-plugin-minecraft-linting": "^1.1.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"tsup": "^7.2.0"
},
"dependencies": {
"@minecraft/common": "^1.2.0",
"@minecraft/server": "^2.1.0"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
}
}