package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "@magicblock-labs/bolt-cli",
  3. "version": "0.2.4",
  4. "description": "Bolt CLI tool",
  5. "homepage": "https://github.com/magicblock-labs/bolt#readme",
  6. "bugs": {
  7. "url": "https://github.com/magicblock-labs/bolt/issues"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "https://github.com/magicblock-labs/bolt.git"
  12. },
  13. "license": "MIT",
  14. "bin": {
  15. "bolt": "bolt.js"
  16. },
  17. "scripts": {
  18. "typecheck": "tsc --noEmit",
  19. "lint": "prettier */*.js \"*/**/*{.js,.ts}\" --check ",
  20. "lint:fix": "node_modules/.bin/prettier */*.js \"*/**/*{.js,.ts}\" -w",
  21. "build": "tsc",
  22. "dev": "yarn build && node lib/index.js"
  23. },
  24. "devDependencies": {
  25. "@types/node": "^20.8.8",
  26. "typescript": "^4.9.4",
  27. "prettier": "^3.3.3"
  28. },
  29. "optionalDependencies": {
  30. "@magicblock-labs/bolt-cli-darwin-x64": "0.2.4",
  31. "@magicblock-labs/bolt-cli-darwin-arm64": "0.2.4",
  32. "@magicblock-labs/bolt-cli-linux-x86": "0.2.4",
  33. "@magicblock-labs/bolt-cli-linux-x64": "0.2.4",
  34. "@magicblock-labs/bolt-cli-linux-arm64": "0.2.4",
  35. "@magicblock-labs/bolt-cli-windows-x86": "0.2.4",
  36. "@magicblock-labs/bolt-cli-windows-x64": "0.2.4"
  37. },
  38. "publishConfig": {
  39. "access": "public"
  40. }
  41. }