-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
34 lines (34 loc) · 922 Bytes
/
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
{
"name": "@pokt-foundation/pocketjs-abstract-provider",
"version": "2.2.1",
"description": "Abstract provider for all other providers to inherit",
"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": "ISC",
"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",
"prettier": "^2.5.1",
"prettier-eslint": "^13.0.0",
"ts-jest": "^27.1.3"
}
}