UNPKG

osr-generators

Version:

Generators for OSR-style tabletop roleplaying games

71 lines 1.69 kB
{ "name": "osr-generators", "version": "0.1.0", "description": "Generators for OSR-style tabletop roleplaying games", "repository": { "type": "github", "url": "git+https://github.com/riccjohn/osr-generators.git" }, "private": false, "type": "module", "author": { "email": "riccjohn@gmail.com", "name": "John Riccardi" }, "bugs": "https://github.com/riccjohn/osr-generators/issues", "keywords": [ "osr", "rpg", "ttrpg", "knave", "mork", "borg", "cairn", "d&d", "dungeon", "dragon", "shadowdark", "tabletop", "roleplaying" ], "license": "GPL-3.0-only", "main": "dist/index.js", "types": "dist/index.d.ts", "module": "dist/index.es.js", "files": [ "dist" ], "devDependencies": { "@types/jest": "^29.5.14", "@typescript-eslint/eslint-plugin": "^8.24.1", "@typescript-eslint/parser": "^8.24.1", "@vitest/coverage-v8": "^3.0.6", "eslint": "^9.21.0", "eslint-config-prettier": "^10.0.1", "eslint-define-config": "^2.1.0", "eslint-plugin-prettier": "^5.2.3", "husky": "^9.1.7", "jiti": "^2.4.2", "lint-staged": "^15.4.3", "prettier": "^3.5.2", "tsup": "^8.3.6", "typescript": "^5.7.3", "vite-tsconfig-paths": "^5.1.4", "vitest": "^3.0.6" }, "lint-staged": { "*.{js,jsx,ts,tsx,json,md}": [ "prettier --write", "pnpm lint --fix", "pnpm test:ci" ] }, "scripts": { "build": "tsup", "test": "vitest", "test:ci": "vitest run --coverage --passWithNoTests", "lint": "eslint", "format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,md}\"", "type-check": "tsc --noEmit" } }