-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.01 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
{
"name": "eigencc_sdk",
"version": "0.0.1",
"license": "Apache-2.0",
"keywords": [
"EigenNetwork",
"TEE",
"EigenCC",
"EigenRelay",
"Blockchain"
],
"homepage": "https://eigen.cash",
"repository": "https://github.com/0xEigenLabs/eigencc_sdk",
"main": "./lib/index.js",
"types": "dist/index.d.ts",
"author": "Eigenlab",
"scripts": {
"prebuild_xx": "./node_modules/.bin/tslint -c tslint.json -p tsconfig.json --fix",
"build": "yarn && ./node_modules/.bin/tsc",
"test": "yarn build && mocha ./lib/**/*.test.js"
},
"devDependencies": {
"@ieigen/ecies-js": "0.0.2",
"@types/mocha": "^9.0.0",
"@types/node": "^16.10.3",
"@types/uuid": "^8.3.3",
"chai": "^4.3.4",
"mocha": "^9.1.3",
"tslint": "^6.1.3"
},
"dependencies": {
"@peculiar/webcrypto": "^1.2.3",
"@peculiar/x509": "^1.6.1",
"dotenv": "10.0.0",
"elliptic": "^6.5.4",
"python-struct": "^1.1.3",
"toml": "^3.0.0",
"typescript": "^4.5.4",
"uuid": "^8.3.2"
}
}