From e4cb9aff8e5ba9bc1ade585253ed3be453208c0a Mon Sep 17 00:00:00 2001 From: Pablo Mayrgundter Date: Thu, 26 Oct 2023 18:48:12 -0500 Subject: [PATCH] Add npm repo config to package.json --- package.json | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/package.json b/package.json index cfba565e..0c19f8e1 100644 --- a/package.json +++ b/package.json @@ -1,13 +1,17 @@ { - "name": "bldrs-conway", - "version": "0.1", - "description": "", + "name": "@bldrs-ai/conway", + "description": "bldrs.ai datamodel", + "author": "bldrs.ai", + "license": "UNLICENSED", + "version": "0.1.0", + "repository": "https://github.com/bldrs-ai/conway", + "publishConfig": { + "registry": "https://npm.pkg.github.com" + }, "files": [ "./compiled/**/*" ], - "author": "bldrs.ai", - "license": "ISC", - "private": true, + "type": "module", "scripts": { "clean": "yarn clean-conway_geom", "build": "yarn clean && yarn build-all-release-node", @@ -85,6 +89,5 @@ "ts-jest": "^29.0.3", "ts-node": "^10.9.1", "typescript": "^4.8.4" - }, - "type": "module" + } }