forked from wormhole-foundation/wormhole-sdk-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.22 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
{
"name": "connect-sdk",
"version": "0.3.0-beta.16",
"license": "Apache-2.0",
"directories": {
"test": "__tests__"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/jest": "^29.5.3",
"@types/lodash": "^4.14.197",
"@types/mocha": "^10.0.1",
"@types/node": "^20.4.1",
"chai": "^4.3.7",
"jest": "^29.6.1",
"mocha": "^10.2.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"tsd": "^0.29.0",
"turbo": "^1.11.2",
"typedoc": "^0.24.8",
"typescript": "^5.1.1"
},
"scripts": {
"lint": "npx turbo lint",
"build": "npx turbo build",
"rebuild": "npx turbo build --force",
"test": "NETWORK=Mainnet npx turbo test",
"prettier": "npm run prettier --workspaces --if-present",
"docs": "NODE_OPTIONS=--max_old_space_size=8192 typedoc --options typedoc.json",
"sync": "tsx syncVersion.ts && npm install && npm run build",
"publish": "npm publish --access public --tag $TAG --workspace core --workspace connect --workspace platforms --workspace platforms/evm/protocols --workspace platforms/solana/protocols --workspace platforms/cosmwasm/protocols --workspace platforms/algorand/protocols",
"pub:beta": "TAG=beta npm run publish",
"pub:beta:dryrun": "TAG=beta npm run publish --dry-run",
"pub:latest": "TAG=latest npm run publish",
"test:tilt": "jest --verbose --config ./jest.config.ts --roots ./__tests__/tilt"
},
"workspaces": [
"core/base",
"core/definitions",
"connect",
"platforms/evm",
"platforms/evm/protocols/core",
"platforms/evm/protocols/tokenBridge",
"platforms/evm/protocols/cctp",
"platforms/solana",
"platforms/solana/protocols/core",
"platforms/solana/protocols/tokenBridge",
"platforms/solana/protocols/cctp",
"platforms/cosmwasm",
"platforms/cosmwasm/protocols/core",
"platforms/cosmwasm/protocols/tokenBridge",
"platforms/cosmwasm/protocols/ibc",
"platforms/algorand",
"platforms/algorand/protocols/core",
"platforms/algorand/protocols/tokenBridge",
"tokenRegistry",
"examples"
],
"unreleased": [
"platforms/aptos",
"platforms/aptos/protocols/core",
"platforms/aptos/protocols/tokenBridge"
]
}