-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 2 KB
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
{
"name": "@generationsoftware/pt-v5-utils-js",
"description": "Utility / helper library for PoolTogether v5.",
"author": {
"name": "G9 Software Inc.",
"url": "https://github.com/generationsoftware"
},
"license": "MIT",
"version": "1.2.6",
"homepage": "https://github.com/generationsoftware/pt-v5-utils-js",
"bugs": {
"url": "https://github.com/generationsoftware/issues",
"email": "bugs@pooltogether.com"
},
"engines": {
"node": ">=10"
},
"type": "module",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"start": "tsc-watch --onSuccess \"npx yalc publish\"",
"build": "tsc",
"docs": "yarn docs:md ; yarn docs:clean",
"docs:md": "yarn typedoc --plugin typedoc-plugin-markdown --entryDocument index.md --hideBreadcrumbs true --namedAnchors false --out docs/md",
"docs:html": "yarn typedoc --plugin none --out docs/app src/index.ts ",
"docs:clean": "node ./scripts/docsFindAndReplace.js ; node ./scripts/docsCleanup.js"
},
"peerDependencies": {
"lodash.pickby": "^4.6.0"
},
"dependencies": {
"@ethersproject/abi": "5.7.0",
"@ethersproject/providers": "5.7.2",
"@pooltogether/contract-list-schema": "^0.1.4",
"@types/lodash": "^4.14.195",
"ethers": "^5.5.1",
"ethers-multicall-provider": "3.1.2",
"graphql": "^16.6.0",
"graphql-request": "^6.0.0",
"lodash": "4.17.0",
"lodash.pickby": "^4.6.0",
"node-fetch": "^3.3.2",
"tsc": "^2.0.4",
"tsc-watch": "^6.0.4",
"typescript": "^5.0.4"
},
"devDependencies": {
"@types/lodash.pickby": "^4.6.9",
"@types/node": "^20.2.5",
"debug": "^4.3.2",
"prettier": "^2.8.8",
"replace-in-files": "^3.0.0",
"tslib": "^2.5.0",
"typedoc": "^0.24.7",
"typedoc-plugin-markdown": "^3.15.3"
}
}