dev3-sdk
Version:
SDK for interacting with the 0xDev3 platform.
54 lines (53 loc) • 1.66 kB
JSON
{
"name": "dev3-sdk",
"version": "1.0.1",
"description": "SDK for interacting with the 0xDev3 platform.",
"main": "dist/node/index.js",
"module": "dist/node/index.js",
"browser": "dist/browser/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix",
"prettier-format": "prettier 'src/**/*.ts' --write",
"build": "rm -rf ./dist && tsup && tsc",
"test": "env TS_NODE_PROJECT=\"tsconfig.testing.json\" mocha --require ts-node/register ./test/sdk.test.ts",
"test-app": "parcel test/web-app/index.html"
},
"keywords": [
"dev3",
"typescript",
"dapp builder",
"api",
"sdk"
],
"author": "Dev3",
"license": "ISC",
"devDependencies": {
"@esbuild-plugins/node-modules-polyfill": "^0.1.4",
"@types/chai": "^4.3.3",
"@types/mocha": "^9.1.1",
"@typescript-eslint/eslint-plugin": "^5.45.1",
"@typescript-eslint/parser": "^5.36.1",
"chai": "^4.3.6",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.0.0",
"node-stdlib-browser": "^1.2.0",
"parcel-bundler": "^1.12.5",
"prettier": "^2.8.0",
"ts-node": "^10.9.1",
"tsup": "^6.2.3",
"typescript": "^4.8.2"
},
"dependencies": {
"@ethersproject/bignumber": "^5.7.0",
"axios": "^0.27.2",
"polycode-chainlink-feeds": "^1.0.9",
"dkg.js": "^6.0.16"
}
}