-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
110 lines (110 loc) · 3.88 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "lit-listener-sdk",
"version": "1.0.25",
"description": "An open source typescript SDK, compatible with node and browser, with an easy interface to automate responses from webhooks, subscribed on-chain events and intervals through triggered callback functions and the use of Lit Protocol PKPs.",
"main": "dist/src/index.js",
"module": "dist/index.m.js",
"unpkg": "dist/index.umd.js",
"types": "dist/src/index.d.ts",
"scripts": {
"start:node": "npx hardhat node",
"test:prepare": "npx hardhat clean && npx hardhat compile && npx typechain --target ethers-v5 --out-dir typechain-types/contracts './src/abis/*.json'",
"test:run": "npx hardhat test --network localhost",
"pretest": "npm run test:prepare",
"test": "start-server-and-test start:node http://127.0.0.1:8545 test:run",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"build": "webpack && tsc --declaration",
"postinstall": "typechain --target ethers-v5 --out-dir typechain-types/contracts './src/abis/*.json'",
"publish": "npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DIGITALAX/LitListenerSDK.git"
},
"author": "Emma-Jane MacKinnon-Lee",
"license": "UNLICENSE",
"bugs": {
"url": "https://github.com/DIGITALAX/LitListenerSDK/issues"
},
"directories": {
"test": "test"
},
"homepage": "https://github.com/DIGITALAX/LitListenerSDK#readme",
"dependencies": {
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/transactions": "^5.7.0",
"@lit-protocol/lit-node-client": "2.2.24",
"@lit-protocol/pkp-ethers": "2.2.41",
"@typechain/ethers-v5": "^10.1.1",
"@typechain/hardhat": "^6.1.4",
"axios": "^1.4.0",
"body-parser": "^1.20.2",
"browserify-zlib": "^0.2.0",
"bs58": "^5.0.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"crypto-js": "^4.1.1",
"dotenv": "^16.0.3",
"ethers": "^5.7.2",
"express": "^4.18.2",
"graceful-fs": "^4.2.11",
"https-browserify": "^1.0.0",
"ipfs-only-hash": "^4.0.0",
"lodash": "^4.17.21",
"node-fetch": "2.6.1",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"siwe": "2.1.3",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"tty-browserify": "^0.0.1",
"typechain": "^8.1.1",
"url": "^0.11.3"
},
"devDependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@lit-protocol/types": "2.2.54",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.4",
"@nomicfoundation/hardhat-network-helpers": "^1.0.6",
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"@nomiclabs/hardhat-ethers": "^2.2.1",
"@nomiclabs/hardhat-etherscan": "^3.1.2",
"@nomiclabs/hardhat-waffle": "^2.0.6",
"@openzeppelin/contracts": "^4.8.0",
"@types/bs58": "^4.0.1",
"@types/chai": "^4.3.5",
"@types/crypto-js": "^4.1.2",
"@types/lodash": "^4.14.195",
"@types/node": "^20",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"chai": "^4.3.7",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"hardhat": "^2.12.2",
"hardhat-gas-reporter": "^1.0.9",
"ipfs-http-client": "56.0.0",
"jest": "^29.5.0",
"jsdoc": "^4.0.0",
"jsdom": "^22.1.0",
"mocha": "^10.2.0",
"node-polyfill-webpack-plugin": "^3.0.0",
"prettier": "^2.7.1",
"solidity-bytes-utils": "^0.8.0",
"solidity-coverage": "^0.8.2",
"start-server-and-test": "^2.0.0",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.3",
"ts-node": "^10.9.1",
"typescript": "*",
"typescript-declaration-webpack-plugin": "^0.3.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
}
}