-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
42 lines (42 loc) · 1.05 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
{
"name": "@pokt-foundation/pocketjs-provider",
"version": "2.2.1",
"description": "",
"type": "module",
"source": "src/index.ts",
"exports": {
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"unpkg": "./dist/index.umd.js",
"scripts": {
"build": "microbundle",
"dev": "microbundle watch"
},
"types": "dist/src/index.d.ts",
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@pokt-foundation/pocketjs-types": "workspace:*",
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"eslint": "7.32.0",
"jest": "^27.4.7",
"microbundle": "^0.14.2",
"nock": "^13.2.4",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
},
"dependencies": {
"@pokt-foundation/pocketjs-abstract-provider": "workspace:*",
"abort-controller": "^3.0.0",
"buffer": "^6.0.3",
"debug": "^4.3.3",
"undici": "^5.26.2"
}
}