-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
93 lines (92 loc) · 2.39 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
91
92
{
"name": "@lighthouse-web3/kavach",
"version": "0.1.9",
"description": "Encryption SDK: Build your trustless, decentralized and fault resistance Application using distributed key shades with threshold cryptography",
"author": "xlassix",
"main": "./dist/methods/index.js",
"types": "./dist/methods/index.d.ts",
"license": "MIT",
"files": [
"dist/**/*"
],
"dependencies": {
"bls-eth-wasm": "^1.1.1",
"joi": "^17.7.0"
},
"engines": {
"node": ">=18.0.0"
},
"lint-staged": {
"**/*.ts": "eslint --fix",
"src/**/*": [
"prettier --single-quote --write"
]
},
"eslintConfig": {
"extends": [
"prettier"
]
},
"scripts": {
"test": "jest --runInBand",
"coverage": "jest --runInBand --coverage",
"build": "npx tsc",
"lint": "eslint . --ext .ts",
"prepare": "husky install"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.5.8",
"@types/node": "^20.9.1",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"babel-jest": "^29.4.1",
"ethers": "^6.3.1",
"eslint": "8.25.0",
"eslint-config-airbnb": "^19.0.2",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-next": "12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react": "1.1.7",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-testing-library": "5.5.1",
"git-format-staged": "^3.0.0",
"husky": "^8.0.3",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^14.0.1",
"prettier": "^2.4.1",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"repository": {
"type": "git",
"url": "https://github.com/lighthouse-web3/encryption-sdk.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"keywords": [
"BLS",
"ipfs",
"encryption",
"file-sharing",
"access-control",
"threshold",
"keySharding",
"keys",
"lighthouse"
],
"contributors": [
"Oki Ayobami (https://github.com/xlassix)",
"Ravish Kumar Sharma (https://github.com/ravish1729)"
]
}