mirror of
https://github.com/alexgo-io/stacks.js.git
synced 2026-04-29 17:56:09 +08:00
71 lines
2.2 KiB
JSON
Executable File
71 lines
2.2 KiB
JSON
Executable File
{
|
|
"name": "@stacks/bns",
|
|
"version": "4.0.0",
|
|
"description": "Library for working with the Stacks Blockchain Naming System BNS.",
|
|
"keywords": [
|
|
"Stacks",
|
|
"Blockchain",
|
|
"Naming",
|
|
"System",
|
|
"Blockstack",
|
|
"BNS"
|
|
],
|
|
"author": "yknl <yukanliao@gmail.com>",
|
|
"homepage": "https://blockstack.org",
|
|
"license": "GPL-3.0-or-later",
|
|
"files": [
|
|
"dist",
|
|
"src"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/blockstack/stacks.js.git"
|
|
},
|
|
"scripts": {
|
|
"start": "tsc -b tsconfig.build.json --watch --verbose",
|
|
"build": "npm run clean && npm run build:cjs && npm run build:esm && npm run build:umd && npm run build:polyfill",
|
|
"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",
|
|
"build:polyfill": "NODE_OPTIONS=--max-old-space-size=8192 rollup -c ../../configs/rollup.config.js && rimraf dist/polyfill/dist",
|
|
"clean": "rimraf dist && tsc -b tsconfig.build.json --clean",
|
|
"typecheck": "tsc --noEmit",
|
|
"typecheck:watch": "npm run typecheck -- --watch",
|
|
"pack": "npm pack",
|
|
"prepublishOnly": "npm run test && NODE_ENV=production npm run build",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch --coverage=false"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/blockstack/stacks.js/issues"
|
|
},
|
|
"dependencies": {
|
|
"@stacks/common": "^4.0.0",
|
|
"@stacks/network": "^4.0.0",
|
|
"@stacks/transactions": "^4.0.0",
|
|
"@types/bn.js": "^4.11.6",
|
|
"bn.js": "^5.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^26.0.22",
|
|
"jest": "^26.6.3",
|
|
"jest-fetch-mock": "^3.0.3",
|
|
"jest-module-name-mapper": "^0.1.5",
|
|
"process": "^0.11.10",
|
|
"rimraf": "^3.0.2",
|
|
"ts-jest": "^26.5.5",
|
|
"ts-loader": "^9.1.1",
|
|
"typescript": "^4.2.4",
|
|
"webpack": "^5.36.1",
|
|
"webpack-bundle-analyzer": "^4.5.0",
|
|
"webpack-cli": "^4.6.0"
|
|
},
|
|
"sideEffects": false,
|
|
"typings": "dist/index.d.ts",
|
|
"main": "dist/index.js",
|
|
"module": "dist/esm/index.js",
|
|
"browser": "dist/polyfill/index.js",
|
|
"umd:main": "dist/umd/index.js",
|
|
"unpkg": "dist/umd/index.js"
|
|
}
|