roleplayer
Version:
A library for building table top role playing game worlds, and managing campaigns in those worlds
51 lines • 1.35 kB
JSON
{
"name": "roleplayer",
"version": "0.0.17",
"private": false,
"description": "A library for building table top role playing game worlds, and managing campaigns in those worlds",
"keywords": [
"ttrpg",
"table top roleplaying game",
"roleplaying",
"dungeons and dragons",
"coriolis",
"pathfinder",
"call of cthulhu",
"blades in the dark"
],
"repository": {
"type": "git",
"url": "git+https://github.com/maxpaj/roleplayer.git"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
"test": "jest",
"test-watch": "jest --watch",
"build": "tsup src/index.ts --format cjs,esm --dts",
"lint": "eslint . --max-warnings 0",
"lint-fix": "eslint . --fix"
},
"devDependencies": {
"@repo/eslint-config": "^0.0.0",
"@repo/typescript-config": "^0.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^8.30.1",
"@typescript-eslint/parser": "^8.30.1",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"ts-jest": "^29.3.2",
"ts-node": "^10.9.2",
"tsup": "^8.4.0",
"typescript": "^5.8.3"
},
"dependencies": {
"uuid": "^11.1.0"
},
"publishConfig": {
"access": "public"
}
}