forked from LIT-Protocol/js-serverless-function-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.97 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
{
"name": "jsfunctest",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"@cosmjs/amino": "^0.30.0",
"@ethereumjs/common": "^2.6.4",
"@ethereumjs/tx": "^3.5.1",
"@ethersproject/bytes": "^5.6.1",
"@ethersproject/rlp": "^5.6.0",
"@ethersproject/signing-key": "^5.6.2",
"@ethersproject/transactions": "^5.6.0",
"@ethersproject/wallet": "^5.6.2",
"@lit-protocol/lit-node-client": "^2.2.22",
"axios": "^0.27.2",
"bitcoinjs-lib": "^6.1.0",
"ethers": "^5.7.2",
"js-sha3": "^0.8.0",
"jwk-to-pem": "^2.0.5",
"secp256k1": "^5.0.0",
"serve-handler": "^6.1.3",
"siwe": "^1.1.6",
"@lit-protocol/lit-node-client": "^2.2.24"
},
"type": "module",
"scripts": {
"go": "node executeOnNode.js",
"sign": "yarn build && node js-sdkTests/signTxn.js",
"signIpfs": "node js-sdkTests/signTxnFromIPFS.js",
"build": "node esbuild.js",
"hello": "node js-sdkTests/helloworld.js",
"helloBLS": "node js-sdkTests/helloworldBLS.js",
"helloIpfs": "node js-sdkTests/helloworldFromIPFS.js",
"helloLocalhost": "node js-sdkTests/hellolocalhost.js",
"encoding": "node js-sdkTests/encodingTest.js",
"conditions": "node js-sdkTests/litConditions.js",
"signRawAndCheck": "node js-sdkTests/signRawAndCheckRecovery.js",
"signMsgAndCheck": "node js-sdkTests/signMsgAndCheckRecovery.js",
"fetch": "node js-sdkTests/fetch.js",
"params": "node js-sdkTests/allTheParams.js",
"multipleSigs": "node js-sdkTests/multipleSigs.js",
"decrypt": "node js-sdkTests/decrypt.js",
"consoleAndResponse": "node js-sdkTests/consoleAndResponse.js",
"debug": "node js-sdkTests/debug.js",
"simpleConsole": "node js-sdkTests/simpleConsole.js",
"simpleResponse": "node js-sdkTests/simpleResponse.js",
"nesting": "node js-sdkTests/nesting.js",
"mumbai": "node js-sdkTests/hellomumbai.js",
"ethers": "node js-sdkTests/ethers.js",
"authContext": "node js-sdkTests/authContext.js",
"siweNodeSide": "cd bundleTests/siwe; node esbuild.js; node siwe.js",
"siweClientSide": "node js-sdkTests/siwe.js",
"pkpPermissions": "node js-sdkTests/pkpPermissions.js",
"authContextSign": "node js-sdkTests/authContextSign.js",
"walletlessSign": "node js-sdkTests/walletlessSign.js",
"derivedIpfs": "node js-sdkTests/derivedIpfsId.js",
"decryptInLitAction": "node js-sdkTests/decryptInLitAction.js",
"jwt": "node js-sdkTests/jsonwebtoken.js",
"sessionKeys": "node js-sdkTests/sessionKeys.js",
"fetchContracts": "node ./tools/getDeployedContracts.mjs",
"mintPKP": "node ./contracts/mintPKP.js",
"test": "node ./automated/index.js",
"getLatestNonce": "node js-sdkTests/getLatestNonce.js",
"helloDevnet": "node js-sdkTests/helloDevnet.js",
"cosmosDerive": "node js-sdkTests/cosmosDerive.js",
"personalSign": "node js-sdkTests/personalSign.js",
"justFetchLocalhost": "node js-sdkTests/justFetch.js"
},
"devDependencies": {
"esbuild": "^0.14.39"
}
}