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 650e17e7..27a1723f 100644 --- a/package.json +++ b/package.json @@ -1,15 +1,31 @@ { "name": "@erc6900/reference-implementation", - "version": "0.8.0", + "description": "Reference implementation for [ERC-6900](https://eips.ethereum.org/EIPS/eip-6900).", + "version": "0.8.1", "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'" }, - "license": "MIT" + "repository": { + "type": "git", + "url": "https://github.com/erc6900/reference-implementation.git" + }, + "keywords": [ + "erc6900" + ], + "author": "ERC-6900 Authors", + "license": "MIT", + "bugs": { + "url": "https://github.com/erc6900/reference-implementation/issues" + }, + "homepage": "https://github.com/erc6900/reference-implementation#readme" }