UNPKG

@archwayhq/arch3-core

Version:

Core library to interact with Archway Network

95 lines 2.61 kB
{ "name": "@archwayhq/arch3-core", "version": "0.7.5", "description": "Core library to interact with Archway Network", "homepage": "https://docs.archway.io", "repository": "github:archway-network/arch3.js", "keywords": [ "archway", "cosmos", "cosmjs", "cosmosjs", "cosmwasm", "tendermint", "atom", "wasm", "smart-contracts", "blockchain", "dapp", "dapps", "nft", "tooling", "web3" ], "author": "Archway Network (https://archway.io)", "license": "Apache-2.0", "bugs": { "url": "https://github.com/archway-network/arch3.js/issues" }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org" }, "files": [ "build", "./*.md", "./LICENSE" ], "main": "build/index.js", "types": "build/index.d.ts", "exports": { ".": "./build/index.js", "./*": "./build/*.js" }, "scripts": { "prepack": "yarn run build", "clean": "rimraf ./build", "build": "yarn clean && tsc --build", "test": "DOTENV_CONFIG_PATH=../../.env jest", "test:watch": "yarn test --watch", "lint": "eslint ./src --ext .js,.cjs,.ts --no-error-on-unmatched-pattern", "lint:fix": "yarn lint --fix", "lint:sarif": "yarn lint --format @microsoft/sarif --output-file $(basename $npm_package_name).eslint-results.sarif", "docs": "typedoc" }, "dependencies": { "@archwayhq/arch3-proto": "^0.7.5", "@cosmjs/amino": "^0.32.2", "@cosmjs/cosmwasm-stargate": "^0.32.2", "@cosmjs/encoding": "^0.32.2", "@cosmjs/math": "^0.32.2", "@cosmjs/proto-signing": "^0.32.2", "@cosmjs/stargate": "^0.32.2", "@cosmjs/tendermint-rpc": "^0.32.2", "@cosmjs/utils": "^0.32.2", "cosmjs-types": "^0.9.0", "lodash": "^4.17.21" }, "devDependencies": { "@microsoft/eslint-formatter-sarif": "^3.0.0", "@types/jest": "^29.5.7", "@types/node": "^20.8.10", "@types/prettier": "^3.0.0", "@typescript-eslint/eslint-plugin": "^6.9.1", "@typescript-eslint/parser": "^6.9.1", "dotenv": "^16.3.1", "eslint": "^8.52.0", "eslint-import-resolver-node": "^0.3.9", "eslint-import-resolver-typescript": "^3.6.1", "eslint-plugin-import": "^2.29.0", "eslint-plugin-jest": "^27.6.0", "eslint-plugin-jsdoc": "^46.8.2", "eslint-plugin-node": "^11.1.0", "jest": "^29.7.0", "prettier": "^3.0.3", "prettier-eslint": "^16.1.2", "rimraf": "^5.0.5", "ts-jest": "^29.1.1", "ts-node": "^10.9.1", "typedoc": "^0.25.3", "typescript": "^5.2.2" }, "engines": { "node": ">=16.0.0" } }