From 79a2e234fdd17156e5806b6a0643cf89e424c7d2 Mon Sep 17 00:00:00 2001 From: HuaweiGu Date: Wed, 6 Nov 2024 14:39:32 -0500 Subject: [PATCH] feat: update package json for npm publish --- .gitignore | 1 + package.json | 23 ++++++++++++++++++++--- 2 files changed, 21 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 386aebb6..767f68e5 100644 --- a/.gitignore +++ b/.gitignore @@ -18,3 +18,4 @@ broadcast/**/dry-run/**/* # misc .DS_Store **/.DS_Store +.npmrc diff --git a/package.json b/package.json index 6cb13f9a..569b871e 100644 --- a/package.json +++ b/package.json @@ -1,14 +1,31 @@ { - "name": "@erc6900/reference-implementation", - "version": "0.8.0-rc.5", + "name": "erc6900-reference-implementation", + "description": "Reference implementation for [ERC-6900](https://eips.ethereum.org/EIPS/eip-6900).", + "version": "0.8.0-rc.6", "devDependencies": { "pnpm": "^8.7.5", "solhint": "^3.6.2" }, + "files": [ + "/src/**/*.sol" + ], "scripts": { "lint": "pnpm lint:src && pnpm lint:test && pnpm lint:script", "lint:src": "solhint --max-warnings 0 -c .solhint-src.json './src/**/*.sol'", "lint:test": "solhint --max-warnings 0 -c .solhint-test.json './test/**/*.sol'", "lint:script": "solhint --max-warnings 0 -c .solhint-script.json './script/**/*.sol'" - } + }, + "repository": { + "type": "git", + "url": "https://github.com/erc6900/reference-implementation.git" + }, + "keywords": [ + "erc6900" + ], + "author": "ERC6900 Community", + "license": "GPL-3.0", + "bugs": { + "url": "https://github.com/erc6900/reference-implementation/issues" + }, + "homepage": "https://github.com/erc6900/reference-implementation#readme" }