UNPKG

@nucypher/shared

Version:

## [`nucypher/taco-web`](../../README.md)

67 lines 1.83 kB
{ "name": "@nucypher/shared", "version": "0.5.0", "keywords": [ "pre", "taco", "threshold", "access control" ], "repository": { "type": "git", "url": "https://github.com/nucypher/taco-web" }, "license": "GPL-3.0-only", "author": "NuCypher <dev@nucypher.com>", "exports": { ".": { "import": "./dist/es/index.js", "require": "./dist/cjs/index.js" } }, "main": "./dist/cjs/index.js", "module": "./dist/es/index.js", "types": "./dist/cjs/index.d.ts", "files": [ "dist" ], "dependencies": { "@ethersproject/abi": "^5.8.0", "@ethersproject/providers": "^5.8.0", "@nucypher/nucypher-contracts": "^0.25.0", "@nucypher/nucypher-core": "^0.14.5", "axios": "^1.8.4", "deep-equal": "^2.2.3", "ethers": "^5.8.0", "qs": "^6.14.0", "zod": "^3.24.2" }, "devDependencies": { "@typechain/ethers-v5": "^11.1.2", "@types/deep-equal": "^1.0.4", "@types/qs": "^6.9.18", "@types/tmp": "^0.2.6", "cz-conventional-changelog": "^3.3.0", "standard-version": "^9.5.0", "typechain": "^8.3.2", "@nucypher/test-utils": "0.0.0" }, "engines": { "node": ">=18", "pnpm": ">=8.0.0" }, "scripts": { "prebuild": "pnpm typechain && pnpm clean", "build": "pnpm build:module && pnpm build:cjs", "build:cjs": "tsc --build ./tsconfig.cjs.json --verbose", "build:module": "tsc --build ./tsconfig.es.json --verbose", "clean": "rm -rf dist", "exports:lint": "ts-unused-exports tsconfig.json --ignoreFiles src/index.ts", "lint": "eslint --ext .ts src", "lint:fix": "pnpm lint --fix", "package-check": "package-check", "test": "vitest run", "typechain": "ts-node scripts/typechain.ts && prettier -w src/contracts/ethers-typechain", "typedoc": "typedoc" } }