mirror of
https://github.com/alexgo-io/stacks.js.git
synced 2026-01-12 22:52:34 +08:00
60 lines
1.7 KiB
JSON
60 lines
1.7 KiB
JSON
{
|
|
"name": "@stacks/common",
|
|
"version": "3.0.0",
|
|
"description": "Common Stacks utilities",
|
|
"author": "yknl <yukanliao@gmail.com>",
|
|
"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": {
|
|
"@types/node": "^14.14.43",
|
|
"buffer": "^6.0.3",
|
|
"cross-fetch": "^3.1.4"
|
|
},
|
|
"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"
|
|
}
|