mirror of
https://github.com/cosmos/cosmjs.git
synced 2025-03-10 13:47:12 +00:00
55 lines
2.3 KiB
JSON
55 lines
2.3 KiB
JSON
{
|
|
"name": "cosmjs-monorepo-root",
|
|
"description": "Transaction codec and client to communicate with any wasmd blockchain",
|
|
"private": true,
|
|
"author": "Ethan Frey <ethanfrey@users.noreply.github.com>",
|
|
"license": "Apache-2.0",
|
|
"main": "build/index.js",
|
|
"types": "build/index.d.ts",
|
|
"files": [
|
|
"build/",
|
|
"*.md",
|
|
"!*.spec.*",
|
|
"!**/testdata/"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/cosmos/cosmjs"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"registry": "https://registry.npmjs.org"
|
|
},
|
|
"workspaces": [
|
|
"packages/*"
|
|
],
|
|
"scripts": {
|
|
"format": "yarn workspaces foreach --all --topological-dev --parallel --verbose run format",
|
|
"format-text": "prettier --write \"./*.md\" \"./docs/*.md\" && yarn workspaces foreach --all --topological-dev --parallel --verbose run format-text",
|
|
"format-shell": "shfmt -w scripts packages",
|
|
"lint": "yarn workspaces foreach --all --topological-dev --parallel --verbose run lint",
|
|
"lint-fix": "yarn workspaces foreach --all --topological-dev --parallel --verbose run lint-fix",
|
|
"test": "yarn workspaces foreach --all --topological-dev --parallel --verbose run test",
|
|
"test-firefox": "yarn workspaces foreach --all --topological-dev --parallel --verbose run test-firefox",
|
|
"test-chrome": "yarn workspaces foreach --all --topological-dev --parallel --verbose run test-chrome",
|
|
"coverage": "yarn workspaces foreach --all --topological-dev --parallel --verbose run coverage",
|
|
"build": "yarn workspaces foreach --all --topological-dev --parallel --verbose run build",
|
|
"docs": "yarn workspaces foreach --all --topological-dev --parallel --verbose run docs",
|
|
"pack-web": "yarn workspaces foreach --all --topological-dev --parallel --verbose run pack-web",
|
|
"publish-next": "yarn workspaces foreach --no-private exec yarn npm publish --tag next",
|
|
"publish-latest": "yarn workspaces foreach --no-private exec yarn npm publish"
|
|
},
|
|
"devDependencies": {
|
|
"@cosmjs/amino": "workspace:^",
|
|
"@cosmjs/cosmwasm-stargate": "workspace:^",
|
|
"@cosmjs/crypto": "workspace:^",
|
|
"@cosmjs/encoding": "workspace:^",
|
|
"@cosmjs/proto-signing": "workspace:^",
|
|
"@cosmjs/stargate": "workspace:^",
|
|
"eslint": "^7.5",
|
|
"prettier": "^2.8.8",
|
|
"typescript": "~4.9"
|
|
},
|
|
"packageManager": "yarn@4.6.0"
|
|
}
|