-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
-Removed npx, added tsx to cosmos package
- Loading branch information
1 parent
d2781a5
commit 40dab6d
Showing
3 changed files
with
243 additions
and
2,345 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 |
---|---|---|
|
@@ -3,20 +3,28 @@ | |
"version": "0.1.0", | ||
"description": "A Typescript library for building on Sei generated using the official Sei proto files on buf.build.", | ||
"sideEffects": false, | ||
"files": ["generated"], | ||
"files": [ | ||
"generated" | ||
], | ||
"scripts": { | ||
"prebuild": "rimraf generated && rimraf gen", | ||
"build": "yarn generate:all && yarn extract-libraries", | ||
"postbuild": "rimraf gen", | ||
"extract-libraries": "npx tsx scripts/index.ts", | ||
"extract-libraries": "tsx scripts/index.ts", | ||
"generate:all": "yarn generate-sei-cosmos && yarn generate-sei-chain && yarn generate-third-party", | ||
"generate-sei-cosmos": "buf generate buf.build/sei-protocol/cosmos-sdk", | ||
"generate-sei-chain": "buf generate buf.build/sei-protocol/sei-chain", | ||
"generate-third-party": "buf generate buf.build/sei-protocol/third-party", | ||
"lint": "echo 'No linting configured for this package'" | ||
}, | ||
"homepage": "https://github.com/sei-protocol/sei-js#readme", | ||
"keywords": ["sei", "typescript", "types", "enums", "interfaces"], | ||
"keywords": [ | ||
"sei", | ||
"typescript", | ||
"types", | ||
"enums", | ||
"interfaces" | ||
], | ||
"repository": "[email protected]:sei-protocol/sei-js.git", | ||
"license": "MIT", | ||
"private": false, | ||
|
@@ -29,7 +37,9 @@ | |
"@cosmjs/proto-signing": "^0.32.4", | ||
"@cosmjs/stargate": "^0.32.4" | ||
}, | ||
"devDependencies": {}, | ||
"devDependencies": { | ||
"tsx": "^4.19.1" | ||
}, | ||
"exports": { | ||
"./types/*": "./generated/types/*/index.ts", | ||
"./rest": "./generated/rest/index.ts", | ||
|
Oops, something went wrong.