From 3ed0d3618cc22a4f434021befc709ccd06bc74cc Mon Sep 17 00:00:00 2001 From: Claudia Date: Mon, 5 Aug 2024 17:53:55 +0200 Subject: [PATCH] fix: update the pkg json to make the module work --- artifacts/package.json | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/artifacts/package.json b/artifacts/package.json index c7d7da27..b2a969e1 100644 --- a/artifacts/package.json +++ b/artifacts/package.json @@ -4,10 +4,21 @@ "version": "1.4.0-rc0", "license": "AGPL-3.0-or-later", "description": "The Aragon OSx Solidity contracts ABIs", + "typings": "dist/index.d.ts", + "main": "dist/index.js", + "files": [ + "dist" + ], "publishConfig": { "access": "public" }, + "scripts": { + "build": "tsc" + }, "engines": { "node": ">=16" + }, + "devDependencies": { + "typescript": "^5.5.4" } -} \ No newline at end of file +}