-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
99 lines (99 loc) · 3.1 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@0xsquid/sdk",
"version": "1.14.18",
"description": "🛠 An SDK for building applications on top of 0xsquid",
"repository": {
"type": "git",
"url": "git+https://github.com/0xsquid/api-sdk.git"
},
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist tsconfig.tsbuildinfo",
"lint": "eslint --ext .js,.ts,.json .",
"lint:fix": "eslint --ext .js,.ts,.json . --fix",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"prepare": "husky install",
"test": "jest ./*/*.spec.ts --verbose",
"build": "tsc",
"integration": "npx ts-node src/scripts/test-sdk.ts",
"integration:sendtrade": "npx ts-node src/scripts/test-sdk.ts -s sendtrade",
"integration:tradesend": "npx ts-node src/scripts/test-sdk.ts -s tradesend",
"integration:tradesendtrade": "npx ts-node src/scripts/test-sdk.ts -s tradesendtrade",
"integration:sendOnly": "npx ts-node src/scripts/test-sdk.ts -s sendOnly",
"integration:sendOnlyCosmos": "npx ts-node src/scripts/test-sdk.ts -s sendOnlyCosmos",
"integration:tradeSendCosmos": "npx ts-node src/scripts/test-sdk.ts -s tradeSendCosmos",
"release": "release-it",
"release:pre": "release-it --preRelease=beta",
"release:ci": "release-it --ci",
"release:dry": "release-it --dry-run"
},
"dependencies": {
"ethereum-multicall": "2.23.0",
"axios": "^0.27.2",
"ethers": "^5.7.1",
"@cosmjs/encoding": "^0.32.2",
"@cosmjs/stargate": "^0.32.2",
"@cosmjs/cosmwasm-stargate": "^0.32.2",
"cosmjs-types": "^0.9.0"
},
"resolutions": {
"semver": "^7.5.4"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@tsconfig/node16": "^1.0.3",
"@types/jest": "^28.1.6",
"@types/node": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"assert": "^2.0.0",
"babel-jest": "^28.1.3",
"chalk": "4.1.2",
"dotenv": "^16.0.1",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"yargs": "^17.5.1",
"release-it": "^16.1.2",
"@release-it/conventional-changelog": "release-it/conventional-changelog"
},
"bugs": {
"url": "https://github.com/0xsquid/squid-sdk/issues"
},
"homepage": "https://github.com/0xsquid/squid-sdk#readme",
"author": "",
"release-it": {
"plugins": {
"@release-it/conventional-changelog": {
"preset": "conventionalcommits",
"infile": "CHANGELOG.md"
}
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
},
"git": {
"tagName": "v${version}",
"pushRepo": "https://github.com/0xsquid/squid-sdk.git",
"commitMessage": "chore: branch cut release for sdk v${version}",
"requireBranch": "release/*"
},
"npm": {
"publish": false
}
}
}