This repository was archived by the owner on Apr 17, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.93 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 1.93 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@fastxyz/allset-sdk",
"version": "0.1.12",
"description": "AllSet SDK for AllSet bridge flows between Fast and EVM testnets",
"keywords": [
"allset",
"sdk",
"bridge",
"fast",
"blockchain"
],
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./core": {
"import": "./dist/core/index.js",
"types": "./dist/core/index.d.ts"
},
"./browser": {
"import": "./dist/browser/index.js",
"types": "./dist/browser/index.d.ts"
},
"./node": {
"import": "./dist/node/index.js",
"types": "./dist/node/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "npm run clean && tsc",
"clean": "rm -rf dist",
"test": "node --import tsx --test tests/*.test.ts",
"pack:dry-run": "node ./scripts/pack-dry-run.mjs",
"pack:smoke": "node ./scripts/pack-smoke.mjs",
"release:verify-tag": "node ./scripts/verify-tag-version.mjs",
"prepublishOnly": "npm run build && npm test"
},
"engines": {
"node": ">=20"
},
"author": "Fast.xyz",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastxyz/allset-sdk.git"
},
"bugs": {
"url": "https://github.com/fastxyz/allset-sdk/issues"
},
"homepage": "https://github.com/fastxyz/allset-sdk#readme",
"dependencies": {
"@mysten/bcs": "^2.0.2",
"@noble/ed25519": "^3.0.0",
"@noble/hashes": "^2.0.1",
"bech32": "^2.0.0",
"viem": "^2.46.2"
},
"peerDependencies": {
"@fastxyz/sdk": ">=0.2.4"
},
"peerDependenciesMeta": {
"@fastxyz/sdk": {
"optional": true
}
},
"devDependencies": {
"@fastxyz/sdk": "^0.2.5",
"@types/node": "^22.19.11",
"permissionless": "^0.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}