@micro-stacks/client
Version:
Session client for Stacks apps using micro-stacks
76 lines • 2.18 kB
JSON
{
"name": "@micro-stacks/client",
"private": false,
"publishConfig": {
"access": "public"
},
"version": "1.2.1",
"description": "Session client for Stacks apps using micro-stacks",
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"import": "./dist/index.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"import": "./dist/index.mjs"
}
},
"sideEffects": false,
"engines": {
"node": ">=14"
},
"prettier": "@stacks/prettier-config",
"repository": {
"type": "git",
"url": "git+https://github.com/aulneau/micro-stacks.git"
},
"keywords": [
"stacks",
"web3",
"small-bundle"
],
"author": "Thomas Osmonson",
"contributors": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/fungible-systems/micro-stacks/issues"
},
"homepage": "https://github.com/fungible-systems/micro-stacks",
"devDependencies": {
"@stacks/stacks-blockchain-api-types": "4.1.2",
"@types/common-tags": "1.8.1",
"@types/jsdom": "20.0.0",
"react": ">=18.2.0",
"react-dom": ">=18.2.0",
"tsup": "6.2.3",
"type-fest": "^2.19.0",
"typescript": "4.8.2"
},
"dependencies": {
"fast-deep-equal": "3.1.3",
"tiny-invariant": ">=1.2.0",
"zustand": "4.1.1",
"micro-stacks": "1.2.1"
},
"scripts": {
"build": "tsup src/index.ts",
"typecheck": "tsc --noEmit --target esnext",
"dev:publish": "yalc publish --push",
"dev:build": "pnpm build && yalc publish --push",
"publish:beta": "pnpm publish --tag beta",
"lint": "pnpm lint:eslint && pnpm lint:prettier",
"lint:eslint": "eslint \"src/**/*.{ts,tsx}\"",
"lint:fix": "eslint \"src/**/*.{ts,tsx}\" --fix",
"lint:prettier": "prettier --check \"src/**/*.{ts,tsx}\" *.js",
"lint:prettier:fix": "prettier --write \"src/**/*.{ts,tsx}\"",
"ci:publish": "pnpm publish --no-git-checks --access public",
"ci:version": "pnpm changeset version && pnpm install --no-frozen-lockfile && git add ."
}
}