-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.76 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
{
"name": "ethereum-solana-wormhole-messaging",
"version": "1.0.0",
"description": "Cross-chain messaging between Ethereum and Solana using Wormhole",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts --clean --external elliptic",
"dev": "tsup src/index.ts --format esm,cjs --dts --watch --external elliptic",
"test": "jest --passWithNoTests --coverage",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"prepublishOnly": "npm test && npm run lint && npm run build",
"prepare": "npm run build"
},
"dependencies": {
"@certusone/wormhole-sdk": "^0.10.0",
"@solana/web3.js": "^1.87.1",
"bn.js": "^5.2.1",
"bs58": "^5.0.0",
"buffer": "^6.0.3",
"cross-fetch": "^4.0.0",
"eccrypto": "^1.1.6",
"elliptic": "^6.6.0",
"ethers": "^5.7.2",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@types/eccrypto": "^1.1.6",
"@types/elliptic": "^6.4.18",
"@types/jest": "^29.5.5",
"@types/node": "^20.8.2",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"eslint": "^8.50.0",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
}
}