2022-05-17 09:42:04 -07:00
|
|
|
{
|
|
|
|
"name": "@switchboard-xyz/switchboard-v2",
|
2022-05-26 16:48:28 -07:00
|
|
|
"version": "0.0.102",
|
2022-05-25 11:38:29 -07:00
|
|
|
"license": "MIT",
|
|
|
|
"author": "mitch@switchboard.xyz",
|
2022-05-17 09:42:04 -07:00
|
|
|
"description": "API wrapper for intergating with the Switchboardv2 program",
|
|
|
|
"keywords": [
|
|
|
|
"oracle",
|
|
|
|
"solana",
|
|
|
|
"Defi"
|
|
|
|
],
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/switchboard-xyz/switchboard-v2",
|
|
|
|
"directory": "libraries/ts"
|
|
|
|
},
|
2022-05-25 11:38:29 -07:00
|
|
|
"homepage": "https://docs.switchboard.xyz",
|
2022-05-17 09:42:04 -07:00
|
|
|
"files": [
|
2022-05-25 14:07:24 -07:00
|
|
|
"lib",
|
|
|
|
"src"
|
2022-05-17 09:42:04 -07:00
|
|
|
],
|
|
|
|
"main": "lib/cjs/index.js",
|
2022-05-25 11:38:29 -07:00
|
|
|
"module": "lib/esm/index.js",
|
|
|
|
"exports": {
|
|
|
|
".": {
|
|
|
|
"require": "./lib/cjs/index.js",
|
|
|
|
"import": "./lib/esm/index.js"
|
|
|
|
}
|
|
|
|
},
|
2022-05-17 09:42:04 -07:00
|
|
|
"scripts": {
|
|
|
|
"docgen": "yarn build && npx typedoc",
|
2022-05-25 11:38:29 -07:00
|
|
|
"build:cjs": "shx rm -rf lib/cjs && tsc -p tsconfig.cjs.json && shx echo '{\"type\": \"commonjs\"}' > lib/cjs/package.json",
|
|
|
|
"build:esm": "shx rm -rf lib/esm && tsc -p tsconfig.esm.json && shx echo '{\"type\": \"module\"}' > lib/esm/package.json",
|
2022-05-25 14:14:48 -07:00
|
|
|
"build": "shx rm -rf lib && yarn build:cjs && yarn build:esm && shx rm lib/*.tsbuildinfo",
|
2022-05-17 09:42:04 -07:00
|
|
|
"test": "mocha --extension ts --require ts-node/register -t 1000000 tests/",
|
2022-05-26 16:48:28 -07:00
|
|
|
"prepublish": "yarn build"
|
2022-05-17 09:42:04 -07:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
|
|
|
"@solana/spl-governance": "^0.0.34",
|
|
|
|
"@solana/spl-token": "^0.1.8",
|
|
|
|
"@solana/web3.js": "1.37.1",
|
2022-05-25 11:38:29 -07:00
|
|
|
"@switchboard-xyz/switchboard-api": "^0.2.200"
|
2022-05-17 09:42:04 -07:00
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"@project-serum/anchor": "^0.24.2",
|
|
|
|
"@solana/spl-governance": "^0.0.34",
|
2022-05-25 11:38:29 -07:00
|
|
|
"@switchboard-xyz/switchboard-api": "^0.2.200",
|
2022-05-17 09:42:04 -07:00
|
|
|
"assert": "^2.0.0",
|
|
|
|
"big.js": "^6.1.1",
|
|
|
|
"bs58": "^4.0.1",
|
|
|
|
"buffer-layout": "^1.2.0",
|
|
|
|
"chalk": "^4.1.2",
|
|
|
|
"chan": "^0.6.1",
|
|
|
|
"crypto-js": "^4.0.0",
|
|
|
|
"dotenv": "^16.0.0",
|
|
|
|
"long": "^4.0.0",
|
2022-05-26 16:50:04 -07:00
|
|
|
"mocha": "^9.1.1",
|
2022-05-17 09:42:04 -07:00
|
|
|
"node-fetch": "^3.2.3",
|
|
|
|
"protobufjs": "^6.10.2"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@types/big.js": "^6.0.2",
|
|
|
|
"@types/long": "^4.0.1",
|
|
|
|
"@types/mocha": "^9.0.0",
|
|
|
|
"npm-run-all": "^4.1.5",
|
|
|
|
"shx": "^0.3.4",
|
|
|
|
"typedoc": "^0.22.13",
|
|
|
|
"typescript": "^4.2.4"
|
|
|
|
}
|
|
|
|
}
|