@randsum/blades
Version:
Blades in the Dark compatible dice rolling implementation
68 lines (67 loc) • 1.69 kB
JSON
{
"name": "@randsum/blades",
"version": "1.1.0",
"description": "Blades in the Dark compatible dice rolling implementation",
"private": false,
"author": {
"name": "Alex Jarvis",
"url": "https://github.com/alxjrvs"
},
"license": "MIT",
"homepage": "https://github.com/RANDSUM/randsum",
"repository": {
"type": "git",
"url": "git+https://github.com/RANDSUM/randsum.git",
"directory": "packages/blades"
},
"sideEffects": false,
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"react-native": "./src/index.ts",
"files": [
"dist",
"src",
"LICENSE",
"README.md"
],
"dependencies": {
"@randsum/roller": "workspace:~"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./package.json": "./package.json"
},
"engines": {
"bun": ">=1.3.8",
"node": ">=18.0.0"
},
"keywords": [
"dice",
"roller",
"rpg",
"random",
"typescript",
"tabletop",
"blades",
"forged-in-the-dark"
],
"scripts": {
"build": "bunup --entry src/index.ts --format esm,cjs --dts --minify --sourcemap external --target node --clean",
"test": "bun test",
"lint": "eslint . -c ../../eslint.config.js",
"format": "prettier --write . --ignore-path ../../.prettierignore --config ../../.prettierrc",
"format:check": "prettier --check . --ignore-path ../../.prettierignore --config ../../.prettierrc",
"typecheck": "tsc --noEmit"
}
}