UNPKG

@tribecahq/tribeca-sdk

Version:

The TypeScript SDK for Tribeca, an open standard and toolkit for launching DAOs on Solana.

104 lines 3.13 kB
{ "name": "@tribecahq/tribeca-sdk", "version": "0.5.8", "description": "The TypeScript SDK for Tribeca, an open standard and toolkit for launching DAOs on Solana.", "keywords": [ "solana", "tribeca", "governance" ], "exports": { ".": { "import": "./dist/esm/index.js", "require": "./dist/cjs/index.js" } }, "main": "dist/cjs/index.js", "module": "dist/esm/index.js", "repository": "git@github.com:TribecaHQ/tribeca.git", "author": "Tribeca Protocol <team@tribeca.so>", "bugs": { "url": "https://github.com/TribecaHQ/tribeca/issues", "email": "team@tribeca.so" }, "homepage": "https://tribeca.so", "license": "AGPL-3.0", "scripts": { "build": "rm -fr dist/ && tsc -P tsconfig.build.json && tsc -P tsconfig.esm.json", "clean": "rm -fr dist/", "idl:generate": "./scripts/parse-idls.sh && ./scripts/generate-idl-types.sh", "idl:generate:nolint": "./scripts/parse-idls.sh && RUN_ESLINT=none ./scripts/generate-idl-types.sh", "typecheck": "tsc", "lint": "eslint . --cache", "lint:ci": "eslint . --max-warnings=0", "test:e2e": "anchor test --skip-build 'tests/**/*.ts'", "docs:generate": "typedoc --excludePrivate --includeVersion --out site/ts/ src/index.ts", "prepare": "husky install" }, "devDependencies": { "@gokiprotocol/client": "^0.11.1", "@project-serum/anchor": "^0.24.2", "@rushstack/eslint-patch": "^1.1.3", "@saberhq/anchor-contrib": "^1.13.30", "@saberhq/chai-solana": "^1.13.30", "@saberhq/eslint-config": "^1.13.30", "@saberhq/solana-contrib": "^1.13.30", "@saberhq/token-utils": "^1.13.30", "@saberhq/tsconfig": "^1.13.30", "@solana/web3.js": "^1.44.2", "@types/bn.js": "^5.1.0", "@types/chai": "^4.3.1", "@types/eslint": "^8.4.3", "@types/lodash": "^4.14.182", "@types/mocha": "^9.1.1", "@types/node": "^16.11.41", "@types/prettier": "^2.6.3", "@yarnpkg/doctor": "^4.0.0-rc.6", "bn.js": "^5.2.1", "chai": "=4.3.4", "eslint": "^8.18.0", "eslint-import-resolver-node": "^0.3.6", "eslint-plugin-import": "^2.26.0", "husky": "^8.0.1", "jsbi": "^4.3.0", "lint-staged": "^13.0.2", "lodash": "^4.17.21", "mocha": "^10.0.0", "prettier": "^2.7.1", "ts-node": "^10.8.1", "typedoc": "^0.22.17", "typescript": "^4.7.4" }, "peerDependencies": { "@gokiprotocol/client": ">=0.11.0", "@project-serum/anchor": ">=0.24", "@saberhq/anchor-contrib": "^1.13", "@saberhq/solana-contrib": "^1.13", "@saberhq/token-utils": "^1.13", "@solana/web3.js": "^1.44", "bn.js": "^5.2.1" }, "resolutions": { "chai": "=4.3.4", "@solana/web3.js": "^1.44", "bn.js": "^5.2.1", "@types/bn.js": "^5.1.0" }, "publishConfig": { "access": "public" }, "files": [ "dist/", "src/" ], "lint-staged": { "*.{ts,tsx,cjs}": "eslint --cache --fix", "*.{js,json,jsx,html,css,md}": "prettier --write" }, "dependencies": { "superstruct": "^0.16.0", "tiny-invariant": "^1.2.0", "tslib": "^2.4.0" }, "packageManager": "yarn@3.2.1" }