Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ on:

concurrency: ${{ github.workflow }}-${{ github.ref }}

permissions:
id-token: write
contents: write
pull-requests: write

jobs:
release:
name: Release
Expand All @@ -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
Expand All @@ -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 }}
5 changes: 5 additions & 0 deletions packages/create-sei/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
6 changes: 5 additions & 1 deletion packages/ledger/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
28 changes: 7 additions & 21 deletions packages/mcp-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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 <etheral.eth.dev@gmail.com>",
"keywords": ["mcp", "model-context-protocol", "evm", "blockchain", "sei", "web3", "smart-contracts", "ai", "agent"],
"author": "@codebycarson",
"license": "MIT",
Comment on lines +38 to 40
Copy link

Copilot AI Feb 4, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This PR’s description focuses on repository metadata and release workflow changes, but this hunk also changes the author field. If this isn’t intentional, it should be reverted; if it is intentional, please update the PR description to reflect the metadata change (and ensure it matches the desired npm package ownership/attribution).

Copilot uses AI. Check for mistakes.
"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"
}
Expand Down
6 changes: 5 additions & 1 deletion packages/precompiles/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
6 changes: 5 additions & 1 deletion packages/registry/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
5 changes: 5 additions & 0 deletions packages/sei-global-wallet/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down