package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "@magicblock-labs/bolt-sdk",
  3. "version": "0.0.1",
  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. },
  26. "publishConfig": {
  27. "access": "public",
  28. "registry": "https://registry.npmjs.org/"
  29. },
  30. "repository": {
  31. "type": "git",
  32. "url": "https://github.com/magicblock-labs/bolt",
  33. "directory": "clients/bolt-sdk"
  34. },
  35. "main": "lib/index.js",
  36. "scripts": {
  37. "clean": "rimraf lib",
  38. "build": "npm run clean && tsc && npm run lint:fix",
  39. "build:docs": "typedoc && typedoc --plugin typedoc-plugin-markdown --out docs-mk",
  40. "dev": "tsc --watch",
  41. "start": "tsc",
  42. "lint": "eslint -c ../../.eslintrc.yml --ext .ts,.tsx src",
  43. "lint:fix": "eslint -c ../../.eslintrc.yml --ext .ts,.tsx src --fix"
  44. },
  45. "files": [
  46. "lib"
  47. ]
  48. }