UNPKG

@zkpersona/noir-ring-signatures

Version:

Implementation of Ring Signatures in Noir

65 lines 1.57 kB
{ "name": "@zkpersona/noir-ring-signatures", "version": "0.1.0", "description": "Implementation of Ring Signatures in Noir", "keywords": [ "noir", "noir-lang", "zero-knowledge-proofs", "aztec", "cryptography", "sag", "grumpkin" ], "license": "MIT", "author": { "name": "Vedant Chainani", "email": "vedant@zkpersona.xyz", "url": "https://zkpersona.xyz" }, "exports": { ".": { "types": "./dist/index.d.mts", "import": "./dist/index.mjs" }, "./sag": { "types": "./dist/sag/index.d.mts", "import": "./dist/sag/index.mjs" } }, "module": "./dist/index.mjs", "types": "./dist/index.d.mts", "files": [ "dist/**", "lib/**" ], "devDependencies": { "@biomejs/biome": "1.9.4", "@changesets/cli": "^2.29.2", "@commitlint/cli": "^19.8.0", "@commitlint/config-conventional": "^19.8.0", "@types/node": "^22.15.3", "dotenv": "^16.5.0", "klarity": "^0.0.3", "lefthook": "^1.11.12", "tsup": "^8.4.0", "typescript": "^5.8.3", "vitest": "^3.1.2" }, "dependencies": { "@aztec/aztec.js": "^0.86.0", "@aztec/foundation": "^0.86.0", "@zkpersona/noir-helpers": "^0.2.1" }, "scripts": { "build": "tsup", "dev": "vitest", "test": "vitest run", "format": "pnpm biome format", "format:write": "pnpm biome format --write", "release": "pnpm run build && changeset publish", "version-packages": "changeset version", "changeset": "changeset", "commitlint": "commitlint --edit" } }