-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 3.23 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@zktx.io/wormhole-kit-monorepo",
"description": "A suite of utilities used to implement bridges based on the Wormhole protocol.",
"private": true,
"scripts": {
"format": "npm run format:core && npm run format:kit && npm run format:sui && npm run format:aptos && npm run format:solana && npm run format:celo",
"lint": "npm run lint:core && npm run lint:kit && npm run lint:sui && npm run lint:aptos && npm run lint:solana && npm run lint:celo",
"build": "npm run build:core && npm run build:kit",
"build:core": "cd ./packages/wormhole-kit-core && npm run build",
"format:core": "cd ./packages/wormhole-kit-core && npm run format",
"lint:core": "cd ./packages/wormhole-kit-core && npm run lint",
"build:kit": "cd ./packages/wormhole-kit && npm run build",
"format:kit": "cd ./packages/wormhole-kit && npm run format",
"lint:kit": "cd ./packages/wormhole-kit && npm run lint",
"start:sui": "cd ./packages/demo-sui && npm run start",
"format:sui": "cd ./packages/demo-sui && npm run format",
"lint:sui": "cd ./packages/demo-sui && npm run lint",
"start:celo": "cd ./packages/demo-celo && npm run start",
"format:celo": "cd ./packages/demo-celo && npm run format",
"lint:celo": "cd ./packages/demo-celo && npm run lint",
"start:solana": "cd ./packages/demo-solana && npm run start",
"format:solana": "cd ./packages/demo-solana && npm run format",
"lint:solana": "cd ./packages/demo-solana && npm run lint",
"start:aptos": "cd ./packages/demo-aptos && npm run start",
"format:aptos": "cd ./packages/demo-aptos && npm run format",
"lint:aptos": "cd ./packages/demo-aptos && npm run lint",
"version:patch": "lerna version patch",
"prepare": "husky install"
},
"keywords": [
"wormhole",
"bridge",
"acala",
"algorand",
"aptos",
"arbitrum",
"aurora",
"avalanche",
"base goerli",
"binance smart chain",
"celo",
"ethereum (goerli)",
"ethereum (sepolia)",
"fantom",
"injective",
"karura",
"klaytn",
"moonbeam",
"near",
"neon",
"oasis",
"optimism (goerli)",
"polygon",
"sei",
"solana",
"sui",
"xpla",
"evm"
],
"repository": {
"type": "git",
"url": "git+https://github.com/zktx-io/wormhole-kit-monorepo.git"
},
"author": "daoauth",
"license": "ISC",
"bugs": {
"url": "https://github.com/zktx-io/wormhole-kit-monorepo/issues"
},
"homepage": "https://zktx.io",
"workspaces": [
"packages/wormhole-kit-core",
"packages/wormhole-kit",
"packages/demo-sui",
"packages/demo-aptos",
"packages/demo-solana",
"packages/demo-celo"
],
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"eslint": "^8.57.0",
"eslint-config-react-app": "^7.0.1",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-no-null": "^1.0.2",
"husky": "^8.0.0",
"lerna": "^8.1.8",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5"
},
"husky": {
"hooks": {
"pre-commit": "npm run format"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --cache --fix",
"prettier --cache --write"
]
}
}