77 lines
2.7 KiB
JSON
77 lines
2.7 KiB
JSON
{
|
|
"name": "@switchboard-xyz/switchboard-v2",
|
|
"version": "0.0.106",
|
|
"license": "MIT",
|
|
"author": "mitch@switchboard.xyz",
|
|
"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"
|
|
},
|
|
"homepage": "https://docs.switchboard.xyz",
|
|
"files": [
|
|
"lib",
|
|
"src"
|
|
],
|
|
"module": "./lib/esm/index.js",
|
|
"main": "./lib/cjs/index.js",
|
|
"types": "./lib/cjs/index.d.ts",
|
|
"scripts": {
|
|
"docgen": "yarn build && npx typedoc",
|
|
"build:protos": "pbjs -t static-module -o src/protos/index.js ../protos/*.proto && pbts -o src/protos/index.d.ts src/protos/index.js",
|
|
"build:cjs:protos": "shx mkdir -p lib/cjs/protos; pbjs -t static-module -w commonjs -o lib/cjs/protos/index.js ../protos/*.proto && pbts -o lib/cjs/protos/index.d.ts lib/cjs/protos/index.js",
|
|
"build:esm:protos": "shx mkdir -p lib/esm/protos; pbjs -t static-module -o lib/esm/protos/index.js ../protos/*.proto && pbts -o lib/esm/protos/index.d.ts lib/esm/protos/index.js",
|
|
"build:cjs": "shx rm -rf lib/cjs && tsc -p tsconfig.cjs.json && shx echo '{\"type\": \"commonjs\"}' > lib/cjs/package.json && yarn build:cjs:protos",
|
|
"build:esm": "shx rm -rf lib/esm && tsc -p tsconfig.esm.json && shx echo '{\"type\": \"module\"}' > lib/esm/package.json && yarn build:esm:protos",
|
|
"build": "shx rm -rf lib && yarn build:protos && yarn build:cjs && yarn build:esm && shx rm lib/*.tsbuildinfo",
|
|
"test": "mocha --extension ts --require ts-node/register -t 1000000 tests/",
|
|
"lint": "eslint --fix-dry-run --ext .ts src/**/*.ts",
|
|
"prepublish": "yarn build"
|
|
},
|
|
"peerDependencies": {
|
|
"@solana/spl-governance": "^0.0.34",
|
|
"@solana/spl-token": "^0.1.8",
|
|
"@solana/web3.js": "1.37.1"
|
|
},
|
|
"dependencies": {
|
|
"@project-serum/anchor": "^0.24.2",
|
|
"@solana/spl-governance": "^0.0.34",
|
|
"@switchboard-xyz/eslint-config": "^0.1.1",
|
|
"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",
|
|
"mocha": "^9.1.1",
|
|
"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",
|
|
"@types/node": "^17.0.35",
|
|
"npm-run-all": "^4.1.5",
|
|
"shx": "^0.3.4",
|
|
"typedoc": "^0.22.13",
|
|
"typescript": "^4.2.4"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": "@switchboard-xyz",
|
|
"rules": {
|
|
"no-return-await": "off",
|
|
"quotes": "off"
|
|
}
|
|
}
|
|
}
|