did-key-creator
Version:
This is a library for converting public keys to the did:key format
58 lines (57 loc) • 1.53 kB
JSON
{
"name": "did-key-creator",
"version" : "1.2.0",
"desciption" : "This is a library for converting public keys to the did:key format",
"author": "Brent Shambaugh <brent.shambaugh@gmail.com>",
"license": "(Apache-2.0 OR MIT)",
"keywords": [
"nist",
"weierstrauss",
"did:key"
],
"source": "src/index.ts",
"types": "./lib/index.d.ts",
"main": "./lib/index.js",
"files": [
"lib"
],
"type":"module",
"engines": {
"node": ">=14.06"
},
"sideEffects": false,
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest",
"build": "tsc -p tsconfig.build.json",
"start": "tsdx watch",
"prepublishOnly": "npm run build",
"prebuild": "npm run clean",
"lint": "./node_modules/.bin/eslint ./src --ext .js,.jsx,.ts,.tsx",
"clean": "rm -rf ./lib"
},
"repository": {
"type": "git",
"url": "https://github.com/bshambaugh/did-key-creator.git"
},
"homepage": "https://github.com/bshambaugh/did-key-creator",
"bugs": {
"url": "https://github.com/bshambaugh/did-key-creator/issues"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.2.0",
"eslint": "^7.21.0",
"eslint-config-3box": "^0.2.0",
"jest": "^29.2.2",
"prettier": "^2.2.1",
"tsdx": "^0.14.1",
"tslib": "^2.1.0",
"typescript": "^4.2.3"
},
"dependencies": {
"multiformats": "^9.6.5",
"multicodec": "^3.0.1",
"uint8arrays": "^2.1.4"
}
}