{ "name": "@stacks/network", "version": "3.0.0", "description": "Library for Stacks network operations", "keywords": [ "stacks", "blockstack", "network" ], "author": "yknl ", "homepage": "https://blockstack.org", "license": "GPL-3.0-or-later", "files": [ "dist", "src" ], "publishConfig": { "access": "public" }, "repository": { "type": "git", "url": "git+https://github.com/blockstack/blockstack.js.git" }, "scripts": { "start": "tsc -b tsconfig.build.json --watch --verbose", "build": "npm run clean && npm run build:cjs && npm run build:esm", "build:cjs": "tsc -b tsconfig.build.json", "build:esm": "tsc -p tsconfig.build.json --module ES6 --outDir ./dist/esm", "build:umd": "webpack --config webpack.config.js", "clean": "rimraf dist && tsc -b tsconfig.build.json --clean", "typecheck": "tsc --noEmit", "typecheck:watch": "npm run typecheck -- --watch", "prepublishOnly": "npm run test && npm run build && npm run build:umd", "test": "jest", "test:watch": "jest --watch --coverage=false" }, "bugs": { "url": "https://github.com/blockstack/blockstack.js/issues" }, "dependencies": { "@stacks/common": "^3.0.0" }, "devDependencies": { "@types/jest": "^26.0.22", "jest": "^26.6.3", "jest-fetch-mock": "^3.0.3", "jest-module-name-mapper": "^0.1.5", "rimraf": "^3.0.2", "ts-jest": "^26.5.5", "ts-loader": "^9.1.1", "typescript": "^4.2.4", "webpack": "^5.36.1", "webpack-cli": "^4.6.0" }, "sideEffects": false, "main": "dist/index.js", "module": "dist/esm/index.js", "typings": "dist/index.d.ts", "umd:main": "dist/index.umd.js", "unpkg": "dist/index.umd.js", "gitHead": "77b4d6d531b74996e4b7a0cbd1cf5b8358a690ce" }