forked from Near-One/bridge-sdk-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.65 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.65 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
{
"name": "omni-bridge-sdk",
"version": "0.24.1",
"private": true,
"description": "SDK for Omni bridge transfers",
"type": "module",
"packageManager": "bun@1.3.5",
"workspaces": ["packages/*"],
"scripts": {
"build": "tsc --build",
"clean": "tsc --build --clean && rm -rf packages/*/dist",
"test": "vitest",
"lint": "biome check --write .",
"typecheck": "tsc --build",
"prepublishOnly": "bun run build",
"lefthook": "lefthook install",
"check-exports": "bun run --filter '*' check-exports",
"ci:version": "changeset version && bun update",
"ci:publish": "bun run build && for dir in packages/*; do (cd \"$dir\" && PKG_NAME=$(jq -r .name package.json) && PKG_VERSION=$(jq -r .version package.json) && if npm view \"$PKG_NAME@$PKG_VERSION\" version 2>/dev/null; then echo \"$PKG_NAME@$PKG_VERSION already published, skipping\"; else bun pm pack && npm publish *.tgz --access public && rm *.tgz; fi); done && changeset tag",
"release": "bun run ci:publish",
"knip": "knip",
"example:bitcoin-deposit": "bun run examples/bitcoin-deposit.ts",
"example:bitcoin-withdraw": "bun run examples/bitcoin-withdraw.ts"
},
"keywords": [
"blockchain",
"bridge",
"ethereum",
"near",
"solana",
"bitcoin"
],
"author": "NEAR One",
"license": "MIT",
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@biomejs/biome": "^2.3.13",
"@changesets/cli": "^2.29.8",
"@types/bun": "^1.3.8",
"@types/node": "^25.2.0",
"@vitest/coverage-v8": "^4.0.18",
"knip": "^5.83.0",
"lefthook": "^2.1.0",
"msw": "^2.12.7",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}