package.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "@pythnetwork/entropy-tester",
  3. "version": "1.3.0",
  4. "description": "Utility to test entropy provider callbacks",
  5. "private": true,
  6. "type": "module",
  7. "main": "./dist/index.cjs",
  8. "types": "./dist/index.d.ts",
  9. "exports": {
  10. ".": {
  11. "types": "./dist/index.d.ts",
  12. "default": "./dist/index.cjs"
  13. },
  14. "./package.json": "./package.json"
  15. },
  16. "files": [
  17. "dist/**/*",
  18. "cli/**/*"
  19. ],
  20. "scripts": {
  21. "build": "ts-duality --noEsm",
  22. "fix:format": "prettier --write .",
  23. "fix:lint": "eslint --fix .",
  24. "test:format": "prettier --check .",
  25. "test:lint": "eslint . --max-warnings 0",
  26. "test:types": "tsc",
  27. "start:dev": "node cli/run.js",
  28. "start:prod": "node cli/run.js",
  29. "clean": "rm -rf ./dist"
  30. },
  31. "repository": {
  32. "type": "git",
  33. "url": "git+https://github.com/pyth-network/pyth-crosschain.git",
  34. "directory": "apps/entropy-tester"
  35. },
  36. "bin": {
  37. "pyth-entropy-tester": "./cli/run.js"
  38. },
  39. "devDependencies": {
  40. "@cprussin/eslint-config": "catalog:",
  41. "@cprussin/prettier-config": "catalog:",
  42. "@cprussin/tsconfig": "catalog:",
  43. "@types/express": "^4.17.21",
  44. "@types/node": "catalog:",
  45. "@types/yargs": "^17.0.10",
  46. "@typescript-eslint/eslint-plugin": "^6.0.0",
  47. "@typescript-eslint/parser": "^6.0.0",
  48. "eslint": "catalog:",
  49. "pino-pretty": "^11.2.1",
  50. "prettier": "catalog:",
  51. "ts-node": "catalog:"
  52. },
  53. "dependencies": {
  54. "@pythnetwork/contract-manager": "workspace:*",
  55. "joi": "^17.6.0",
  56. "pino": "catalog:",
  57. "prom-client": "^15.1.0",
  58. "viem": "catalog:",
  59. "yargs": "^17.5.1",
  60. "zod": "catalog:"
  61. },
  62. "keywords": [],
  63. "author": "",
  64. "license": "Apache-2.0",
  65. "engines": {
  66. "node": ">=22.14.0"
  67. }
  68. }