Files
albatross-sdk/package.json
T
2026-07-23 13:41:20 +00:00

44 lines
1014 B
JSON

{
"name": "@usealbatross/sdk",
"version": "0.2.0",
"description": "Official SDK for Albatross, the privacy protocol on Solana. Private bridging and unlinkable Ghost Links in a few lines of code.",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": ["dist", "README.md"],
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts --clean --minify"
},
"keywords": [
"albatross",
"solana",
"privacy",
"bridge",
"sdk",
"crypto",
"web3"
],
"author": "Albatross",
"license": "MIT",
"homepage": "https://albatrossprotocol.com",
"repository": {
"type": "git",
"url": "https://github.com/usealbatross/sdk"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"tsup": "^8.3.0",
"typescript": "^5.6.0"
}
}