forked from hellobloom/ssi-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.45 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
72
73
74
75
76
77
78
79
80
{
"name": "@bloomprotocol/elem-did-legacy-non-anchored",
"description": "Library for creating and resolving non-anchored legacy Element DIDs",
"version": "0.1.1",
"author": "Bloom Team <[email protected]>",
"license": "Apache-2.0",
"repository": "https://github.com/hellobloom/ssi-sdk/tree/main/packages/elem-did-legacy-non-anchored",
"main": "dist/index.js",
"module": "dist/elem-did-legacy-non-anchored.esm.js",
"typings": "dist/index.d.ts",
"sideEffects": false,
"files": [
"dist",
"src"
],
"engines": {
"node": ">=14"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "eslint src --format table --ext .ts,.tsx,.js,.jsx",
"lint:fix": "yarn lint -- --fix",
"prepare": "yarn build",
"prepublishOnly": "yarn size && yarn lint && yarn test",
"size": "size-limit",
"analyze": "size-limit --why"
},
"dependencies": {
"@types/create-hash": "^1.2.2",
"@types/hdkey": "^2.0.0",
"@types/secp256k1": "^4.0.2",
"base64url": "^3.0.1",
"bip39": "^3.0.4",
"create-hash": "^1.2.0",
"did-resolver": "^3.1.0",
"hdkey": "^2.0.1",
"multihashes": "^4.0.2",
"secp256k1": "^4.0.2"
},
"devDependencies": {
"@bloomprotocol/vc": "^0.1.2",
"@bloomprotocol/ecdsa-secp256k1-signature-2019": "^0.1.1",
"@bloomprotocol/ecdsa-secp256k1-verification-key-2019": "^0.1.1",
"@bloomprotocol/eslint-config": "2.0.0-beta.0",
"@bloomprotocol/prettier-config": "2.0.0-beta.0",
"@babel/plugin-transform-modules-commonjs": "^7.14.0",
"@size-limit/preset-big-lib": "^4.10.2",
"size-limit": "^4.10.2",
"tsdx": "^0.14.1",
"tslib": "^2.2.0"
},
"resolutions": {
"**/@typescript-eslint/eslint-plugin": "^4.23.0",
"**/@typescript-eslint/parser": "^4.23.0",
"**/eslint": "^7.26.0",
"**/eslint-config-airbnb-typescript": "^12.3.1",
"**/eslint-config-prettier": "^7.2.0",
"**/eslint-plugin-import": "^2.23.0",
"**/eslint-plugin-jsx-a11y": "^6.4.1",
"**/eslint-plugin-prettier": "^3.4.0",
"**/eslint-plugin-react": "^7.23.2",
"**/eslint-plugin-react-hooks": "^4.2.0",
"**/jest": "^26.6.3",
"**/ts-jest": "^26.4.4",
"**/prettier": "^2.3.0",
"**/typescript": "^4.3.2"
},
"size-limit": [
{
"path": "dist/elem-did-legacy-non-anchored.cjs.production.min.js",
"limit": "232 KB"
},
{
"path": "dist/elem-did-legacy-non-anchored.esm.js",
"limit": "232 KB"
}
]
}