-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathpackage.json
64 lines (64 loc) · 1.71 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
{
"name": "@requestnetwork/lit-protocol-cipher",
"version": "0.7.0",
"publishConfig": {
"access": "public"
},
"description": "Lit Protocol Cipher Provider.",
"keywords": [
"requestnetwork",
"lit-protocol-cipher-provider"
],
"repository": {
"type": "git",
"url": "git+https://github.com/RequestNetwork/requestNetwork.git"
},
"homepage": "https://github.com/RequestNetwork/requestNetwork/tree/master/packages/lit-protocol-cipher#readme",
"bugs": {
"url": "https://github.com/RequestNetwork/requestNetwork/issues"
},
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=18.0.0"
},
"directories": {
"lib": "src",
"test": "test"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc -b tsconfig.build.json",
"clean": "rm -rf dist tsconfig.tsbuildinfo tsconfig.build.tsbuildinfo",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"prepare": "yarn run build",
"test": "jest",
"test:watch": "yarn test --watch"
},
"dependencies": {
"@lit-protocol/auth-helpers": "7.0.2",
"@lit-protocol/constants": "7.0.2",
"@lit-protocol/contracts": "0.0.74",
"@lit-protocol/encryption": "7.0.2",
"@lit-protocol/lit-node-client": "7.0.2",
"@lit-protocol/lit-node-client-nodejs": "7.0.2",
"@lit-protocol/types": "7.0.2",
"@requestnetwork/request-client.js": "0.56.0",
"@requestnetwork/types": "0.51.0",
"@walletconnect/modal": "2.7.0",
"ethers": "5.7.2"
},
"devDependencies": {
"@types/jest": "29.5.6",
"@types/node": "18.11.9",
"jest": "29.5.0",
"jest-junit": "16.0.0",
"ts-jest": "29.1.0",
"ts-node": "10.9.1",
"typescript": "5.1.3"
}
}