package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "@pythnetwork/pyth-starknet-js",
  3. "version": "0.2.1",
  4. "description": "Pyth Network Starknet Utilities",
  5. "homepage": "https://pyth.network",
  6. "author": {
  7. "name": "Pyth Data Association"
  8. },
  9. "main": "lib/index.js",
  10. "types": "lib/index.d.ts",
  11. "files": [
  12. "lib/**/*"
  13. ],
  14. "repository": {
  15. "type": "git",
  16. "url": "https://github.com/pyth-network/pyth-crosschain",
  17. "directory": "target_chains/starknet/sdk/js"
  18. },
  19. "publishConfig": {
  20. "access": "public"
  21. },
  22. "scripts": {
  23. "build": "tsc",
  24. "usage-example": "ts-node src/examples/usage.ts",
  25. "format": "prettier --write \"src/**/*.ts\"",
  26. "test:lint": "eslint src/",
  27. "prepublishOnly": "pnpm run build && pnpm run test:lint",
  28. "preversion": "pnpm run test:lint",
  29. "version": "pnpm run format && git add -A src"
  30. },
  31. "keywords": [
  32. "pyth",
  33. "oracle"
  34. ],
  35. "license": "Apache-2.0",
  36. "devDependencies": {
  37. "@types/node": "^18.11.18",
  38. "@typescript-eslint/eslint-plugin": "^5.21.0",
  39. "@typescript-eslint/parser": "^5.21.0",
  40. "eslint": "^8.14.0",
  41. "jest": "^29.4.1",
  42. "prettier": "^2.6.2",
  43. "ts-jest": "^29.0.5",
  44. "typescript": "^4.6.3",
  45. "ts-node": "^10.9.2"
  46. },
  47. "dependencies": {}
  48. }