-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.71 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.71 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
55
56
57
58
59
60
61
62
{
"name": "bridge-sdk",
"version": "0.1.0",
"description": "Composable cross-chain bridge SDK for Base Bridge integrations.",
"type": "module",
"module": "./dist/index.js",
"main": "./dist/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/index.js"
},
"./chains": {
"types": "./dist/types/chains/index.d.ts",
"import": "./dist/chains/index.js"
},
"./node": {
"types": "./dist/types/node/index.d.ts",
"import": "./dist/node/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"clean": "rm -rf dist",
"build": "bun run clean && bun run types && bun build ./src/index.ts --outdir dist --target browser --format esm --external bun && bun build ./src/chains/index.ts --outdir dist/chains --target browser --format esm --external bun && bun build ./src/node/index.ts --outdir dist/node --target node --format esm --external bun",
"types": "tsc -p tsconfig.build.json",
"test": "bun test",
"typecheck": "tsc --noEmit",
"dev": "bun --hot ./index.ts",
"lint": "biome lint --write .",
"lint:check": "biome lint .",
"format": "biome format --write .",
"format:check": "biome format .",
"check": "biome check --write .",
"check:ci": "biome check ."
},
"keywords": [
"bridge",
"sdk",
"base",
"cross-chain",
"defi"
],
"author": "Base",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "2.3.15",
"@types/bun": "1.3.2",
"typescript": "5.9.3"
},
"peerDependencies": {
"typescript": "5.9.3"
},
"dependencies": {
"@solana-program/token": "0.9.0",
"@solana/kit": "5.0.0",
"viem": "2.39.2"
}
}