Create package and entrypoint

This commit is contained in:
Garrett Mills 2020-11-29 11:59:53 -06:00
parent 1459d5293b
commit 9754f14d92
Signed by: garrettmills
GPG Key ID: D2BF5FBA8298F246
2 changed files with 13 additions and 0 deletions

4
index.js Normal file
View File

@ -0,0 +1,4 @@
module.exports = exports = {
Errors: require('./Errors'),
Message: require('./Message'),
}

9
package.json Normal file
View File

@ -0,0 +1,9 @@
{
"name": "pied-vcs-shared",
"version": "0.1.0",
"description": "Shared libraries and files for the Pied VCS",
"main": "index.js",
"repository": "https://code.garrettmills.dev/Pied/shared",
"author": "garrettmills <shout@garrettmills.dev>",
"license": "MIT"
}