@kubiklabs/wasmkit
Version:
Wasmkit is a development environment to compile, deploy, test, run cosmwasm contracts on different networks.
129 lines (128 loc) • 3.23 kB
JSON
{
"name": "@kubiklabs/wasmkit",
"version": "0.2.9",
"main": "dist/index.js",
"repository": "https://github.com/kubiklabs/wasmkit.git",
"description": "Wasmkit is a development environment to compile, deploy, test, run cosmwasm contracts on different networks.",
"authors": [
{
"name": "Coco sha",
"url": "https://github.com/coco-sha"
},
{
"name": "Udit Gulati",
"url": "https://github.com/udit-gulati"
},
{
"name": "Amit Yadav",
"url": "https://github.com/amityadav0"
}
],
"keywords": [
"cosmwasm",
"secret-network",
"juno-network",
"dev-tooling",
"blockchain",
"rust",
"testing-framework",
"smart-contracts",
"typescript"
],
"license": "MIT",
"scripts": {
"build": "tsc --build .",
"lint": "eslint --ext .ts src",
"lint:fix": "eslint --fix --ext .ts src",
"lint:unix": "eslint --format unix --ext .ts src",
"build:watch": "tsc -w -p .",
"test": "mocha",
"prepublish": "yarn build",
"publish": "yarn publish --access public"
},
"types": "dist/index.d.ts",
"bin": {
"wasmkit": "dist/internal/cli/cli.js"
},
"engines": {
"node": ">=14.11.0"
},
"devDependencies": {
"@types/express": "^4.17.12",
"@types/js-yaml": "^4.0.5",
"@types/node": "^15.14.9",
"@types/semver": "^7.3.6",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"eslint": "^7.28.0",
"nodemon": "^2.0.7",
"ts-node": "^10.0.0"
},
"dependencies": {
"@archwayhq/arch3.js": "^0.5.0",
"@babel/generator": "^7.18.2",
"@babel/traverse": "^7.18.5",
"@babel/types": "^7.18.7",
"@cosmjs/cosmwasm-stargate": "^0.32.1",
"@cosmjs/proto-signing": "^0.32.1",
"@cosmjs/stargate": "^0.32.1",
"@iov/crypto": "^2.5.0",
"@iov/encoding": "^2.5.0",
"@kubiklabs/wasmkit-ast-types": "^0.2.6",
"@types/babel__generator": "^7.6.4",
"@types/babel__traverse": "^7.17.1",
"@types/chai": "^4.2.19",
"@types/debug": "^4.1.5",
"@types/fs-extra": "^9.0.11",
"@types/glob": "^7.1.3",
"@types/mkdirp": "^1.0.2",
"@types/mocha": "^9.0.0",
"@types/node-fetch": "^2.5.10",
"@types/tmp": "^0.2.2",
"case": "^1.6.3",
"chai": "^4.3.4",
"chalk": "^4.1.2",
"debug": "^4.3.1",
"deepmerge": "^4.2.2",
"download-git-repo": "^3.0.2",
"enquirer": "^2.3.6",
"env-paths": "^2.2.1",
"find-up": "^5.0.0",
"fs-extra": "^10.0.0",
"glob": "^7.1.7",
"gunzip-file": "^0.1.1",
"mkdirp": "^1.0.4",
"mocha": "^9.1.3",
"node-fetch": "^2.6.7",
"parse-cosmwasm-schema": "^0.2.0",
"polar-json-to-ts": "^0.0.1",
"repl": "^0.1.3",
"secretjs": "^1.7.1-beta.3",
"semver": "^7.3.5",
"source-map-support": "^0.5.19",
"tmp": "^0.2.1",
"toml": "^3.0.0",
"typescript": "^4.3.2",
"vm": "^0.1.0",
"wasm-opt": "^1.2.1",
"yaml": "^1.10.2",
"zlib": "^1.0.5",
"zod": "^1.10.2"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"dist",
"test",
"coverage",
".nyc_output"
],
"reporter": [
"text",
"lcovonly"
],
"all": true
}
}