@pokerland/utils
Version:
General Poker Utils
46 lines • 1.13 kB
JSON
{
"name": "@pokerland/utils",
"version": "0.0.4",
"description": "General Poker Utils",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"Pokerland",
"Poker"
],
"author": "",
"devDependencies": {
"@types/json-stringify-safe": "^5.0.3",
"@types/node": "^20.14.10",
"@types/ramda": "^0.29.10",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"eslint": "^8.56.0",
"rimraf": "^6.0.1",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vitest": "^2.0.5"
},
"dependencies": {
"@stcland/errors": "^0.0.2",
"ramda": "^0.29.1",
"ramda-adjunct": "^4.1.1",
"@pokerland/types": "^1.0.6"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"lint": "eslint . --ext .js,.ts",
"build": "pnpm run clean && tsup",
"test": "vitest --run",
"clean": "rimraf ./dist",
"clean:all": "pnpm run clean && rimraf ./node_modules pnpm-lock.yaml"
}
}