package.json 628 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "@coral-xyz/anchor-errors",
  3. "version": "0.31.0",
  4. "description": "Anchor error codes",
  5. "main": "dist/index.js",
  6. "types": "dist/index.d.ts",
  7. "exports": {
  8. ".": "./dist/index.js"
  9. },
  10. "license": "Apache-2.0",
  11. "publishConfig": {
  12. "access": "public"
  13. },
  14. "engines": {
  15. "node": ">=10"
  16. },
  17. "scripts": {
  18. "build": "tsc",
  19. "lint:fix": "prettier src/** -w",
  20. "lint": "prettier src/** --check",
  21. "watch": "tsc --watch",
  22. "prepublishOnly": "yarn build",
  23. "test": "",
  24. "clean": "rm -rf dist"
  25. },
  26. "files": [
  27. "dist"
  28. ],
  29. "devDependencies": {
  30. "prettier": "^2.1.2"
  31. }
  32. }