therungg
Version:
Node wrapper for therun.gg's API.
65 lines (64 loc) • 1.46 kB
JSON
{
"name": "therungg",
"version": "1.2.2",
"description": "Node wrapper for therun.gg's API.",
"author": "Devin Rowan",
"license": "MIT",
"keywords": [
"therungg",
"therun",
"speedrun",
"speedrunning"
],
"repository": {
"type": "git",
"url": "https://github.com/developerrowan/therun.git"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "cross-env NODE_ENV=production tsup-node",
"build:watch": "cross-env NODE_ENV=development tsup-node",
"lint": "eslint --fix src && prettier --write src",
"prepare": "husky install"
},
"dependencies": {
"isomorphic-ws": "^5.0.0",
"ws": "^8.11.0"
},
"devDependencies": {
"@types/node": "^18.11.17",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"cross-env": "^7.0.3",
"esbuild": "^0.16.12",
"eslint": "^8.30.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.0",
"npm-dts": "^1.3.12",
"prettier": "^2.8.1",
"tsup": "^6.5.0",
"typescript": "^4.9.4"
},
"prettier": {
"semi": true,
"singleQuote": true,
"arrowParens": "avoid",
"tabWidth": 2,
"trailingComma": "es5"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
}
}