@sfirew/minecraft-motd-parser
Version:
Minecraft Server MOTD Parser, can convert to html, json, text.
66 lines (65 loc) • 1.78 kB
JSON
{
"name": "@sfirew/minecraft-motd-parser",
"description": "Minecraft Server MOTD Parser, can convert to html, json, text.",
"version": "1.1.6",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "types/index.d.ts",
"license": "MIT",
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"test:performance": "jest --testNamePattern=\"Performance test|Stress test\"",
"test:security": "jest --testNamePattern=\"Security Tests\"",
"test:all": "jest --coverage --verbose",
"test-self": "ts-node ./src/test.ts",
"build": "yarn build:dist && yarn build:declarations",
"build:dist": "tsup --format cjs,esm",
"build:declarations": "tsc --emitDeclarationOnly --declaration --outDir types",
"lint": "eslint \"**/*.ts\""
},
"tsup": {
"entry": [
"src/index.ts"
],
"splitting": false,
"sourcemap": true,
"clean": true,
"minify": true
},
"devDependencies": {
"@eslint/js": "^9.28.0",
"@jest/globals": "^29.7.0",
"@types/node": "^20.17.57",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.1",
"globals": "^16.2.0",
"jest": "^29.7.0",
"ts-jest": "^29.3.4",
"ts-node": "^10.9.2",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.33.0"
},
"repository": "https://github.com/SnowFireWolf/minecraft-motd-parser.git",
"author": "SnowFireWolf",
"keywords": [
"minecraft",
"java",
"bedrock",
"server",
"motd",
"color",
"hex",
"parser",
"html",
"formatting",
"javascript",
"typescript"
],
"publishConfig": {
"@snowfirewolf:registry": "https://npm.pkg.github.com"
}
}