package.json 937 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "private": true,
  3. "name": "@pythnetwork/create-pyth-app",
  4. "description": "bootstrapper to quickly create a best-practices TypeScript library or application",
  5. "version": "0.0.0",
  6. "type": "module",
  7. "bin": {
  8. "create-pyth-app": "./bin/create-pyth-app"
  9. },
  10. "engines": {
  11. "pnpm": ">=10.19.0",
  12. "node": ">=22.14.0"
  13. },
  14. "files": [
  15. "bin/**",
  16. "src/**"
  17. ],
  18. "scripts": {
  19. "start": "tsx ./src/create-pyth-app.ts",
  20. "test:types": "tsc --noEmit"
  21. },
  22. "dependencies": {
  23. "app-root-path": "catalog:",
  24. "chalk": "catalog:",
  25. "fast-glob": "catalog:",
  26. "fs-extra": "catalog:",
  27. "micromustache": "catalog:",
  28. "prompts": "catalog:",
  29. "tsx": "catalog:"
  30. },
  31. "devDependencies": {
  32. "@cprussin/tsconfig": "catalog:",
  33. "@cprussin/eslint-config": "catalog:",
  34. "@types/fs-extra": "catalog:",
  35. "@types/prompts": "catalog:",
  36. "eslint": "catalog:",
  37. "type-fest": "catalog:"
  38. }
  39. }