-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
30 changed files
with
1,411 additions
and
1,531 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
"build": "yarn workspaces foreach -Apt --exclude '{root-workspace}' run build", | ||
"build:docs": "typedoc --skipErrorChecking --theme default --out docs/api --tsconfig tsconfig.docs.json && touch docs/.nojekyll", | ||
"bundle": "yarn workspace @cord.network/sdk run bundle", | ||
"clean": "rimraf tests/dist && yarn workspaces foreach -p --exclude '{root-workspace}' run clean", | ||
"clean": "rimraf tests/dist && yarn workspaces foreach -Ap --exclude '{root-workspace}' run clean", | ||
"clean:docs": "rimraf docs/api", | ||
"func-test": "tsx --no-cache demo/src/func-test.ts", | ||
"set:version": "yarn workspaces foreach -pt exec npm version --no-git-tag-version", | ||
|
@@ -61,10 +61,20 @@ | |
"ts-jest-resolver": "^2.0.1", | ||
"tsx": "^3.4.3", | ||
"typedoc": "^0.25.3", | ||
"typescript": "^5.2.2" | ||
"typescript": "^5.1.6" | ||
}, | ||
"resolutions": { | ||
"typescript": "5.2.2" | ||
"typescript": "5.1.6", | ||
"@polkadot/api": "10.10.1", | ||
"@polkadot/keyring": "12.4.1", | ||
"@polkadot/types": "10.10.1", | ||
"@polkadot/types-codec": "10.10.1", | ||
"@polkadot/typegen": "10.10.1", | ||
"@polkadot/util": "12.4.1", | ||
"@polkadot/util-crypto": "12.4.1", | ||
"@polkadot/rpc-augment": "10.10.1", | ||
"@polkadot/rpc-core": "10.10.1", | ||
"@polkadot/rpc-provider": "10.10.1" | ||
}, | ||
"version": "0.8.0-7", | ||
"packageManager": "[email protected]" | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -27,32 +27,32 @@ | |
"build:types": "yarn generate:defs && yarn generate:meta && yarn build:fixes", | ||
"build:fixes": "node scripts/fixTypes.mjs", | ||
"build:ts": "tsc -p tsconfig.build.json", | ||
"generate:defs": "ts-node --esm -P tsconfig.build.json ../../node_modules/.bin/polkadot-types-from-defs --package @cord.network/augment-api --input ./src/interfaces --endpoint ./metadata/cord.json", | ||
"generate:meta": "ts-node --esm -P tsconfig.build.json ../../node_modules/.bin/polkadot-types-from-chain --package @cord.network/augment-api --endpoint ./metadata/cord.json --output ./src/interfaces", | ||
"generate:defs": "ts-node --experimental-specifier-resolution=node --esm -P tsconfig.build.json ../../node_modules/.bin/polkadot-types-from-defs --package @cord.network/augment-api --input ./src/interfaces --endpoint ./metadata/cord.json", | ||
"generate:meta": "ts-node --experimental-specifier-resolution=node --esm -P tsconfig.build.json ../../node_modules/.bin/polkadot-types-from-chain --package @cord.network/augment-api --endpoint ./metadata/cord.json --output ./src/interfaces --strict", | ||
"update-metadata": "node ./scripts/fetchMetadata.cjs -o './metadata/cord.json' -e 'wss://staging.cord.network/'" | ||
}, | ||
"repository": "github:dhiway/cord.js", | ||
"engines": { | ||
"node": ">=20.0" | ||
"node": ">=18.0" | ||
}, | ||
"author": "Dhiway <[email protected]>", | ||
"license": "Apache-2.0", | ||
"bugs": "https://github.com/dhiway/cord.js/issues", | ||
"homepage": "https://github.com/dhiway/cord.js#readme", | ||
"devDependencies": { | ||
"@polkadot/api": "^10.11.0", | ||
"@polkadot/typegen": "^10.11.0", | ||
"@polkadot/api": "^10.10.1", | ||
"@polkadot/typegen": "^10.10.1", | ||
"@types/node": "^20.8.4", | ||
"rimraf": "^3.0.2", | ||
"ts-node": "^10.9.1", | ||
"typescript": "^5.2.2", | ||
"typescript": "^5.1.6", | ||
"yargs": "^16.2.0" | ||
}, | ||
"dependencies": { | ||
"@cord.network/type-definitions": "workspace:*", | ||
"@polkadot/rpc-augment": "10.11.1", | ||
"@polkadot/rpc-core": "10.11.1", | ||
"@polkadot/rpc-provider": "10.11.1", | ||
"@polkadot/rpc-augment": "^10.10.1", | ||
"@polkadot/rpc-core": "^10.10.1", | ||
"@polkadot/rpc-provider": "^10.10.1", | ||
"glob": "^7.1.1" | ||
} | ||
} |
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
Oops, something went wrong.