@swrpg-online/dice 1.2.0 → 1.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +32 -5
package/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
  [![codecov](https://codecov.io/gh/swrpg-online/dice/graph/badge.svg?token=BQIFNBWKI8)](https://codecov.io/gh/swrpg-online/dice)
6
6
  [![semantic-release: angular](https://img.shields.io/badge/semantic--release-angular-e10079?logo=semantic-release)](https://github.com/semantic-release/semantic-release)
7
7
 
8
- A TypeScript library that creates dice rolls using the [narrative dice system](https://star-wars-rpg-ffg.fandom.com/wiki/Narrative_Dice) for the Star Wars Role-Playing Game by [Fantasy Flight Games](https://www.fantasyflightgames.com/en/starwarsrpg/) and [Edge Studio](https://www.edge-studio.net/categories-games/starwarsrpg/).
8
+ A TypeScript library that creates dice rolls using the [narrative dice system](https://star-wars-rpg-ffg.fandom.com/wiki/Narrative_Dice) for the Star Wars Roleplaying Game by [Fantasy Flight Games](https://www.fantasyflightgames.com/en/starwarsrpg/) and [Edge Studio](https://www.edge-studio.net/categories-games/starwarsrpg/).
9
9
 
10
10
  ## Features
11
11
 
package/package.json CHANGED
@@ -1,7 +1,34 @@
1
1
  {
2
2
  "name": "@swrpg-online/dice",
3
- "version": "1.2.0",
4
- "description": "A TypeScript library for simulating Star Wars RPG narrative dice rolls.",
3
+ "version": "1.2.1",
4
+ "description": "A TypeScript library that creates dice rolls using the narrative dice system for the Star Wars Roleplaying Game by Fantasy Flight Games and Edge Studio.",
5
+ "keywords": [
6
+ "swrpg",
7
+ "dice",
8
+ "rpg",
9
+ "star wars",
10
+ "star-wars",
11
+ "rpg",
12
+ "dice",
13
+ "edge-studio",
14
+ "narrative-dice",
15
+ "typescript",
16
+ "cli",
17
+ "swrpg",
18
+ "genesys",
19
+ "fantasy-flight-games",
20
+ "ffg",
21
+ "roleplaying",
22
+ "tabletop",
23
+ "dice-roller"
24
+ ],
25
+ "homepage": "https://github.com/swrpg-online/dice",
26
+ "bugs": {
27
+ "url": "https://github.com/swrpg-online/dice/issues"
28
+ },
29
+ "license": "MIT",
30
+ "author": "@swrpg-online",
31
+ "contributors": [],
5
32
  "main": "dist/index.js",
6
33
  "bin": {
7
34
  "swrpg-dice": "dist/cli.js"
@@ -22,9 +49,6 @@
22
49
  "build": "tsc && ls -l",
23
50
  "prepare": "npm run build && husky install"
24
51
  },
25
- "keywords": [],
26
- "author": "@swrpg-online",
27
- "license": "MIT",
28
52
  "dependencies": {
29
53
  "@types/jest": "^29.5.14",
30
54
  "@types/node": "^22.10.0",
@@ -46,6 +70,9 @@
46
70
  "type": "git",
47
71
  "url": "https://github.com/swrpg-online/dice"
48
72
  },
73
+ "engines": {
74
+ "node": ">=21"
75
+ },
49
76
  "lint-staged": {
50
77
  "**/*": "prettier --write --ignore-unknown"
51
78
  }