UNPKG

earthmc

Version:

An unofficial EarthMC library providing handy methods and extensive info.

82 lines (81 loc) 2.4 kB
{ "name": "earthmc", "version": "10.4.0", "description": "An unofficial EarthMC library providing handy methods and extensive info.", "author": "Owen3H", "license": "ISC", "repository": { "type": "git", "url": "https://github.com/EarthMC-Toolkit/EarthMC-NPM.git" }, "homepage": "https://emctoolkit.vercel.app/docs/npm", "funding": "https://github.com/sponsors/Owen3H", "keywords": [ "earth", "earthmc", "dynmap", "towny", "minecraft", "geopolitics" ], "type": "module", "types": "./dist/main.d.ts", "exports": { "import": "./dist/main.mjs", "require": "./dist/main.js", "default": "./dist/main.js" }, "scripts": { "prepublishOnly": "bun run build && bun run docs", "ci": "bun run lint && bun run test && bun run build", "lint": "eslint .", "clean": "rimraf dist", "prune": "rimraf node_modules && bun i", "build": "bun run clean && rollup -c && tsc --declaration true --emitDeclarationOnly true --declarationMap", "docs": "typedoc --options typedoc.json", "test": "vitest run --config ./vitest.config.ts", "typecheck": "vitest --typecheck --typecheck.only", "test-browser": "vitest run --browser.name=chrome --browser.headless --config ./vitest.config.ts" }, "dependencies": { "@isaacs/ttlcache": "^1.4.1", "async-mutex": "^0.5.0", "mitt": "^3.0.1", "modern-diacritics": "^2.3.1", "mojang-lib": "^1.13.4", "striptags": "latest", "tslib": "latest", "undici": "latest" }, "devDependencies": { "@rollup/plugin-commonjs": "^25.0.4", "@rollup/plugin-json": "^6.0.0", "@rollup/plugin-node-resolve": "^15.2.1", "@types/node": "^20.5.7", "@typescript-eslint/eslint-plugin": "^6.5.0", "@typescript-eslint/parser": "^6.5.0", "eslint": "^8.48.0", "eslint-plugin-named-import-spacing": "^1.0.3", "rimraf": "^6.0.1", "rollup": "^3.28.1", "rollup-plugin-esbuild": "^5.0.0", "rollup-plugin-polyfill-node": "^0.12.0", "rollup-plugin-typescript-paths": "^1.4.0", "typedoc": "latest", "typedoc-theme-hierarchy": "latest", "typescript": "^5.5.2", "vite-tsconfig-paths": "^4.3.2", "@vitest/browser": "latest", "vitest": "latest", "webdriverio": "^8.16.3" }, "files": [ "dist", "src", "README.md", "package.json" ], "engines": { "node": ">=18 <22" } }