cosmjs/package.json

55 lines
2.3 KiB
JSON
Raw Normal View History

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",
"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
},
"workspaces": [
"packages/*"
],
2020-01-22 09:41:48 +01:00
"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",
2020-12-08 09:02:55 +01:00
"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 --all --no-private exec yarn npm publish --tag next",
"publish-latest": "yarn workspaces foreach --all --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",
2023-06-22 15:11:42 +02:00
"prettier": "^2.8.8",
2023-04-03 15:55:13 +02:00
"typescript": "~4.9"
2022-06-27 11:53:00 +02:00
},
2025-01-14 18:21:09 +01:00
"packageManager": "yarn@4.6.0"
2020-01-22 09:41:48 +01:00
}