{ "name": "@solana/spl-token-lending", "version": "0.1.0", "description": "SPL Token Lending JavaScript API", "license": "MIT", "author": "Solana Maintainers ", "repository": { "type": "git", "url": "https://github.com/solana-labs/solana-program-library" }, "bugs": { "url": "https://github.com/solana-labs/solana-program-library/issues" }, "keywords": [], "publishConfig": { "access": "public" }, "main": "lib/index.cjs.js", "module": "lib/index.esm.js", "types": "lib/index.d.ts", "files": [ "lib" ], "testnetDefaultChannel": "edge", "scripts": { "build": "rollup -c rollup.config.ts", "build:program": "rm -f client/util/store/config.json; cargo build-bpf --manifest-path ../program/Cargo.toml", "start": "ts-node cli/main.ts", "lint": "eslint --ext .ts {cli,client}/* && prettier --check \"{cli,client}/**/*.ts\"", "lint:fix": "eslint --ext .ts {cli,client}/* --fix && prettier --write \"{cli,client}/**/*.ts\"", "cluster:localnet": "rm -f .env", "cluster:devnet": "cp cluster-devnet.env .env", "cluster:testnet": "cp cluster-testnet.env .env", "cluster:mainnet-beta": "cp cluster-mainnet-beta.env .env", "localnet:update": "solana-localnet update", "localnet:up": "rm -f client/util/store/config.json; set -x; solana-localnet down; set -e; solana-localnet up", "localnet:down": "solana-localnet down", "localnet:logs": "solana-localnet logs -f" }, "dependencies": { "@solana/web3.js": "^0.86.2" }, "devDependencies": { "@rollup/plugin-commonjs": "^16.0.0", "@tsconfig/recommended": "^1.0.1", "@types/eslint": "^7.2.4", "@types/eslint-plugin-prettier": "^3.1.0", "@types/mkdirp": "^1.0.1", "@types/mz": "^2.7.2", "@types/node": "^14.14.6", "@types/prettier": "^2.1.5", "@types/rollup-plugin-json": "^3.0.2", "@typescript-eslint/eslint-plugin": "^4.6.0", "@typescript-eslint/parser": "^4.6.0", "dotenv": "^8.2.0", "eslint": "^7.12.1", "eslint-config-prettier": "^6.14.0", "eslint-plugin-prettier": "^3.1.4", "prettier": "^2.1.2", "rollup": "^2.33.1", "rollup-plugin-json": "^4.0.0", "rollup-plugin-node-resolve": "^5.2.0", "rollup-plugin-sourcemaps": "^0.6.3", "rollup-plugin-typescript2": "^0.28.0", "ts-node": "^9.0.0", "typescript": "^4.0.5" }, "engines": { "node": ">= 10" } }