UNPKG

@nucypher/shared

Version:

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

67 lines 1.81 kB
{ "name": "@nucypher/shared", "version": "0.4.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.7.0", "@ethersproject/providers": "^5.7.2", "@nucypher/nucypher-contracts": "^0.23.0", "@nucypher/nucypher-core": "*", "axios": "^1.6.8", "deep-equal": "^2.2.3", "ethers": "*", "qs": "^6.12.1", "zod": "*" }, "devDependencies": { "@typechain/ethers-v5": "^11.1.2", "@types/deep-equal": "^1.0.3", "@types/qs": "^6.9.15", "@types/tmp": "^0.2.6", "cz-conventional-changelog": "^3.0.1", "standard-version": "^9.0.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" } }