@wise-old-man/utils
Version:
A JavaScript/TypeScript client that interfaces and consumes the Wise Old Man API, an API that tracks and measures players' progress in Old School Runescape.
55 lines (54 loc) • 1.43 kB
JSON
{
"name": "@wise-old-man/utils",
"version": "4.0.19",
"description": "A JavaScript/TypeScript client that interfaces and consumes the Wise Old Man API, an API that tracks and measures players' progress in Old School Runescape.",
"keywords": [
"wiseoldman",
"wom",
"osrs",
"runescape",
"oldschool",
"api"
],
"author": "Psikoi",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/wise-old-man/wise-old-man.git"
},
"main": "dist/cjs/index.cjs",
"types": "dist/index.d.ts",
"module": "dist/es/index.js",
"type": "module",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/es/index.mjs",
"default": "./dist/cjs/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"lint": "eslint",
"prepublish": "npm run build",
"prebuild": "cd ../server && npm run prisma:generate",
"build": "rm -rf ./dist && npx rollup -c && tsc dist/index.d.ts"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^20.0.0",
"eslint": "~9.35.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"prettier": "^3.6.2",
"rollup": "^4.12.0",
"rollup-plugin-dts": "^6.1.0",
"tslib": "^2.4.0",
"typescript": "^5.3.3",
"typescript-eslint": "^8.43.0"
},
"dependencies": {}
}