package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "@magicblock-labs/bolt-sdk",
  3. "version": "0.1.9",
  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. "@magicblock-labs/ephemeral-rollups-sdk": "0.0.6"
  12. },
  13. "devDependencies": {
  14. "@metaplex-foundation/solita": "^0.20.1",
  15. "@typescript-eslint/eslint-plugin": "^6.14.0",
  16. "@typescript-eslint/parser": "^6.14.0",
  17. "eslint": "^8.55.0",
  18. "eslint-config-prettier": "^9.1.0",
  19. "eslint-config-standard-with-typescript": "^42.0.0",
  20. "eslint-plugin-import": "^2.29.0",
  21. "eslint-plugin-react": "^7.33.2",
  22. "prettier": "^3.1.1",
  23. "rimraf": "^5.0.5",
  24. "typedoc": "^0.25.4",
  25. "typedoc-plugin-markdown": "^3.17.1",
  26. "typescript": "^4.5.5"
  27. },
  28. "publishConfig": {
  29. "access": "public",
  30. "registry": "https://registry.npmjs.org/"
  31. },
  32. "repository": {
  33. "type": "git",
  34. "url": "https://github.com/magicblock-labs/bolt",
  35. "directory": "clients/bolt-sdk"
  36. },
  37. "main": "lib/index.js",
  38. "scripts": {
  39. "clean": "rimraf lib",
  40. "build": "cp ../../target/types/world.ts src/generated/types/world.ts && cp ../../target/idl/world.json src/generated/idl/world.json && npm run clean && tsc && npm run lint:fix",
  41. "build:docs": "typedoc && typedoc --plugin typedoc-plugin-markdown --out docs-mk",
  42. "dev": "tsc --watch",
  43. "start": "tsc",
  44. "lint": "eslint -c ../../.eslintrc.yml --ext .ts,.tsx src",
  45. "lint:fix": "eslint -c ../../.eslintrc.yml --ext .ts,.tsx src --fix"
  46. },
  47. "files": [
  48. "lib"
  49. ]
  50. }