forked from wormhole-foundation/native-token-transfers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.26 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
{
"name": "ntt",
"version": "0.1.0-beta.0",
"type": "module",
"license": "Apache-2.0",
"scripts": {
"build": "npm run build --workspaces --if-present",
"rebuild": "npm run rebuild --workspaces --if-present",
"build:solana": "npm run build --workspace=sdk/definitions --workspace=solana",
"build:evm": "npm run build --workspace=sdk/definitions --workspace=sdk/evm",
"generate": "npm run generate --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"test:ci": "CI=true jest --config ./jest.config.ts",
"test:local": "jest --config ./jest.config.ts",
"generate:test": "npm run generate:test --workspaces --if-present",
"build:deps": "npm run build:contracts --workspaces --if-present && npm run generate",
"version": "tsx setSdkVersion.ts"
},
"devDependencies": {
"@wormhole-foundation/sdk": "0.6.5",
"@solana/spl-token": "0.3.9",
"@solana/web3.js": "1.91.7",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.2",
"@wormhole-foundation/wormchain-sdk": "^0.0.1",
"ethers": "^6.5.1",
"ts-jest": "^29.1.2",
"tsx": "^4.7.2",
"typescript": "^5.1.1"
},
"workspaces": [
"sdk/definitions",
"sdk/evm",
"solana",
"sdk/route",
"sdk/examples",
"cli"
]
}