@datasworn-community/ironsmith 0.2.0 → 0.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 (3) hide show
  1. package/index.d.ts +2 -2
  2. package/index.js +1 -1
  3. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import type { Datasworn } from '@datasworn-community/core'
2
2
 
3
- declare const data: Datasworn.RulesPackage
4
- export { data }
3
+ declare const data: Datasworn.Expansion
4
+ export { data, data as ironsmith }
5
5
  export default data
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
1
  import data from './json/ironsmith.json' with { type: 'json' }
2
2
 
3
- export { data }
3
+ export { data, data as ironsmith }
4
4
  export default data
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@datasworn-community/ironsmith",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Datasworn JSON data for Ironsmith, a Classic Ironsworn expansion by Eric Bright.",
5
5
  "type": "module",
6
6
  "main": "./index.js",