-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
metadata: Add package metadata for publishing (#1)
* metadata: Add package metadat for publishing * Update for anza names * Make web3.js v1 user stay on v1 * Add description to Cargo.toml * Make js packages public
- Loading branch information
Showing
4 changed files
with
51 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,31 @@ | ||
{ | ||
"name": "solana-rpc-get-stake-activation", | ||
"version": "1.0.0", | ||
"name": "@anza-xyz/solana-rpc-get-stake-activation", | ||
"version": "2.0.0", | ||
"description": "Client-side replica of Solana RPC's getStakeActivation", | ||
"sideEffects": false, | ||
"module": "./dist/src/index.mjs", | ||
"main": "./dist/src/index.js", | ||
"types": "./dist/types/index.d.ts", | ||
"type": "commonjs", | ||
"keywords": [], | ||
"author": "", | ||
"keywords": [ | ||
"blockchain", | ||
"solana", | ||
"rpc", | ||
"web3" | ||
], | ||
"author": "Anza Maintainers <[email protected]>", | ||
"license": "Apache-2.0", | ||
"packageManager": "[email protected]", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/anza-xyz/solana-rpc-client-extensions" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/anza-xyz/solana-rpc-client-extensions/issues" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"exports": { | ||
".": { | ||
"types": "./dist/types/index.d.ts", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,12 @@ | ||
[package] | ||
name = "solana-rpc-get-stake-activation" | ||
version = "0.1.0" | ||
description = "Client-side implementation of Solana RPC's GetStakeActivation" | ||
documentation = "https://docs.rs/solana-rpc-get-stake-activation" | ||
authors = ["Anza Maintainers <[email protected]>"] | ||
repository = "https://github.com/anza-xyz/solana-rpc-client-extensions" | ||
homepage = "https://anza.xyz/" | ||
license = "Apache-2.0" | ||
edition = "2021" | ||
|
||
[dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,31 @@ | ||
{ | ||
"name": "solana-rpc-get-stake-activation", | ||
"name": "@anza-xyz/solana-rpc-get-stake-activation", | ||
"version": "1.0.0", | ||
"description": "Client-side replica of Solana RPC's getStakeActivation", | ||
"sideEffects": false, | ||
"module": "./dist/src/index.mjs", | ||
"main": "./dist/src/index.js", | ||
"types": "./dist/types/index.d.ts", | ||
"type": "commonjs", | ||
"keywords": [], | ||
"author": "", | ||
"keywords": [ | ||
"blockchain", | ||
"solana", | ||
"rpc", | ||
"web3" | ||
], | ||
"author": "Anza Maintainers <[email protected]>", | ||
"license": "Apache-2.0", | ||
"packageManager": "[email protected]", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/anza-xyz/solana-rpc-client-extensions" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/anza-xyz/solana-rpc-client-extensions/issues" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"exports": { | ||
".": { | ||
"types": "./dist/types/index.d.ts", | ||
|