UNPKG

@geometrically/minecraft-motd-parser

Version:

Minecraft Server MOTD Parser, can convert to html, json, text.

58 lines 1.43 kB
{ "name": "@geometrically/minecraft-motd-parser", "description": "Minecraft Server MOTD Parser, can convert to html, json, text.", "version": "1.1.4", "main": "dist/index.js", "module": "dist/index.mjs", "types": "types/index.d.ts", "license": "MIT", "tsup": { "entry": [ "src/index.ts" ], "splitting": false, "sourcemap": true, "clean": true, "minify": true }, "devDependencies": { "@jest/globals": "^29.7.0", "@types/node": "^20.14.10", "@typescript-eslint/eslint-plugin": "^5.41.0", "@typescript-eslint/parser": "^5.41.0", "eslint": "^8.26.0", "jest": "^29.7.0", "prettier": "^2.7.1", "ts-jest": "^29.2.2", "ts-node": "^10.9.2", "tsup": "^8.1.0", "typescript": "^5.5.3" }, "repository": "https://github.com/modrinth/minecraft-motd-parser.git", "author": "modrinth", "keywords": [ "minecraft", "java", "bedrock", "server", "motd", "color", "hex", "parser", "html", "formatting", "javascript", "typescript" ], "publishConfig": { "access": "public" }, "scripts": { "test": "jest", "test-self": "ts-node ./src/test.ts", "build": "pnpm build:dist && pnpm build:declarations", "build:dist": "tsup --format cjs,esm", "build:declarations": "tsc --emitDeclarationOnly --declaration --outDir types", "format": "prettier --write \"**/*.+(ts)\"" } }