-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.84 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.84 KB
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
{
"name": "bmcp",
"version": "1.0.0",
"description": "Bitcoin Multichain Protocol - Cross-chain messaging from Bitcoin to EVM chains",
"private": true,
"workspaces": [
"packages/*"
],
"overrides": {
"glob": "^10.4.5",
"rimraf": "^5.0.10",
"inflight": "npm:@zkochan/inflight@^1.0.0",
"@humanwhocodes/config-array": "npm:@eslint/config-array@^0.19.0",
"@humanwhocodes/object-schema": "npm:@eslint/object-schema@^2.1.4"
},
"scripts": {
"test": "npm run test:bitcoin && npm run test:evm && npm run test:integration",
"test:bitcoin": "tsx tests/integration/bitcoin-encoder.test.ts",
"test:evm": "tsx tests/integration/evm-encoder.test.ts",
"test:integration": "tsx tests/integration/full-flow.test.ts",
"test:all": "npm test",
"build": "npm run build --workspaces",
"build:sdk": "npm run build --workspace=@bmcp/sdk",
"build:dashboard": "npm run build --workspace=@bmcp/dashboard",
"clean": "npm run clean --workspaces",
"dev:bitcoin-api": "cd packages/bitcoin-api && npm run dev",
"dev:relayer-api": "cd packages/relayer-api && npm run dev",
"example:bitcoin": "tsx examples/bitcoin-encoder-usage.ts",
"example:evm": "tsx examples/evm-encoder-usage.ts",
"example:api": "tsx examples/bitcoin-api-integration.ts",
"example:protocol": "tsx examples/protocol-detection.ts",
"example:scan-tx": "tsx examples/scan-bitcoin-tx.ts",
"example:monitor": "tsx examples/monitor-bitcoin-blocks.ts",
"example:decoder-flow": "tsx examples/bitcoin-api-decoder-flow.ts"
},
"keywords": [
"bitcoin",
"ethereum",
"cross-chain",
"ccip",
"op_return"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.10.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"dependencies": {
"dotenv": "^16.4.7",
"ethers": "^6.13.4"
}
}