forked from rainlanguage/rain-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.4 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
{
"version": "0.0.2-alpha.1",
"license": "CAL",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src",
"docs"
],
"engines": {
"node": ">=12"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"nix-build": "nix-shell --run yarn build",
"test": "npx hardhat test",
"lint": "tsdx lint src",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why",
"generate-docs": "api-extractor run --local && api-documenter markdown -i ./ -o ./docs"
},
"peerDependencies": {},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "rain-sdk",
"author": "Beehive Innovation",
"module": "dist/rain-sdk.esm.js",
"size-limit": [
{
"path": "dist/rain-sdk.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/rain-sdk.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@beehiveinnovation/rain-protocol": "git+https://github.com/beehive-innovation/rain-protocol.git#2dd7102e9addf0662bc0aef2a6aacb8b82edf089",
"@beehiveinnovation/rain-statusfi": "git+https://github.com/beehive-innovation/rain-statusfi.git#499b0a05e0bea8685dcd3b4b03af7da91fd31258",
"@microsoft/api-extractor": "^7.22.2",
"@nomiclabs/hardhat-ethers": "^2.0.3",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@princjef/api-documenter": "^1.0.2",
"@size-limit/preset-small-lib": "^6.0.4",
"@typechain/ethers-v5": "^8.0.5",
"@typechain/hardhat": "^3.0.0",
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.11",
"@vishalkale15107/rain-protocol": "git+https://github.com/vishalkale151071/rain-protocol.git#3d0ee716430d28716365f0f1c999fe14c30f0b4b",
"chai": "^4.3.4",
"ethereum-waffle": "^3.4.0",
"hardhat": "^2.7.0",
"husky": "^7.0.4",
"size-limit": "^6.0.4",
"standardx": "3.0.0",
"ts-node": "^10.4.0",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typechain": "^6.0.2",
"typescript": "^4.5.2"
},
"dependencies": {
"ethers": "^5.5.2",
"prettier": "^2.6.2"
},
"resolutions": {
"**/@typescript-eslint/eslint-plugin": "^5.4.0",
"**/@typescript-eslint/parser": "^5.4.0",
"**/jest": "^27.3.1",
"**/ts-jest": "^27.0.7",
"**/typescript": "^4.4.4"
}
}