diff --git a/LICENSE.md b/LICENSE.md index 8e103500..df1a56e4 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,4 +1,4 @@ -Copyright 2025, Nick Mudge and Perfect Abstractions LLC +Copyright 2025, Perfect Abstractions LLC & Compose Contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: diff --git a/cli/LICENSE.md b/cli/LICENSE.md new file mode 100644 index 00000000..df1a56e4 --- /dev/null +++ b/cli/LICENSE.md @@ -0,0 +1,8 @@ +Copyright 2025, Perfect Abstractions LLC & Compose Contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + diff --git a/cli/package.json b/cli/package.json index ae8c1f3c..32b94be9 100644 --- a/cli/package.json +++ b/cli/package.json @@ -1,6 +1,6 @@ { "name": "@perfect-abstractions/compose-cli", - "version": "0.1.0", + "version": "0.0.1", "description": "CLI to scaffold Compose facet-based diamond projects", "main": "index.js", "bin": { @@ -18,19 +18,6 @@ "prepublishOnly": "npm run check && npm run pack:check", "prepare:lib": "git submodule update --init --recursive" }, - "keywords": [ - "solidity", - "ethereum", - "smart-contracts", - "diamonds", - "ERC-2535", - "ERC-8153", - "facets", - "compose", - "cli" - ], - "author": "Perfect-Abstractions/Compose", - "license": "MIT", "engines": { "node": ">=20" }, @@ -38,9 +25,8 @@ "index.js", "src/", "!src/templates/**/lib/", - "docs/", "README.md", - "LICENSE" + "LICENSE.md" ], "dependencies": { "fs-extra": "^11.3.3", @@ -66,5 +52,26 @@ "mocha": "^11.7.5", "typescript": "~5.8.0", "viem": "^2.47.0" + }, + "keywords": [ + "solidity", + "ethereum", + "smart-contracts", + "diamonds", + "ERC-2535", + "ERC-8153", + "facets", + "compose", + "cli" + ], + "author": "Perfect Abstractions & Compose Contributors", + "license": "MIT", + "repository": { + "type": "git", + "url": "https://github.com/Perfect-Abstractions/Compose.git" + }, + "homepage": "https://compose.diamonds", + "bugs": { + "url": "https://github.com/Perfect-Abstractions/Compose/issues" } -} +} \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 00000000..b6a76147 --- /dev/null +++ b/package.json @@ -0,0 +1,33 @@ +{ + "name": "@perfect-abstractions/compose", + "description": "Composable smart contract library for ERC-2535 Diamonds", + "version": "0.0.1", + "license": "MIT", + "files": [ + "src/**/*.sol", + "README.md", + "LICENSE.md" + ], + "scripts": { + "pack:check": "npm pack --dry-run" + }, + "repository": { + "type": "git", + "url": "https://github.com/Perfect-Abstractions/Compose.git" + }, + "keywords": [ + "solidity", + "ethereum", + "smart-contracts", + "diamonds", + "ERC-2535", + "ERC-8153", + "facets", + "compose" + ], + "author": "Perfect Abstractions & Compose Contributors", + "homepage": "https://compose.diamonds", + "bugs": { + "url": "https://github.com/Perfect-Abstractions/Compose/issues" + } +} \ No newline at end of file