@heliofi/solana-adapter-v1
Version:
API to interact with Helio Finances program on Solana.
90 lines (89 loc) • 2.13 kB
JSON
{
"name": "@heliofi/solana-adapter-v1",
"version": "0.0.4-test",
"description": "API to interact with Helio Finances program on Solana.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"watch": "yarn build -w",
"lint": "eslint .",
"lint:fix": "yarn lint --fix",
"test": "yarn run ts-mocha -t 1000000 test/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/heliofi/heliopay.git"
},
"keywords": [
"solana",
"crypto",
"stream",
"payments",
"spl",
"anchor",
"aws"
],
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/heliofi/heliopay/issues"
},
"homepage": "https://github.com/heliofi/heliopay",
"dependencies": {
"@project-serum/anchor": "^0.25.0",
"@solana/spl-token": "^0.2.0",
"@solana/wallet-adapter-react": "^0.15.20",
"@solana/web3.js": "^1.66.2",
"bs58": "^5.0.0",
"jsonwebtoken": "^8.5.1",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@heliofi/eslint-config-helio": "^0.0.4",
"@types/chai": "^4.3.0",
"@types/jsonwebtoken": "^8.5.8",
"@types/mocha": "^9.1.0",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"chai": "^4.3.6",
"eslint": "^8.13.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.1.4",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^9.2.0",
"prettier": "^2.5.1",
"ts-mocha": "^9.0.2",
"typescript": "^4.5.5"
},
"files": [
"*.js",
"/**/*.js",
"/*.d.ts",
"/**/*.d.ts"
],
"eslintConfig": {
"plugins": [
"prettier",
"jest"
],
"rules": {
"prettier/prettier": "error"
},
"extends": [
"@heliofi/eslint-config-helio",
"prettier"
],
"parserOptions": {
"project": "./tsconfig.json"
}
},
"prettier": {
"singleQuote": true
}
}