@swrpg-online/dice 1.2.0 → 1.2.2
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.
- package/README.md +1 -1
- package/package.json +33 -6
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
[](https://codecov.io/gh/swrpg-online/dice)
|
|
6
6
|
[](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
|
|
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,33 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swrpg-online/dice",
|
|
3
|
-
"
|
|
4
|
-
"
|
|
3
|
+
"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.",
|
|
4
|
+
"keywords": [
|
|
5
|
+
"swrpg",
|
|
6
|
+
"dice",
|
|
7
|
+
"rpg",
|
|
8
|
+
"star wars",
|
|
9
|
+
"star-wars",
|
|
10
|
+
"rpg",
|
|
11
|
+
"dice",
|
|
12
|
+
"edge-studio",
|
|
13
|
+
"narrative-dice",
|
|
14
|
+
"typescript",
|
|
15
|
+
"cli",
|
|
16
|
+
"swrpg",
|
|
17
|
+
"genesys",
|
|
18
|
+
"fantasy-flight-games",
|
|
19
|
+
"ffg",
|
|
20
|
+
"roleplaying",
|
|
21
|
+
"tabletop",
|
|
22
|
+
"dice-roller"
|
|
23
|
+
],
|
|
24
|
+
"homepage": "https://github.com/swrpg-online/dice",
|
|
25
|
+
"bugs": {
|
|
26
|
+
"url": "https://github.com/swrpg-online/dice/issues"
|
|
27
|
+
},
|
|
28
|
+
"license": "MIT",
|
|
29
|
+
"author": "@swrpg-online",
|
|
30
|
+
"contributors": [],
|
|
5
31
|
"main": "dist/index.js",
|
|
6
32
|
"bin": {
|
|
7
33
|
"swrpg-dice": "dist/cli.js"
|
|
@@ -22,9 +48,6 @@
|
|
|
22
48
|
"build": "tsc && ls -l",
|
|
23
49
|
"prepare": "npm run build && husky install"
|
|
24
50
|
},
|
|
25
|
-
"keywords": [],
|
|
26
|
-
"author": "@swrpg-online",
|
|
27
|
-
"license": "MIT",
|
|
28
51
|
"dependencies": {
|
|
29
52
|
"@types/jest": "^29.5.14",
|
|
30
53
|
"@types/node": "^22.10.0",
|
|
@@ -46,7 +69,11 @@
|
|
|
46
69
|
"type": "git",
|
|
47
70
|
"url": "https://github.com/swrpg-online/dice"
|
|
48
71
|
},
|
|
72
|
+
"engines": {
|
|
73
|
+
"node": ">=21"
|
|
74
|
+
},
|
|
49
75
|
"lint-staged": {
|
|
50
76
|
"**/*": "prettier --write --ignore-unknown"
|
|
51
|
-
}
|
|
77
|
+
},
|
|
78
|
+
"version": "1.2.2"
|
|
52
79
|
}
|