-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
108 lines (108 loc) · 3.18 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
100
101
102
103
104
105
106
107
108
{
"name": "@0xsquid/sdk",
"version": "2.8.29",
"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 src/ --ext .js,.ts,.json",
"lint:fix": "yarn lint --fix",
"format": "prettier --ignore-path .gitignore --write --log-level error \"**/*.+(js|ts|json)\"",
"prepare": "husky install",
"test": "jest --testMatch \"**/*.spec.ts\" --verbose",
"build": "tsc",
"integration": "npx ts-node src/scripts/basic-test-script.ts",
"release": "release-it",
"release:pre": "release-it --preRelease=beta",
"release:ci": "release-it --ci",
"release:dry": "release-it --dry-run"
},
"dependencies": {
"@cosmjs/encoding": "0.32.4",
"@cosmjs/stargate": "0.32.4",
"@cosmjs/cosmwasm-stargate": "0.32.4",
"@ethersproject/abstract-signer": "^5.7.0",
"@ethersproject/wallet": "^5.7.0",
"axios": "^1.5.0",
"cosmjs-types": "0.9.0",
"ethers": "6.8.1",
"ethers-multicall-provider": "^5.0.0",
"lodash": "^4.17.21",
"long": "^5.2.3",
"@solana/web3.js": "1.95.3",
"@project-serum/anchor": "^0.26.0",
"bs58": "^6.0.0"
},
"resolutions": {
"semver": "^7.5.4"
},
"devDependencies": {
"@0xsquid/squid-types": "0.1.122",
"@babel/core": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@release-it/conventional-changelog": "release-it/conventional-changelog",
"@tsconfig/node16": "^1.0.3",
"@types/jest": "^28.1.6",
"@types/lodash": "^4.14.195",
"@types/node": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.14.0",
"assert": "^2.0.0",
"babel-jest": "^28.1.3",
"chalk": "4.1.2",
"dotenv": "^16.0.1",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^42.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-json-format": "^2.0.1",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.1",
"jest": "^28.1.3",
"prettier": "^3.1.1",
"release-it": "^16.1.2",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"typescript": "*",
"yargs": "^17.5.1"
},
"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
}
}
}