@nucypher/taco
Version:
### [`nucypher/taco-web`](../../README.md)
63 lines • 1.72 kB
JSON
{
"name": "@nucypher/taco",
"version": "0.6.0",
"keywords": [
"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": {
"@astronautlabs/jsonpath": "^1.1.2",
"@nucypher/nucypher-core": "^0.14.5",
"ethers": "^5.8.0",
"semver": "^7.7.1",
"zod": "^3.24.2",
"@nucypher/shared": "0.5.0",
"@nucypher/taco-auth": "0.3.0"
},
"devDependencies": {
"@types/semver": "^7.7.0",
"dotenv": "^16.4.7",
"glob": "^11.0.1",
"modified-zod2md": "0.1.5-modified.4",
"@nucypher/test-utils": "0.0.0"
},
"engines": {
"node": ">=18",
"pnpm": ">=8.0.0"
},
"scripts": {
"prebuild": "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",
"generate-zod-docs": "pnpm dlx tsx scripts/schema-docs-generation.ts",
"integration-test": "vitest run --config integration-test/vitest.config.ts",
"lint": "eslint --ext .ts src test",
"lint:fix": "pnpm lint --fix",
"package-check": "package-check",
"test": "vitest run",
"type-check": "tsc --noEmit",
"typedoc": "typedoc"
}
}