payment-program 0.1.7

Schedule one-time and recurring token transfers on Solana
Documentation
{
  "name": "@faktorfi/payment-program-worker",
  "description": "Faktor payment program worker node",
  "version": "0.1.0",
  "license": "ISC",
  "homepage": "https://github.com/faktorfi/faktor",
  "bugs": "https://github.com/faktorfi/faktor/issues",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist",
    "src"
  ],
  "author": "Faktor",
  "scripts": {
    "build": "yarn clean && yarn tsc",
    "clean": "rimraf --no-glob ./dist ./tsconfig.tsbuildinfo",
    "dev": "npx kill-port 8888 && ANCHOR_WALLET=./keypair.json NODE_ENV=development ts-node src/index.ts",
    "keypair": "solana-keygen new -o ./keypair.json",
    "start": "tsc -p tsconfig.json && NODE_ENV=production node dist/index.js",
    "init-prog": "ANCHOR_WALLET=./keypair.json ts-node src/initialize-payment-program.ts"
  },
  "dependencies": {
    "@faktorfi/payment-program": "workspace:^",
    "@project-serum/anchor": "^0.19.0",
    "@solana/spl-token": "^0.1.8",
    "@solana/web3.js": "^1.29.2",
    "cors": "^2.8.5",
    "dotenv": "^10.0.0",
    "express": "^4.17.1",
    "node-cron": "^3.0.0"
  },
  "devDependencies": {
    "@types/cors": "^2.8.12",
    "@types/express": "^4.17.13",
    "@types/jest": "^27.0.2",
    "@types/node": "^16.11.1",
    "@types/node-cron": "^3.0.0",
    "@typescript-eslint/eslint-plugin": "^5.1.0",
    "@typescript-eslint/parser": "^5.1.0",
    "eslint": "^8.0.1",
    "eslint-plugin-prettier": "^4.0.0",
    "jest": "^27.3.1",
    "prettier": "^2.4.1",
    "rimraf": "^3.0.2",
    "typescript": "^4.4.4"
  }
}