diff --git a/dist/package.json b/dist/package.json new file mode 100644 index 0000000..f0a8681 --- /dev/null +++ b/dist/package.json @@ -0,0 +1,42 @@ +{ + "name": "@microwavedcola/voter-stake-registry-client", + "version": "0.1.3", + "description": "Client for Voter-stake-registry which is a voter weight addin for Solana's spl-governance program.", + "main": "lib/src/index.js", + "types": "lib/src/index.d.ts", + "repository": "https://github.com/blockworks-foundation/voter-stake-registry-client", + "scripts": { + "build": "tsc", + "postinstall": "tsc", + "clean": "rm -rf lib", + "prepare": "yarn clean && yarn build", + "type-check": "tsc --pretty --noEmit", + "format": "prettier --check .", + "lint": "eslint . --ext ts --ext tsx --ext js --quiet" + }, + "author": { + "name": "Blockworks Foundation", + "email": "hello@blockworks.foundation", + "url": "https://blockworks.foundation" + }, + "devDependencies": { + "@tsconfig/recommended": "^1.0.1", + "@typescript-eslint/eslint-plugin": "^4.14.2", + "@typescript-eslint/parser": "^4.14.2", + "eslint": "^7.28.0", + "eslint-config-prettier": "^7.2.0", + "prettier": "^2.0.5", + "ts-node": "^9.1.1", + "typedoc": "^0.22.5", + "typescript": "^4.1.3" + }, + "prettier": { + "singleQuote": true, + "trailingComma": "all" + }, + "dependencies": { + "@project-serum/anchor": "^0.18.0", + "@project-serum/serum": "^0.13.61" + }, + "license": "MIT" +}