UNPKG

@maestro-org/typescript-sdk

Version:

TypeScript SDK for the Maestro Dapp Platform

54 lines (52 loc) 1.67 kB
{ "name": "@maestro-org/typescript-sdk", "version": "1.6.1", "description": "TypeScript SDK for the Maestro Dapp Platform", "main": "dist/index.js", "module": "dist/index.mjs", "types": "dist/index.d.ts", "scripts": { "build": "tsup src/index.ts --format cjs,esm --dts", "release": "pnpm run build && changeset publish", "lint": "yarn prettier 'src/**/*.ts' --write && yarn eslint 'src/**/*.ts' --fix", "test": "pnpm test", "clean": "rm -rf dist && rm -rf node_modules && rm -f package-lock.json", "prepare": "husky install" }, "keywords": [ "typescript", "blockchain", "cryptocurrency", "maestro", "cardano" ], "author": "gomaestro.org", "license": "Apache-2.0", "devDependencies": { "@changesets/cli": "^2.26.2", "@commitlint/cli": "^17.4.3", "@commitlint/config-conventional": "^17.4.3", "@typescript-eslint/eslint-plugin": "^5.59.1", "@typescript-eslint/parser": "^5.59.1", "commitlint": "^17.4.3", "eslint": "^8.39.0", "eslint-config-airbnb-base": "^15.0.0", "eslint-config-prettier": "^8.8.0", "eslint-import-resolver-typescript": "^3.6.0", "eslint-plugin-import": "^2.27.5", "eslint-plugin-prettier": "^4.2.1", "husky": "^8.0.3", "prettier": "^2.8.8", "tsup": "^7.2.0", "typescript": "^5.2.2" }, "dependencies": { "axios": "^1.6.1" }, "lint-staged": { "src/**/*.{js,ts,},": [ "yarn prettier --write", "yarn eslint --fix" ] } }