Skip to content

Commit

Permalink
Add to npmignore, export KnaveCharacter
Browse files Browse the repository at this point in the history
  • Loading branch information
riccjohn committed Mar 21, 2024
1 parent de84a03 commit cd5a96a
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
docs
.vscode
coverage
.github
.husky
26 changes: 24 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,30 @@
{
"name": "osr-generators",
"private": true,
"version": "0.0.0",
"description": "Generators for OSR-style tabletop roleplaying games",
"private": false,
"version": "1.0.0",
"type": "module",
"author": {
"email": "riccjohn@gmail.com",
"name": "John Riccardi"
},
"bugs": "https://github.com/users/riccjohn/projects/5",
"keywords": [
"osr",
"rpg",
"ttrpg",
"knave",
"mork",
"borg",
"cairn",
"d&d",
"dungeon",
"dragon",
"shadowdark",
"tabletop",
"roleplaying"
],
"license": "GPL-3.0-only",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
Expand Down
3 changes: 1 addition & 2 deletions src/main.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
export const add = (a: number, b: number) => a + b
export const sub = (a: number, b: number) => a - b
export { KnaveCharacter } from '@/knave'

0 comments on commit cd5a96a

Please sign in to comment.