Files
solana-lending-program/package.json

25 lines
566 B
JSON
Raw Permalink Normal View History

2026-01-08 09:19:59 +00:00
{
"name": "solana-lending",
"version": "0.1.0",
"description": "Solana lending program built with Anchor",
"main": "index.js",
"scripts": {
"test": "anchor test",
"lint": "eslint --ext .ts tests/",
"build": "anchor build",
"deploy": "anchor deploy"
},
"dependencies": {
"@coral-xyz/anchor": "^0.32.1",
"@solana/web3.js": "^1.87.0"
},
"devDependencies": {
"@types/mocha": "^10.0.0",
"@types/node": "^20.0.0",
"eslint": "^8.0.0",
"mocha": "^10.0.0",
"ts-mocha": "^10.0.0",
"typescript": "^5.0.0"
}
}