solana-program-library/token-lending/js/package.json

72 lines
2.4 KiB
JSON
Raw Normal View History

{
"name": "@solana/spl-token-lending",
"version": "0.1.0",
"description": "SPL Token Lending JavaScript API",
"license": "MIT",
"author": "Solana Maintainers <maintainers@solana.foundation>",
"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 client/util/store/config.json; ../../do.sh build token-lending",
"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 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.78.4"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^15.1.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.1",
"@types/node": "^14.11.8",
"@types/prettier": "^2.1.1",
"@types/rollup-plugin-json": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"dotenv": "^8.2.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.1.2",
"rollup": "^2.28.2",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.6.2",
"rollup-plugin-typescript2": "^0.27.3",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"engines": {
"node": ">= 10"
}
}