chore: make models package public for consumption by server

This commit is contained in:
Mo
2022-11-18 05:51:08 -06:00
parent 4b081890fd
commit 0c253dc46a
8 changed files with 17 additions and 10 deletions

View File

@@ -4,13 +4,20 @@
"engines": {
"node": ">=16.0.0 <17.0.0"
},
"private": true,
"publishConfig": {
"access": "public"
},
"description": "Models used in SNJS library",
"author": "Standard Notes",
"main": "./src/index.ts",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "AGPL-3.0-or-later",
"scripts": {
"tsc": "tsc -p tsconfig.json",
"clean": "rm -fr dist",
"prestart": "yarn clean",
"start": "tsc -p tsconfig.json --watch",
"prebuild": "yarn clean",
"build": "tsc -p tsconfig.json",
"lint": "eslint src --ext .ts",
"test": "jest"
},