anon-identity
Version:
Decentralized identity framework with DIDs, Verifiable Credentials, and privacy-preserving selective disclosure
106 lines (105 loc) • 3.05 kB
JSON
{
"name": "anon-identity",
"version": "1.0.14",
"description": "Decentralized identity framework with DIDs, Verifiable Credentials, and privacy-preserving selective disclosure",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js",
"default": "./dist/index.js"
},
"./browser": {
"types": "./dist/browser.d.ts",
"import": "./dist/browser.js",
"require": "./dist/browser.js",
"default": "./dist/browser.js"
},
"./node": {
"types": "./dist/node.d.ts",
"import": "./dist/node.js",
"require": "./dist/node.js",
"default": "./dist/node.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "jest",
"test:custom": "tsx src/test-runner.ts",
"test:jest": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"typecheck": "tsc --noEmit",
"lint": "echo 'Linting not configured - please add ESLint'",
"quality-check": "npm run typecheck && npm run build && echo '✅ Core quality checks passed: TypeScript compilation and build successful'",
"example": "tsx examples/example.ts",
"example:zkp": "tsx examples/zkp-example.ts",
"example:revocation": "tsx examples/revocation-example.ts",
"example:blockchain": "tsx examples/blockchain-storage-example.ts",
"example:hybrid": "tsx examples/hybrid-storage-example.ts",
"example:ipfs": "tsx examples/ipfs-test.ts",
"start": "node dist/index.js",
"prepublishOnly": "npm run quality-check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dizzident/anon-identity.git"
},
"keywords": [
"did",
"verifiable-credentials",
"decentralized-identity",
"self-sovereign-identity",
"zero-knowledge-proof",
"selective-disclosure",
"privacy",
"web3",
"identity"
],
"author": "Dizzident",
"license": "MIT",
"bugs": {
"url": "https://github.com/Dizzident/anon-identity/issues"
},
"homepage": "https://github.com/Dizzident/anon-identity#readme",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/jsonld": "^1.5.13",
"@types/node": "^22.15.23",
"@types/ws": "^8.18.1",
"hardhat": "^2.24.1",
"jest": "^29.7.0",
"ts-jest": "^29.3.4",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
},
"dependencies": {
"@mattrglobal/bbs-signatures": "^1.4.0",
"@noble/ed25519": "^2.2.3",
"@noble/hashes": "^1.8.0",
"@scure/base": "^1.2.5",
"@types/jsonwebtoken": "^9.0.9",
"ethers": "^6.14.3",
"jose": "^6.0.11",
"jsonld": "^8.3.2",
"jsonwebtoken": "^9.0.2",
"kubo-rpc-client": "^5.1.0",
"lru-cache": "^10.4.3",
"uuid": "^11.1.0",
"ws": "^8.18.0"
},
"overrides": {
"cookie": "^1.0.2"
}
}