package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "@magicblock-labs/bolt-sdk",
  3. "version": "0.1.4",
  4. "description": "Bolt typescript SDK",
  5. "author": "dev@magicblock.gg",
  6. "license": "MIT",
  7. "private": false,
  8. "dependencies": {
  9. "@metaplex-foundation/beet": "^0.7.1",
  10. "@metaplex-foundation/beet-solana": "^0.4.0"
  11. },
  12. "devDependencies": {
  13. "@metaplex-foundation/solita": "^0.20.1",
  14. "@typescript-eslint/eslint-plugin": "^6.14.0",
  15. "@typescript-eslint/parser": "^6.14.0",
  16. "eslint": "^8.55.0",
  17. "eslint-config-prettier": "^9.1.0",
  18. "eslint-config-standard-with-typescript": "^42.0.0",
  19. "eslint-plugin-import": "^2.29.0",
  20. "eslint-plugin-react": "^7.33.2",
  21. "prettier": "^3.1.1",
  22. "rimraf": "^5.0.5",
  23. "typedoc": "^0.25.4",
  24. "typedoc-plugin-markdown": "^3.17.1",
  25. "typescript": "^4.5.5"
  26. },
  27. "publishConfig": {
  28. "access": "public",
  29. "registry": "https://registry.npmjs.org/"
  30. },
  31. "repository": {
  32. "type": "git",
  33. "url": "https://github.com/magicblock-labs/bolt",
  34. "directory": "clients/bolt-sdk"
  35. },
  36. "main": "lib/index.js",
  37. "scripts": {
  38. "clean": "rimraf lib",
  39. "build": "npm run clean && tsc && npm run lint:fix",
  40. "build:docs": "typedoc && typedoc --plugin typedoc-plugin-markdown --out docs-mk",
  41. "dev": "tsc --watch",
  42. "start": "tsc",
  43. "lint": "eslint -c ../../.eslintrc.yml --ext .ts,.tsx src",
  44. "lint:fix": "eslint -c ../../.eslintrc.yml --ext .ts,.tsx src --fix"
  45. },
  46. "files": [
  47. "lib"
  48. ]
  49. }