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

39 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/main",
"build": "rimraf dist && ./esbuild.js -inline-sourcemap",
"test": "echo \"No test script for @switchboard-xyz/v2-feed-walkthrough\" && exit 0"
},
"dependencies": {
"@project-serum/anchor": "^0.25.0",
"@solana/spl-token-v2": "npm:@solana/spl-token@^0.2.0",
"@solana/web3.js": "^1.67.2",
"@switchboard-xyz/common": "^2.1.7",
"@switchboard-xyz/solana.js": "file:../solana.js",
"chalk": "^4.1.2",
"dotenv": "^16.0.1",
"readline-sync": "^1.4.10"
},
"devDependencies": {
"@types/node": "^18.7.18",
"@types/readline-sync": "^1.4.4",
"esbuild-node-externals": "^1.4.1",
"estrella": "^1.4.1",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
}
}