diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b2a7f5be..4e0e0a1c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -7,6 +7,11 @@ on: concurrency: ${{ github.workflow }}-${{ github.ref }} +permissions: + id-token: write + contents: write + pull-requests: write + jobs: release: name: Release @@ -21,6 +26,7 @@ jobs: uses: actions/setup-node@v4 with: node-version-file: '.nvmrc' + registry-url: 'https://registry.npmjs.org' - name: Install pnpm uses: pnpm/action-setup@v4 @@ -42,5 +48,3 @@ jobs: publish: pnpm release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - NPM_TOKEN: ${{ secrets.NPM_TOKEN }} - NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }} diff --git a/packages/create-sei/package.json b/packages/create-sei/package.json index 22881a85..0a6ef816 100644 --- a/packages/create-sei/package.json +++ b/packages/create-sei/package.json @@ -1,6 +1,11 @@ { "name": "@sei-js/create-sei", "version": "1.0.0", + "repository": { + "type": "git", + "url": "https://github.com/sei-protocol/sei-js.git", + "directory": "packages/create-sei" + }, "module": "dist/main.js", "type": "module", "bin": "./dist/main.js", diff --git a/packages/ledger/package.json b/packages/ledger/package.json index c01e4907..985056d8 100644 --- a/packages/ledger/package.json +++ b/packages/ledger/package.json @@ -16,7 +16,11 @@ }, "homepage": "https://github.com/sei-protocol/sei-js#readme", "keywords": ["sei", "javascript", "typescript", "ledger"], - "repository": "git@github.com:sei-protocol/sei-js.git", + "repository": { + "type": "git", + "url": "https://github.com/sei-protocol/sei-js.git", + "directory": "packages/ledger" + }, "license": "MIT", "publishConfig": { "access": "public" diff --git a/packages/mcp-server/package.json b/packages/mcp-server/package.json index 5bbd09f7..47395a74 100644 --- a/packages/mcp-server/package.json +++ b/packages/mcp-server/package.json @@ -6,12 +6,7 @@ "bin": "./bin/mcp-server.js", "main": "./dist/esm/index.js", "module": "./dist/esm/index.js", - "files": [ - "dist/", - "bin/", - "README.md", - "LICENSE" - ], + "files": ["dist/", "bin/", "README.md", "LICENSE"], "scripts": { "build": "rm -rf dist && tsc", "start": "node dist/esm/index.js", @@ -40,30 +35,21 @@ "viem": "^2.30.5", "zod": "^3.24.2" }, - "keywords": [ - "mcp", - "model-context-protocol", - "evm", - "blockchain", - "sei", - "web3", - "smart-contracts", - "ai", - "agent" - ], - "author": "Etheral ", + "keywords": ["mcp", "model-context-protocol", "evm", "blockchain", "sei", "web3", "smart-contracts", "ai", "agent"], + "author": "@codebycarson", "license": "MIT", "engines": { "node": ">=18.0.0" }, "repository": { "type": "git", - "url": "https://github.com/sei-protocol/sei-mcp-server" + "url": "https://github.com/sei-protocol/sei-js.git", + "directory": "packages/mcp-server" }, "bugs": { - "url": "https://github.com/sei-protocol/sei-mcp-server/issues" + "url": "https://github.com/sei-protocol/sei-js/issues" }, - "homepage": "https://github.com/sei-protocol/sei-mcp-server#readme", + "homepage": "https://github.com/sei-protocol/sei-js/tree/main/packages/mcp-server#readme", "publishConfig": { "access": "public" } diff --git a/packages/precompiles/package.json b/packages/precompiles/package.json index f8fa7e52..3888cd24 100644 --- a/packages/precompiles/package.json +++ b/packages/precompiles/package.json @@ -15,7 +15,11 @@ }, "homepage": "https://github.com/sei-protocol/sei-js#readme", "keywords": ["sei", "javascript", "typescript", "node", "evm"], - "repository": "git@github.com:sei-protocol/sei-js.git", + "repository": { + "type": "git", + "url": "https://github.com/sei-protocol/sei-js.git", + "directory": "packages/precompiles" + }, "license": "MIT", "publishConfig": { "access": "public" diff --git a/packages/registry/package.json b/packages/registry/package.json index afe8a953..0a9e7b63 100644 --- a/packages/registry/package.json +++ b/packages/registry/package.json @@ -24,7 +24,11 @@ "typescript", "registry" ], - "repository": "git@github.com:sei-protocol/sei-js.git", + "repository": { + "type": "git", + "url": "https://github.com/sei-protocol/sei-js.git", + "directory": "packages/registry" + }, "license": "MIT", "publishConfig": { "access": "public" diff --git a/packages/sei-global-wallet/package.json b/packages/sei-global-wallet/package.json index 6e48e816..56ae92e1 100644 --- a/packages/sei-global-wallet/package.json +++ b/packages/sei-global-wallet/package.json @@ -2,6 +2,11 @@ "name": "@sei-js/sei-global-wallet", "description": "Sei Global Wallet is a library to support Dynamic Global Wallets", "version": "1.3.5", + "repository": { + "type": "git", + "url": "https://github.com/sei-protocol/sei-js.git", + "directory": "packages/sei-global-wallet" + }, "type": "module", "main": "dist/cjs/index.js", "module": "dist/esm/index.js",