UNPKG

@stacks/profile

Version:

Library for Stacks profiles

62 lines (61 loc) 1.83 kB
{ "name": "@stacks/profile", "version": "7.3.1", "description": "Library for Stacks profiles", "license": "MIT", "author": "Hiro Systems PBC (https://hiro.so)", "homepage": "https://hiro.so/stacks-js", "scripts": { "build": "npm run clean && npm run build:cjs && npm run build:esm && npm run build:umd", "build:cjs": "tsc -b tsconfig.build.json", "build:esm": "tsc -p tsconfig.build.json --module ES6 --outDir ./dist/esm", "build:umd": "NODE_OPTIONS=--max-old-space-size=8192 webpack --config webpack.config.js", "clean": "rimraf dist && tsc -b tsconfig.build.json --clean", "pack": "npm pack", "prepublishOnly": "npm run test && NODE_ENV=production npm run build", "start": "tsc -b tsconfig.build.json --watch --verbose", "test": "jest", "test:watch": "jest --watch --coverage=false", "typecheck": "tsc --noEmit", "typecheck:watch": "npm run typecheck -- --watch" }, "dependencies": { "@stacks/common": "^7.3.1", "@stacks/network": "^7.3.1", "@stacks/transactions": "^7.3.1", "jsontokens": "^4.0.1", "schema-inspector": "^2.0.2", "zone-file": "^2.0.0-beta.3" }, "devDependencies": { "bitcoinjs-lib": "^5.2.0", "process": "^0.11.10", "rimraf": "^3.0.2" }, "sideEffects": false, "typings": "dist/index.d.ts", "main": "dist/index.js", "module": "dist/esm/index.js", "browser": { "crypto": false }, "umd:main": "dist/umd/index.js", "unpkg": "dist/umd/index.js", "files": [ "dist", "src" ], "keywords": [ "blockstack", "profiles", "stacks" ], "repository": { "type": "git", "url": "git+https://github.com/stx-labs/stacks.js.git" }, "bugs": { "url": "https://github.com/blockstack/blockstack.js/issues" }, "gitHead": "f7523b67a7be2e570c75414552c94aa155e01bcc" }