-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
70 lines (70 loc) · 2.09 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
{
"name": "ts-sdk",
"version": "0.14.0",
"license": "Apache-2.0",
"directories": {
"test": "__tests__"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/jest": "^29.5.12",
"@types/mocha": "^10.0.1",
"@types/node": "^20.4.1",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"chai": "^4.3.7",
"jest": "^29.7.0",
"mocha": "^10.2.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.2",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"tsd": "^0.29.0",
"turbo": "^1.11.2",
"typedoc": "^0.25.13",
"typescript": "^5.4.5"
},
"scripts": {
"lint": "npx turbo lint --no-cache --force",
"build": "npx turbo build",
"rebuild": "npx turbo rebuild --no-cache --force",
"test": "NETWORK=Mainnet npm run test --workspaces --if-present",
"prettier": "npm run prettier --workspaces --if-present",
"docs": "NODE_OPTIONS=--max_old_space_size=8192 typedoc --options typedoc.json",
"version": "tsx setVersion.ts",
"prepublishOnly": "cd scripts && npm run examples && cd - && cp README.md sdk/",
"test:tilt": "jest --verbose --config ./jest.config.ts --roots ./__tests__/tilt"
},
"workspaces": [
"core/base",
"core/definitions",
"core/icons",
"connect",
"platforms/evm",
"platforms/evm/protocols/core",
"platforms/evm/protocols/tokenBridge",
"platforms/evm/protocols/cctp",
"platforms/evm/protocols/portico",
"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",
"platforms/sui",
"platforms/sui/protocols/core",
"platforms/sui/protocols/tokenBridge",
"platforms/aptos",
"platforms/aptos/protocols/core",
"platforms/aptos/protocols/tokenBridge",
"sdk",
"examples"
],
"unreleased": [
"tokenRegistry"
]
}