-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
48 lines (48 loc) · 1.39 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
{
"name": "@pokt-foundation/pocketjs-transaction-builder",
"version": "2.2.1",
"description": "Transaction manager and utilties for the Pocket Network protocol",
"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",
"test": "pnpm jest"
},
"types": "dist/src/index.d.ts",
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@pokt-foundation/pocketjs-provider": "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"
},
"dependencies": {
"@pokt-foundation/pocketjs-abstract-provider": "workspace:*",
"@pokt-foundation/pocketjs-signer": "workspace:*",
"@pokt-foundation/pocketjs-types": "workspace:*",
"@pokt-foundation/pocketjs-utils": "workspace:*",
"@pokt-network/amino-js": "^0.7.5-alpha.1",
"@tendermint/belt": "^0.3.0",
"buffer": "^6.0.3",
"long": "^5.2.0",
"protobufjs": "6.11.4",
"ts-proto": "^1.167.8",
"varint": "^6.0.0"
}
}