This repository has been archived by the owner on Apr 26, 2023. It is now read-only.
forked from andyjagoe/key-did-provider-secp256k1
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.69 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "key-did-provider-secp256k1",
"version": "1.0.1",
"description": "secp256k1 key did provider",
"repository": {
"type": "git",
"url": "git+https://github.com/andyjagoe/key-did-provider-secp256k1.git"
},
"homepage": "https://github.com/andyjagoe/key-did-provider-secp256k1",
"bugs": {
"url": "https://github.com/andyjagoe/key-did-provider-secp256k1/issues"
},
"author": "Andy Jagoe",
"license": "(Apache-2.0 OR MIT)",
"type": "module",
"exports": {
".": "./dist/index.js"
},
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"sideEffects": false,
"files": [
"dist/*"
],
"engines": {
"node": ">=14.14"
},
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest",
"build": "./node_modules/.bin/tsc --project tsconfig.build.json",
"prepare": "npm run build",
"prepublishOnly": "npm run build",
"prebuild": "npm run clean",
"lint": "./node_modules/.bin/eslint ./src --ext .js,.ts",
"clean": "rm -rf ./dist",
"size": "./node_modules/.bin/size-limit",
"analyze": "./node_modules/.bin/size-limit --why"
},
"module": "./dist/key-did-provider-secp256k1.esm.js",
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.25",
"babel-jest": "^27.5.1",
"eslint": "^8.13.0",
"jest": "^27.5.1",
"typescript": "^4.6.3"
},
"dependencies": {
"@types/elliptic": "^6.4.14",
"did-jwt": "^6.0.0",
"dids": "^3.0.0",
"elliptic": "^6.5.4",
"fast-json-stable-stringify": "^2.1.0",
"rpc-utils": "^0.6.2",
"uint8arrays": "^3.0.0"
}
}