@iden3/js-iden3-auth
Version:
iden3-auth implementation in JavaScript
76 lines (75 loc) • 2.52 kB
JSON
{
"name": "@iden3/js-iden3-auth",
"version": "1.9.0",
"description": "iden3-auth implementation in JavaScript",
"main": "dist/node/cjs/index.js",
"module": "dist/node/esm/index.js",
"source": "./src/index.ts",
"typings": "dist/types/index.d.ts",
"files": [
"dist",
"patches"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build": "npm run clean && npm run build:cjs && npm run build:esm && npm run build:types",
"build:esm": "tsc --outDir dist/node/esm && tsc-alias -p tsconfig.json --outDir dist/node/esm -f --resolve-full-extension .js",
"build:cjs": "tsc --module commonjs --outDir dist/node/cjs && tsc-alias -p tsconfig.json --outDir dist/node/cjs",
"build:types": "tsc -p tsconfig.json --declaration --emitDeclarationOnly --declarationDir dist/types && tsc-alias -p tsconfig.json --outDir dist/types",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint src test --ext .ts src/** test/*.ts",
"lint:check": "eslint --ext .ts src/** test/*.ts",
"clean": "rimraf ./dist"
},
"directories": {
"templates": "templates"
},
"keywords": [
"iden3"
],
"author": "iden3",
"license": "MIT or Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/iden3/js-iden3-auth"
},
"dependencies": {
"@0xpolygonid/js-sdk": "^1.28.0",
"@iden3/js-crypto": "1.2.0",
"@iden3/js-iden3-core": "1.6.0",
"@iden3/js-jsonld-merklization": "1.5.0",
"@iden3/js-jwz": "1.9.0",
"@iden3/js-merkletree": "1.4.0",
"did-resolver": "^4.1.0",
"ethers": "^5.4.0",
"tslib": "^2.6.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"@cspell/eslint-plugin": "^8.14.2",
"@iden3/eslint-config": "https://github.com/iden3/eslint-config",
"@typechain/ethers-v5": "^10.2.0",
"@types/jest": "^29.5.2",
"@types/jsonld": "^1.5.13",
"@types/node": "^20.10.1",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "29.1.0",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "29.1.1",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.8",
"tsconfig-paths": "^3.14.2",
"typechain": "^8.1.1",
"typescript": "^4.8.4"
}
}