2020-01-22 09:41:48 +01:00
|
|
|
{
|
2020-06-09 15:01:13 +01:00
|
|
|
"name": "cosmjs-monorepo-root",
|
2020-01-22 09:54:23 +01:00
|
|
|
"description": "Transaction codec and client to communicate with any wasmd blockchain",
|
2020-01-29 12:00:24 +01:00
|
|
|
"private": true,
|
2020-01-22 09:54:23 +01:00
|
|
|
"author": "Ethan Frey <ethanfrey@users.noreply.github.com>",
|
2020-01-22 09:41:48 +01:00
|
|
|
"license": "Apache-2.0",
|
|
|
|
"main": "build/index.js",
|
2021-02-09 12:41:52 +00:00
|
|
|
"types": "build/index.d.ts",
|
2020-01-22 09:41:48 +01:00
|
|
|
"files": [
|
|
|
|
"build/",
|
|
|
|
"*.md",
|
|
|
|
"!*.spec.*",
|
|
|
|
"!**/testdata/"
|
|
|
|
],
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2021-01-19 23:29:59 +01:00
|
|
|
"url": "https://github.com/cosmos/cosmjs"
|
2020-01-22 09:41:48 +01:00
|
|
|
},
|
|
|
|
"publishConfig": {
|
2021-08-04 16:45:19 +02:00
|
|
|
"access": "public",
|
|
|
|
"registry": "https://registry.npmjs.org"
|
2020-01-22 09:41:48 +01:00
|
|
|
},
|
2020-01-29 12:00:24 +01:00
|
|
|
"workspaces": [
|
|
|
|
"packages/*"
|
|
|
|
],
|
2020-01-22 09:41:48 +01:00
|
|
|
"scripts": {
|
2021-04-28 19:01:26 +02:00
|
|
|
"format": "yarn workspaces foreach --topological-dev --parallel --verbose run format",
|
2021-05-04 16:42:17 +02:00
|
|
|
"format-text": "prettier --write \"./*.md\" \"./docs/*.md\" && yarn workspaces foreach --topological-dev --parallel --verbose run format-text",
|
2020-12-08 09:02:55 +01:00
|
|
|
"format-shell": "shfmt -w scripts packages",
|
2021-04-28 19:01:26 +02:00
|
|
|
"lint": "yarn workspaces foreach --topological-dev --parallel --verbose run lint",
|
|
|
|
"lint-fix": "yarn workspaces foreach --topological-dev --parallel --verbose run lint-fix",
|
|
|
|
"test": "yarn workspaces foreach --topological-dev --parallel --verbose run test",
|
|
|
|
"test-firefox": "yarn workspaces foreach --topological-dev --parallel --verbose run test-firefox",
|
|
|
|
"test-chrome": "yarn workspaces foreach --topological-dev --parallel --verbose run test-chrome",
|
|
|
|
"coverage": "yarn workspaces foreach --topological-dev --parallel --verbose run coverage",
|
|
|
|
"build": "yarn workspaces foreach --topological-dev --parallel --verbose run build",
|
|
|
|
"docs": "yarn workspaces foreach --topological-dev --parallel --verbose run docs",
|
2021-08-04 16:45:19 +02:00
|
|
|
"pack-web": "yarn workspaces foreach --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"
|
2020-01-22 09:41:48 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-09-05 17:01:00 +02:00
|
|
|
"@cosmjs/amino": "workspace:^",
|
|
|
|
"@cosmjs/cosmwasm-stargate": "workspace:^",
|
|
|
|
"@cosmjs/crypto": "workspace:^",
|
|
|
|
"@cosmjs/encoding": "workspace:^",
|
|
|
|
"@cosmjs/proto-signing": "workspace:^",
|
|
|
|
"@cosmjs/stargate": "workspace:^",
|
2021-06-09 15:32:05 +02:00
|
|
|
"eslint": "^7.5",
|
2022-12-07 19:03:00 +01:00
|
|
|
"prettier": "^2.8.1",
|
2023-04-03 15:55:13 +02:00
|
|
|
"typescript": "~4.9"
|
2022-06-27 11:53:00 +02:00
|
|
|
},
|
2023-06-20 09:25:30 +02:00
|
|
|
"packageManager": "yarn@3.6.0"
|
2020-01-22 09:41:48 +01:00
|
|
|
}
|