@coach-chuck/solana-helpers
Version:
A collection of helper functions to make frontend dev for solana easier
47 lines (46 loc) • 1.32 kB
JSON
{
"name": "@coach-chuck/solana-helpers",
"version": "0.0.6",
"description": "A collection of helper functions to make frontend dev for solana easier",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "ts-node src/__tests__/test.ts",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"sendit": "npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CoachChuckFF/solana-helpers.git"
},
"keywords": [
"Solana",
"Metaplex",
"SPL"
],
"author": "Coach Chuck",
"license": "ISC",
"bugs": {
"url": "https://github.com/CoachChuckFF/solana-helpers/issues"
},
"homepage": "https://github.com/CoachChuckFF/solana-helpers#readme",
"dependencies": {
"@metaplex/js": "^4.12.0",
"@project-serum/anchor": "^0.24.2",
"@solana/spl-token": "^0.2.0"
},
"devDependencies": {
"prettier": "^2.6.1",
"ts-node": "^10.7.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.6.3"
}
}