-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.42 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
{
"name": "libsushi",
"version": "0.3.1",
"description": "web3 JSON-RPC Library",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/manifoldfinance/libopenmev.git"
},
"keywords": [
"json rpc",
"web3",
"ethereum",
"rpc",
"api",
"client",
"provider"
],
"bugs": {
"url": "https://github.com/manifoldfinance/libopenmev/issues"
},
"homepage": "https://github.com/manifoldfinance/libopenmev#readme",
"scripts": {
"build": "rollup -c ./rollup.config.js",
"typecheck": "tsc --noEmit --target esnext",
"test": "npx jest -u",
"fmt": "prettier --write '**/*.{ts,md}'",
"baseline": "npx tsc --extendedDiagnostics",
"explain": "npx tsc --explainFiles > explanation.txt",
"trace": "npx tsc --traceResolution > resolution.txt",
"profile": "node --trace-ic ./node_modules/typescript/lib/tsc.js --generateCpuProfile profile.cpuprofile -p tsconfig.json",
"tracer": "mkdir -p tmp_folder/ && npx tsc -p ./tsconfig.json --generateTrace tmp_folder"
},
"author": "Manifold Finance, Inc <janitor@manifoldfinance.com>",
"license": "Apache-2.0",
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-typescript": "^8.3.2",
"@testing-library/jest-dom": "^5.16.3",
"@types/is-odd": "^3.0.0",
"@types/node": "^16",
"esbuild": "^0.14.42",
"prettier": "^2.6.1",
"rollup": "^2.75.3",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-esbuild": "^4.9.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"ts-jest": "^26.5.6",
"ts-pattern": "^4.0.2",
"tslib": "^2.4.0",
"typedoc": "^0.22.13",
"typescript": "4.6.4",
"typescript-eslint-language-service": "^5.0.0",
"vite": "^2.9.9",
"vite-plugin-dts": "^1.2.0",
"vite-tsconfig-paths": "^3.5.0",
"vitest": "^0.13.0"
},
"dependencies": {
"@ethersproject/abstract-provider": "^5.6.1",
"@ethersproject/providers": "^5.6.8",
"@ethersproject/strings": "^5.6.1",
"@reduxjs/toolkit": "^1.8.2"
}
}