mirror of
https://github.com/alexgo-io/stacks.js.git
synced 2026-04-29 09:45:50 +08:00
70 lines
2.1 KiB
JSON
70 lines
2.1 KiB
JSON
{
|
|
"name": "@stacks/auth",
|
|
"version": "4.1.0",
|
|
"description": "Authentication for Stacks apps.",
|
|
"license": "MIT",
|
|
"author": "Hiro Systems PBC (https://hiro.so)",
|
|
"homepage": "https://www.hiro.so/stacks-js",
|
|
"scripts": {
|
|
"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:polyfill": "NODE_OPTIONS=--max-old-space-size=8192 rollup -c ../../configs/rollup.config.js && rimraf dist/polyfill/dist",
|
|
"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": "^4.1.0",
|
|
"@stacks/encryption": "^4.1.0",
|
|
"@stacks/network": "^4.1.0",
|
|
"@stacks/profile": "^4.1.0",
|
|
"cross-fetch": "^3.1.5",
|
|
"jsontokens": "^3.0.0",
|
|
"query-string": "^6.13.1"
|
|
},
|
|
"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"
|
|
},
|
|
"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",
|
|
"files": [
|
|
"dist",
|
|
"src"
|
|
],
|
|
"keywords": [
|
|
"Auth",
|
|
"Authentication",
|
|
"Blockchain",
|
|
"Blockstack",
|
|
"Dapp",
|
|
"Stacks"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/hirosystems/stacks.js.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/blockstack/blockstack.js/issues"
|
|
}
|
|
}
|