sbv2-solana/javascript/feed-walkthrough/package.json

44 lines
1.2 KiB
JSON

{
"name": "@switchboard-xyz/v2-feed-walkthrough",
"version": "1.0.0",
"description": "switchboard v2 example demonstrating how to create a private queue, oracle, and data feed",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/switchboard-xyz/sbv2-solana",
"directory": "javascript/feed-walkthrough"
},
"homepage": "https://docs.switchboard.xyz",
"main": "dist/main.js",
"scripts": {
"start": "ts-node src/private-queue",
"start:devnet": "ts-node src/devnet",
"start:simulate": "ts-node src/simulate",
"lint": "gts lint ./src",
"fix": "gts fix ./src"
},
"dependencies": {
"@solana/web3.js": "^1.73.3",
"@switchboard-xyz/common": "^2.2.0",
"@switchboard-xyz/oracle": "^2.1.13",
"@switchboard-xyz/solana.js": "file:../solana.js",
"chalk": "^4.1.2",
"dotenv": "^16.0.1",
"readline-sync": "^1.4.10"
},
"devDependencies": {
"@switchboard-xyz/eslint-config": "latest",
"@types/node": "^18.7.18",
"@types/readline-sync": "^1.4.4",
"gts": "^3.1.1",
"shelljs": "^0.8.5",
"shx": "^0.3.4",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"engines": {
"node": ">=12.0.0"
}
}