forked from jpmorganchase/Kinexys-ssi-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.54 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
81
82
83
84
85
86
87
88
89
90
{
"name": "@jpmorganchase/onyx-ssi-sdk",
"version": "0.0.1",
"description": "SSI SDK for Onyx W3C Verifiable Credentials",
"license": "Apache-2.0",
"source": "src/index.ts",
"types": "./lib/cjs/types/index.d.ts",
"main": "./lib/cjs/index.js",
"files": [
"dist",
"lib",
"src",
"LICENSE"
],
"exports": {
".": {
"import": {
"types": "./lib/esm/types/index.d.ts",
"default": "./lib/esm/index.mjs"
},
"require": {
"types": "./lib/cjs/types/index.d.ts",
"default": "./lib/cjs/index.js"
}
}
},
"repository": {
"type": "git",
"url": "https://github.com/jpmorganchase/onyx-ssi-sdk"
},
"scripts": {
"clean": "rm -rf ./lib",
"build": "npm run clean && npm run build:esm && npm run build:cjs",
"build:esm": "tsc -p ./configs/tsconfig.esm.json && mv lib/esm/index.js lib/esm/index.mjs",
"build:cjs": "tsc -p ./configs/tsconfig.cjs.json",
"prepack": "npm run build",
"lint": "eslint .",
"test": "jest --no-cache --verbose --coverage"
},
"keywords": [],
"author": "",
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/jsonwebtoken": "^9.0.2",
"@types/mocha": "^10.0.1",
"@types/node": "^18.16.19",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.37.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.3"
},
"dependencies": {
"@ethersproject/abi": "^5.6.4",
"@ethersproject/providers": "^5.6.8",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.3",
"@nomicfoundation/hardhat-network-helpers": "^1.0.4",
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
"@nomiclabs/hardhat-ethers": "^2.1.1",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-solhint": "^2.0.1",
"@transmute/ed25519-key-pair": "^0.7.0-unstable.80",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.2",
"@types/chai": "^4.3.5",
"@types/lodash": "^4.14.194",
"axios": "^1.3.5",
"chai": "^4.3.7",
"did-jwt": "6.11.6",
"did-jwt-vc": "3.1.3",
"did-resolver": "^4.1.0",
"ethers": "^5.7.2",
"ethr-did-resolver": "^8.0.0",
"hardhat": "^2.14.0",
"hardhat-gas-reporter": "^1.0.9",
"jsonschema": "^1.4.1",
"jsonwebtoken": "^9.0.0",
"key-did-resolver": "1.4.0",
"lodash": "^4.17.21",
"loglevel": "^1.8.1",
"solidity-coverage": "^0.8.2",
"ts-node": "^10.9.1",
"typechain": "^8.1.1"
},
"overrides": {
"flat": ">=5.0.1",
"minimatch": ">=3.0.5"
}
}