forked from delphi-labs/shuttle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.3 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
{
"name": "@delphi-labs/shuttle",
"version": "3.29.0",
"description": "Shuttle is open-source npm package designed to turn wallet connections into a plug-and-play Lego brick for Cosmos Dapps.",
"keywords": [
"dapp",
"blockchain",
"wallets",
"cosmos-sdk",
"cosmos",
"typescript",
"react"
],
"author": "Delphi Labs (delphi-labs)",
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/delphi-labs/shuttle.git",
"directory": "packages/core"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsup src/index.ts --format cjs --dts",
"dev": "pnpm run build --watch",
"lint": "eslint \"{**/*,*}.{js,ts,jsx,tsx}\"",
"prettier": "prettier --write \"{src,tests,example/src}/**/*.{js,ts,jsx,tsx}\"",
"test": "jest --config jestconfig.json",
"prepublishOnly": "pnpm run test && pnpm run lint",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@bufbuild/protobuf": "^1.8.0",
"@cosmjs/amino": "^0.31.0",
"@cosmjs/cosmwasm-stargate": "^0.32.4",
"@cosmjs/crypto": "^0.32.4",
"@cosmjs/encoding": "^0.32.4",
"@cosmjs/proto-signing": "^0.32.4",
"@cosmjs/stargate": "^0.32.4",
"@cosmjs/tendermint-rpc": "^0.32.4",
"@injectivelabs/sdk-ts": "^1.14.11",
"@injectivelabs/utils": "^1.14.11",
"@dao-dao/cosmiframe": "^0.1.0",
"@metamask/eth-sig-util": "^6.0.0",
"@terra-money/terra.proto": "^3.0.5",
"@walletconnect/sign-client": "^2.9.0",
"ethereumjs-util": "^7.1.5",
"long": "^5.2.3",
"mobile-detect": "^1.4.5",
"protobufjs": "^7.2.5",
"tslib": "^2.6.0",
"tsup": "^7.1.0"
},
"devDependencies": {
"@injectivelabs/ts-types": "^1.14.11",
"@swc/core": "^1.3.68",
"@terra-money/terra.proto": "^3.0.5",
"@types/jest": "^29.5.0",
"@types/node": "^17.0.12",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"@walletconnect/types": "^2.8.2",
"cosmjs-types": "^0.9.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"jest-resolver-enhanced": "^1.1.0",
"prettier": "^2.7.1",
"ts-jest": "^29.1.0",
"typescript": "^5.1.6"
}
}