-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.06 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
{
"name": "@lit-protocol/lit-oracle-kit",
"version": "1.0.0",
"description": "SDK for executing Lit Actions as oracles and writing to chain",
"main": "dist/lit-oracle-kit.js",
"types": "dist/lit-oracle-kit.d.ts",
"type": "module",
"exports": {
".": "./dist/lit-oracle-kit.js"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "jest",
"type-check": "tsc --noEmit",
"docs": "typedoc src/lit-oracle-kit.ts --out docs"
},
"dependencies": {
"@lit-protocol/constants": "^7.0.0",
"@lit-protocol/contracts": "^0.0.71",
"@lit-protocol/contracts-sdk": "^7.0.0",
"@lit-protocol/lit-node-client-nodejs": "^7.0.0",
"ethers": "^5.7.2",
"ipfs-only-hash": "^4.0.0",
"node-localstorage": "^3.0.5"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.24",
"@types/node-localstorage": "^1.3.3",
"dotenv": "^16.4.5",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typedoc": "^0.26.11",
"typescript": "^5.3.3"
}
}