package.json 1.3 KB

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