-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.76 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
{
"name": "@pooltogether/v5-utils-js",
"description": "Utility library for PoolTogether V5 off-chain computations.",
"author": "PoolTogether Inc",
"license": "GPL-3.0-only",
"version": "0.0.1-beta.26",
"homepage": "https://github.com/pooltogether/v5-utils-js",
"bugs": {
"url": "https://github.com/pooltogether/issues",
"email": "[email protected]"
},
"engines": {
"node": ">=10"
},
"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": {},
"dependencies": {
"@pooltogether/contract-list-schema": "^0.1.4",
"@types/lodash": "^4.14.195",
"ethereum-multicall": "^2.17.0",
"ethers": "^5.5.1",
"ethers-multicall-provider": "^3.0.3",
"graphql": "^16.6.0",
"graphql-request": "^6.0.0",
"lodash": "^4.17.21",
"node-fetch": "^2.6.11",
"tsc": "^2.0.4",
"tsc-watch": "^6.0.4",
"typescript": "^5.0.4"
},
"devDependencies": {
"@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"
}
}