sbv2-solana/javascript/solana.js/package.json

76 lines
2.1 KiB
JSON
Raw Normal View History

2022-05-17 09:42:04 -07:00
{
"name": "@switchboard-xyz/switchboard-v2",
2022-11-15 10:45:06 -08:00
"version": "0.0.159",
"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",
2022-09-28 13:37:22 -07:00
"directory": "javascript/solana.js"
2022-05-17 09:42:04 -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",
"package.json"
2022-05-17 09:42:04 -07:00
],
2022-06-21 02:41:52 -07:00
"exports": {
".": {
"import": "./lib/esm/index.js",
"require": "./lib/cjs/index.js"
},
"./package.json": "./package.json"
2022-06-21 02:41:52 -07:00
},
2022-06-16 09:48:26 -07:00
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"types": "lib/cjs/index.d.ts",
2022-05-17 09:42:04 -07:00
"scripts": {
"docgen": "typedoc --entryPoints src/index.ts --out ../../website/static/api/ts",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc",
"build": "yarn build:cjs && yarn build:esm",
"watch": "tsc -p tsconfig.cjs.json --watch",
2022-08-10 11:23:38 -07:00
"test": "ts-mocha -p ./tsconfig.cjs.json --require ts-node/register -t 1000000 ./tests/*.tests.ts",
"lint": "eslint --fix-dry-run --ext .ts src/**/*.ts",
2022-11-03 09:43:20 -07:00
"prepublishOnly": "shx rm -rf lib && yarn build"
2022-05-17 09:42:04 -07:00
},
"peerDependencies": {
"@solana/spl-governance": "^0.0.34",
2022-06-27 21:56:47 -07:00
"@solana/web3.js": "^1.44.3"
2022-05-17 09:42:04 -07:00
},
"dependencies": {
2022-11-15 10:45:06 -08:00
"@project-serum/anchor": "^0.25.0",
2022-05-17 09:42:04 -07:00
"@solana/spl-governance": "^0.0.34",
2022-08-03 14:36:38 -07:00
"@solana/spl-token-v2": "npm:@solana/spl-token@^0.2.0",
2022-11-12 11:06:38 -08:00
"@solana/web3.js": "^1.66.2",
2022-11-03 09:43:20 -07:00
"@switchboard-xyz/common": "^2.1.3",
2022-05-17 09:42:04 -07:00
"assert": "^2.0.0",
2022-10-18 23:20:31 -07:00
"big.js": "^6.2.1",
2022-07-29 09:16:22 -07:00
"bs58": "^5.0.0",
2022-05-17 09:42:04 -07:00
"chan": "^0.6.1",
"crypto-js": "^4.0.0",
2022-06-27 21:56:47 -07:00
"glob": "^8.0.3",
"lodash": "^4.17.21",
2022-05-17 09:42:04 -07:00
"long": "^4.0.0",
"mocha": "^9.1.1",
"node-fetch": "^3.2.6"
2022-05-17 09:42:04 -07:00
},
"devDependencies": {
2022-10-18 23:20:31 -07:00
"@types/big.js": "^6.1.6",
2022-05-17 09:42:04 -07:00
"@types/long": "^4.0.1",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.45",
2022-05-17 09:42:04 -07:00
"shx": "^0.3.4",
2022-08-10 11:23:38 -07:00
"ts-mocha": "^9.0.2",
"typedoc": "^0.23.8",
2022-06-16 09:48:26 -07:00
"typescript": "^4.7"
2022-09-20 17:50:09 -07:00
},
"gitHead": "9ee13d31a3577767061bd90f57fe4629b9a89e1a"
2022-05-17 09:42:04 -07:00
}