-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
80 lines (80 loc) · 2.34 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
{
"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/*"
],
"packageManager": "npm@10.9.0",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"link": "turbo run link",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"typecheck": "turbo run typecheck",
"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",
"prepare": "husky install",
"sync-deps": "npx syncpack fix-mismatches",
"changeset": "changeset",
"changeset:version": "changeset version && npm i --package-lock-only",
"changeset:publish": "npm run build && changeset publish"
},
"dependencies": {
"@polkadot/api": "^12.4.2",
"@polkadot/api-augment": "^12.4.2",
"@polkadot/apps-config": "^0.143.2",
"@polkadot/types": "^12.4.2",
"@polkadot/util": "^13.1.1",
"@polkadot/util-crypto": "^13.1.1",
"viem": "^2.20.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.9",
"@slack/webhook": "^7.0.3",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"bun": "^1.1.31",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-prettier": "^5.2.1",
"ethers": "^6.13.4",
"glob": "^11.0.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"tsup": "^8.3.0",
"turbo": "^2.1.3",
"typescript": "^5.6.3",
"vitest": "^2.1.3"
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix --max-warnings=0",
"*.{json,md}": "prettier --write"
},
"overrides": {
"cross-spawn": "^7.0.5"
}
}