-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
126 lines (126 loc) · 3.97 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "@allbridge/bridge-core-sdk",
"version": "0.0.0-development",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/src/index.d.ts",
"browser": "./dist/browser/index.js",
"license": "MIT",
"files": [
"/dist"
],
"engines": {
"node": "^18.7.0 || >= 16",
"npm": "^8.16.0 || >= 8"
},
"volta": {
"node": "18.7.0",
"npm": "8.16.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "pnpm run clean && pnpm run type:dts && tsc && pnpm run build:main",
"build:main": "node -r ./esbuild-hook ./scripts/build",
"clean": "node -r ./esbuild-hook ./scripts/clean",
"type:dts": "tsc --emitDeclarationOnly",
"type:check": "tsc --noEmit",
"format": "prettier \"src/**/*.ts\" \"examples/**/*.ts\" --write",
"format:check": "prettier \"src/**/*.ts\" \"examples/**/*.ts\" --check",
"lint": "eslint src --ext .ts --fix",
"lint:check": "eslint src --ext .ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"spell:check": "cspell \"{README.md,CODE_OF_CONDUCT.md,CONTRIBUTING.md,.github/*.md,src/**/*.ts}\"",
"cz": "cz",
"webstorm-integration": "vitest --watch --reporter=dot --reporter=json --outputFile=.vitest-result.json",
"tsdoc": "typedoc --excludeInternal src/index.ts --cleanOutputDir false",
"semantic-release": "semantic-release",
"prepack": "pnpm run updateVersion",
"prepare": "pnpm run build",
"updateVersion": "node -p \"'export const VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/version.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/allbridge-io/allbridge-core-js-sdk"
},
"keywords": [],
"devDependencies": {
"@ryansonshine/commitizen": "^4.2.8",
"@ryansonshine/cz-conventional-changelog": "^3.3.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/github": "^8.1.0",
"@semantic-release/npm": "^10.0.5",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/bn.js": "^5.1.1",
"@types/jest": "^29.5.4",
"@types/node": "^18.17.15",
"@types/prompts": "^2.4.4",
"@types/randombytes": "^2.0.0",
"@types/timed-cache": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"bs58": "^5.0.0",
"c8": "^7.14.0",
"cspell": "^6.31.3",
"dotenv": "^16.3.1",
"esbuild": "^0.21.4",
"esbuild-plugin-copy": "^2.1.1",
"esbuild-plugin-noexternal": "^0.1.6",
"esbuild-plugin-polyfill-node": "^0.3.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^8.10.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.28.1",
"jest": "^29.7.0",
"jest-extended": "^3.2.4",
"nock": "^13.3.3",
"nyc": "^15.1.0",
"prettier": "^2.8.8",
"semantic-release": "^19.0.5",
"source-map-support": "^0.5.21",
"tronweb-typings": "^1.0.1",
"ts-jest": "^29.1.1",
"typechain": "^8.3.1",
"typedoc": "^0.23.28",
"typescript": "^4.9.5"
},
"overrides": {
"semver-regex": "3.1.4"
},
"dependencies": {
"@project-serum/anchor": "^0.25.0",
"@stellar/stellar-sdk": "12.2.0",
"@solana/spl-token": "^0.3.8",
"@solana/web3.js": "^1.78.5",
"@types/big.js": "^6.2.0",
"assert": "^2.1.0",
"axios": "^1.7.2",
"big.js": "^6.2.1",
"bn.js": "^5.2.1",
"erc-20-abi": "^1.0.0",
"querystring": "^0.2.1",
"randombytes": "^2.1.0",
"timed-cache": "^2.0.0",
"tronweb": "^4.4.0",
"web3": "1.9.0",
"web3-core": "1.9.0",
"web3-eth-contract": "1.9.0",
"web3-utils": "1.9.0"
},
"jest": {
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"testEnvironment": "node",
"testRegex": ".*\\.test\\.ts$",
"preset": "ts-jest",
"transformIgnorePatterns": [
"<rootDir>/node_modules/.pnpm/(?!(timed-cache))"
]
}
}