package.json 1.8 KB

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