|
| 1 | +{ |
| 2 | + "name": "@stacks/sbtc", |
| 3 | + "version": "6.7.0", |
| 4 | + "description": "Library for sBTC.", |
| 5 | + "license": "MIT", |
| 6 | + "author": "Hiro Systems PBC (https://hiro.so)", |
| 7 | + "homepage": "https://hiro.so/stacks-js", |
| 8 | + "scripts": { |
| 9 | + "build": "npm run clean && npm run build:cjs && npm run build:esm && npm run build:umd", |
| 10 | + "build:cjs": "tsc -b tsconfig.build.json", |
| 11 | + "build:esm": "tsc -p tsconfig.build.json --module ES6 --outDir ./dist/esm", |
| 12 | + "build:umd": "NODE_OPTIONS=--max-old-space-size=8192 webpack --config webpack.config.js", |
| 13 | + "clean": "rimraf dist && tsc -b tsconfig.build.json --clean", |
| 14 | + "pack": "npm pack", |
| 15 | + "prepublishOnly": "npm run test && NODE_ENV=production npm run build", |
| 16 | + "start": "tsc -b tsconfig.build.json --watch --verbose", |
| 17 | + "test": "jest", |
| 18 | + "test:watch": "jest --watch --coverage=false", |
| 19 | + "typecheck": "tsc --noEmit", |
| 20 | + "typecheck:watch": "npm run typecheck -- --watch" |
| 21 | + }, |
| 22 | + "dependencies": { |
| 23 | + "@stacks/encryption": "^6.7.0", |
| 24 | + "@stacks/transactions": "^6.7.0" |
| 25 | + }, |
| 26 | + "devDependencies": { |
| 27 | + "jest-fetch-mock": "^3.0.3", |
| 28 | + "rimraf": "^3.0.2" |
| 29 | + }, |
| 30 | + "sideEffects": false, |
| 31 | + "typings": "dist/index.d.ts", |
| 32 | + "main": "dist/index.js", |
| 33 | + "module": "dist/esm/index.js", |
| 34 | + "umd:main": "dist/umd/index.js", |
| 35 | + "unpkg": "dist/umd/index.js", |
| 36 | + "files": [ |
| 37 | + "dist", |
| 38 | + "src" |
| 39 | + ], |
| 40 | + "keywords": [ |
| 41 | + "sBTC", |
| 42 | + "Stacks" |
| 43 | + ], |
| 44 | + "repository": { |
| 45 | + "type": "git", |
| 46 | + "url": "git+https://github.com/hirosystems/stacks.js.git" |
| 47 | + }, |
| 48 | + "bugs": { |
| 49 | + "url": "https://github.com/hirosystems/stacks.js/issues" |
| 50 | + } |
| 51 | +} |
0 commit comments