@meteora-ag/met-lock-sdk
Version:
A Typescript SDK for interacting with the Lock Program on Meteora.
52 lines • 1.21 kB
JSON
{
"name": "@meteora-ag/met-lock-sdk",
"version": "1.0.1",
"main": "dist/index.cjs",
"module": "dist/index.js",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"author": "Dann Wee <dann@raccoons.dev>",
"keywords": [
"meteora-ag",
"lock",
"met-lock"
],
"files": [
"dist"
],
"description": "A Typescript SDK for interacting with the Lock Program on Meteora.",
"license": "MIT",
"type": "module",
"scripts": {
"build": "rm -rf dist && tsup src/index.ts --format esm,cjs --dts",
"clean": "rm -rf node_modules dist",
"test": "bun test"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"devDependencies": {
"@types/bn.js": "^5.1.6",
"@types/bun": "latest",
"@types/chai": "^5.2.2",
"chai": "^5.2.0",
"eslint": "^9.24.0",
"solana-bankrun": "^0.4.0",
"tsup": "^8.4.0",
"tsx": "^4.19.3"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@coral-xyz/anchor": "^0.31.0",
"@solana/spl-token": "^0.4.13",
"@solana/web3.js": "^1.98.0",
"bn.js": "^5.2.1",
"decimal.js": "^10.5.0"
}
}