-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
91 lines (91 loc) · 2.56 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
{
"name": "@pooltogether/v4-client-js",
"author": "PoolTogether Inc.",
"description": "Client library for simple interactions with PoolTogether V4 contracts.",
"module": "dist/v4-client-js.esm.js",
"version": "1.18.1",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"bugs": {
"url": "https://github.com/pooltogether/issues",
"email": "bugs@pooltogether.com"
},
"files": [
"dist",
"src"
],
"homepage": "https://github.com/pooltogether/v4-client-js",
"engines": {
"node": ">=16"
},
"repository": {
"url": "https://github.com/pooltogether/v4-client-js",
"type": "git"
},
"scripts": {
"start": "tsdx watch --onSuccess \"yalc push\"",
"reinstall": "rm -rf node_modules && yarn install",
"build": "tsdx build",
"test": "tsdx test",
"test:watch": "tsdx test --watch",
"test:coverage": "tsdx test --coverage",
"lint": "tsdx lint src",
"lint:fix": "tsdx lint src --fix",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why",
"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"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint --fix"
}
},
"prettier": {
"printWidth": 100,
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"quoteProps": "consistent",
"jsxBracketSameLine": false,
"jsxSingleQuote": true,
"arrowParens": "always",
"trailingComma": "none"
},
"size-limit": [
{
"path": "dist/v4-client-js.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/v4-client-js.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@size-limit/preset-small-lib": "^5.0.3",
"@types/lodash.memoize": "^4.1.6",
"husky": "^7.0.2",
"replace-in-files": "^3.0.0",
"size-limit": "^5.0.3",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typedoc": "^0.22.10",
"typedoc-plugin-markdown": "^3.11.11",
"typescript": "^4.8.3"
},
"dependencies": {
"@ethersproject/abi": "^5.1.0",
"@pooltogether/contract-list-schema": "^0.1.4",
"@pooltogether/etherplex": "^1.1.4",
"@pooltogether/utilities": "^0.6.2",
"@pooltogether/v4-utils-js": "0.1.5",
"debug": "^4.3.3",
"eth-permit": "^0.2.3",
"ethers": "^5.4.6"
}
}