-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 2.01 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
{
"name": "token-bridge-relayer-root",
"private": true,
"version": "1.0.0",
"description": "",
"scripts": {
"build": "yarn ./deployment build:evm:typechain; yarn ./sdk/common build && yarn ./sdk/evm build && yarn ./sdk/solana build && yarn ./sdk/deployment test:build && yarn ./solana build:ts && yarn ./connect/definitions build && yarn ./connect/platforms/evm build && yarn ./connect/platforms/solana build && yarn ./connect/route build",
"build:all:common": "yarn ./evm build:all && yarn build",
"build:all-testnet": "yarn ./solana build:contract:testnet && yarn build:all:common",
"build:verifiable:all-testnet": "yarn ./solana build:contract:verifiable:testnet && yarn build:all:common",
"build:all-mainnet": "yarn ./solana build:contract:mainnet && yarn build:all:common",
"build:verifiable:all-mainnet": "yarn ./solana build:contract:verifiable:mainnet && yarn build:all:common",
"clean": "yarn workspaces foreach --all --exclude ./solana run clean && yarn ./solana run clean:ts",
"clean:all": "yarn workspaces foreach --all run clean && yarn ./evm clean:contracts",
"test:evm": "yarn ./evm test",
"test:solana": "anchor run setup-test && anchor test",
"test:sdk-evm": "yarn sdk/evm test:deploy:integration",
"prettier": "prettier --write ."
},
"keywords": [],
"author": "",
"license": "Apache 2",
"prettier": {
"trailingComma": "all",
"printWidth": 100,
"singleQuote": true
},
"dependencies": {
"@yarnpkg/types": "^4.0.0",
"bn.js": "^5.2.1"
},
"devDependencies": {
"@types/bn.js": "^5.1.5",
"@types/chai": "^4.3.19",
"@types/mocha": "^10",
"@types/node": "20.17.5",
"chai": "^5.1.1",
"mocha": "^10",
"prettier": "^3.3.3",
"ts-mocha": "^10",
"tsx": "^4.19.2",
"typescript": "5.6.3"
},
"workspaces": [
"sdk/common",
"sdk/evm",
"sdk/solana",
"evm",
"solana",
"deployment",
"connect/definitions",
"connect/platforms/*",
"connect/route"
],
"packageManager": "[email protected]"
}