-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
84 lines (84 loc) · 2.77 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "xcm-sdk",
"author": "moonbeam-foundation",
"license": "MIT",
"private": true,
"homepage": "https://moonbeam-foundation.github.io/xcm-sdk/latest",
"bugs": {
"url": "https://github.com/moonbeam-foundation/xcm-sdk/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/moonbeam-foundation/xcm-sdk.git"
},
"type": "module",
"workspaces": ["packages/*", "examples/*", "scripts"],
"packageManager": "[email protected]",
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "turbo run build",
"postbuild": "npx bun scripts/copy-dts.ts",
"dev": "turbo run dev",
"link": "turbo run link",
"lint": "pnpm biome check .",
"lint:fix": "pnpm biome check --write .",
"lint:exports": "ts-unused-exports tsconfig.json --excludePathsFromReport='vitest.workspace.ts;tsup.config.ts;build;examples;vitest.config;src/index.ts' --exitWithCount",
"typecheck": "turbo run typecheck",
"spell": "cspell --quiet -c cspell.config.cjs 'packages/**/src/**'",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"test:update": "turbo run test:update",
"test:ci": "turbo run test:ci",
"test:acc": "turbo run test:acc",
"test:acc:u": "turbo run test:acc -- -u",
"sync-deps": "npx syncpack fix-mismatches",
"clean": "rm -rf packages/**/build packages/**/.turbo .turbo/",
"changeset": "changeset",
"changeset:status": "changeset status",
"changeset:version": "changeset version && pnpm install --lockfile-only",
"changeset:publish": "pnpm run build && changeset publish"
},
"dependencies": {
"@polkadot/api": "15.5.1",
"@polkadot/api-augment": "15.5.1",
"@polkadot/apps-config": "0.148.1",
"@polkadot/types": "15.5.1",
"@polkadot/util": "13.3.1",
"@polkadot/util-crypto": "13.3.1",
"@wormhole-foundation/sdk-connect": "^1.4.5",
"@wormhole-foundation/sdk-evm": "^1.4.5",
"@wormhole-foundation/sdk-evm-tokenbridge": "^1.4.5"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.12",
"@slack/webhook": "^7.0.4",
"@types/big.js": "^6.2.2",
"bun": "^1.2.1",
"cspell": "^8.17.3",
"dotenv": "^16.4.7",
"glob": "^11.0.1",
"lefthook": "^1.10.10",
"syncpack": "^13.0.0",
"ts-unused-exports": "^11.0.1",
"tsup": "^8.3.6",
"turbo": "^2.3.4",
"typescript": "^5.7.3",
"viem": "^2.22.16",
"vitest": "^3.0.4"
},
"overrides": {
"cross-spawn": "^7.0.5"
},
"pnpm": {
"overrides": {
"vite@>=5.4.0 <5.4.6": ">=5.4.6",
"vite@>=5.4.0 <=5.4.5": ">=5.4.6",
"cross-spawn@>=7.0.0 <7.0.5": ">=7.0.5",
"nanoid@<3.3.8": ">=3.3.8",
"elliptic@<6.6.0": ">=6.6.0",
"vite@>=5.0.0 <=5.4.11": ">=5.4.12"
}
}
}