cosmjs-util/packages/cosmwasm/package.json
2021-02-09 14:57:25 +00:00

39 lines
1.1 KiB
JSON

{
"name": "@cosmjs/cosmwasm",
"version": "0.24.0-alpha.22",
"description": "CosmWasm SDK",
"contributors": [
"Ethan Frey <ethanfrey@users.noreply.github.com>",
"Will Clark <willclarktech@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/tree/main/packages/cosmwasm"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"docs": "typedoc --options typedoc.js",
"format": "prettier --write --loglevel warn \"./src/**/*.ts\"",
"format-text": "prettier --write --prose-wrap always --print-width 80 \"./*.md\"",
"lint": "eslint --max-warnings 0 \"**/*.{js,ts}\"",
"lint-fix": "eslint --max-warnings 0 \"**/*.{js,ts}\" --fix",
"prebuild": "shx rm -rf ./build",
"build": "tsc",
"build-or-skip": "[ -n \"$SKIP_BUILD\" ] || yarn build"
},
"dependencies": {
"@cosmjs/cosmwasm-launchpad": "^0.24.0-alpha.22"
}
}