forked from symfoni/key-did-provider-secp256k1
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
71 lines (71 loc) · 2 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
61
62
63
64
65
66
67
68
69
70
71
{
"name": "key-did-provider-secp256k1-with-lit",
"version": "0.0.8",
"description": "secp256k1 key did provider",
"repository": {
"type": "git",
"url": "git+https://github.com/LIT-Protocol/key-did-provider-secp256k1.git"
},
"homepage": "https://github.com/LIT-Protocol/key-did-provider-secp256k1",
"bugs": {
"url": "https://github.com/LIT-Protocol/key-did-provider-secp256k1/issues"
},
"author": "Anson (Lit Protocol)",
"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/*",
".yalc"
],
"engines": {
"node": ">=14.14"
},
"scripts": {
"test": "mocha",
"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",
"pub": "yarn build && yalc publish --push",
"dev": "nodemon -i dist -x \"yarn pub\"",
"doc": "typedoc --entryPointStrategy expand ./src"
},
"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",
"chai": "^4.3.6",
"eslint": "^8.13.0",
"jest": "^27.5.1",
"mocha": "^10.0.0",
"typedoc": "^0.23.5",
"typescript": "^4.6.3"
},
"dependencies": {
"@types/elliptic": "^6.4.14",
"canonicalize": "^1.0.8",
"did-jwt": "^6.0.0",
"dids": "^3.0.0",
"elliptic": "^6.5.4",
"fast-json-stable-stringify": "^2.1.0",
"global": "^4.4.0",
"lit-js-sdk": "^1.2.22",
"rpc-utils": "^0.6.2",
"uint8arrays": "^3.0.0",
"watch": "^1.0.2"
}
}