delegate-framework
Version:
A TypeScript framework for building robust, production-ready blockchain workflows with comprehensive error handling, logging, and testing. Maintained by delegate.fun
72 lines • 1.93 kB
JSON
{
"name": "delegate-framework",
"version": "1.0.28",
"description": "A TypeScript framework for building robust, production-ready blockchain workflows with comprehensive error handling, logging, and testing. Maintained by delegate.fun",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"keywords": [
"typescript",
"solana",
"blockchain",
"rpc",
"helius",
"spl",
"error-handling",
"logging",
"testing",
"framework"
],
"author": "Sefi",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.8",
"@types/node": "^20.8.10",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.53.0",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/delegatedotfun/delegate-framework.git"
},
"bugs": {
"url": "https://github.com/delegatedotfun/delegate-framework/issues"
},
"homepage": "https://github.com/delegatedotfun/delegate-framework#readme",
"dependencies": {
"@bundlr-network/client": "^0.11.17",
"@irys/upload": "^0.0.15",
"@irys/upload-solana": "^0.1.8",
"@jup-ag/api": "^6.0.42",
"@raydium-io/raydium-sdk-v2": "0.1.139-alpha",
"@solana/spl-token": "^0.4.13",
"@solana/web3.js": "^1.98.2",
"@types/bignumber.js": "^5.0.4",
"bignumber.js": "^9.3.0",
"bn.js": "^5.2.2",
"bs58": "^6.0.0"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "rimraf dist",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"type-check": "tsc --noEmit"
}
}