UNPKG

@tonomy/antelope-did

Version:

Create, resolve, update and deactivate Decentralized Identifier (DID) documents based on Antelope blockchains

75 lines (74 loc) 1.64 kB
{ "name": "@tonomy/antelope-did", "author": "Jack Tanner <jack@gimly.io>", "version": "0.1.5", "license": "Apache-2.0", "description": "Create, resolve, update and deactivate Decentralized Identifier (DID) documents based on Antelope blockchains", "keywords": [ "antelope", "did", "ssi" ], "publishConfig": { "access": "public" }, "repository": { "type": "git", "url": "git@github.com/Tonomy-Foundation/antelope-did.git" }, "main": "dist/index.js", "typings": "dist/index.d.ts", "files": [ "dist", "src" ], "engines": { "node": ">=10" }, "scripts": { "start": "tsdx watch", "build": "tsdx build", "test": "tsdx test", "lint": "tsdx lint", "prepare": "tsdx build", "size": "size-limit", "analyze": "size-limit --why" }, "husky": { "hooks": { "pre-commit": "tsdx lint" } }, "prettier": { "printWidth": 80, "semi": true, "singleQuote": true, "trailingComma": "es5" }, "module": "dist/antelope-did.esm.js", "size-limit": [ { "path": "dist/antelope-did.cjs.production.min.js", "limit": "10 KB" }, { "path": "dist/antelope-did.esm.js", "limit": "10 KB" } ], "devDependencies": { "@size-limit/preset-small-lib": "^4.10.2", "@types/node-fetch": "^2.5.10", "husky": "^6.0.0", "size-limit": "^4.10.2", "tsdx": "^0.14.1", "tslib": "^2.2.0", "typescript": "^4.2.4" }, "dependencies": { "@tonomy/antelope-did-resolver": "^0.1.9", "@tonomy/did-resolver": "^4.0.4", "eosjs": "^22.0.0", "node-fetch": "^2.6.1" } }