| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- {
- "name": "@pythnetwork/pyth-sui-js",
- "version": "2.3.0",
- "description": "Pyth Network Sui Utilities",
- "homepage": "https://pyth.network",
- "author": {
- "name": "Pyth Data Association"
- },
- "main": "./dist/cjs/index.js",
- "types": "./dist/cjs/index.d.ts",
- "type": "module",
- "files": [
- "dist/**/*"
- ],
- "repository": {
- "type": "git",
- "url": "https://github.com/pyth-network/pyth-crosschain",
- "directory": "target_chains/sui/sdk/js"
- },
- "publishConfig": {
- "access": "public"
- },
- "scripts": {
- "build": "ts-duality",
- "example-relay": "node lib/examples/SuiRelay.js",
- "test:lint": "eslint src/ --max-warnings 0",
- "test:format": "prettier --check \"src/**/*.ts\"",
- "fix:lint": "eslint src/ --fix --max-warnings 0",
- "fix:format": "prettier --write \"src/**/*.ts\"",
- "prepublishOnly": "pnpm run build && pnpm test:lint",
- "preversion": "pnpm run test:lint",
- "version": "pnpm run format && git add -A src",
- "clean": "rm -rf ./dist"
- },
- "keywords": [
- "pyth",
- "oracle",
- "sui"
- ],
- "license": "Apache-2.0",
- "devDependencies": {
- "@cprussin/eslint-config": "catalog:",
- "@truffle/hdwallet-provider": "^2.1.5",
- "@types/ethereum-protocol": "^1.0.2",
- "@types/jest": "^29.4.0",
- "@types/node": "^18.11.18",
- "@types/web3-provider-engine": "^14.0.1",
- "@types/yargs": "^17.0.20",
- "@typescript-eslint/eslint-plugin": "^6.0.0",
- "@typescript-eslint/parser": "^6.0.0",
- "eslint": "catalog:",
- "jest": "^29.4.1",
- "prettier": "catalog:",
- "ts-jest": "^29.0.5",
- "web3": "^1.8.2",
- "yargs": "^17.0.20"
- },
- "dependencies": {
- "@mysten/sui": "^1.3.0",
- "@pythnetwork/hermes-client": "workspace:*",
- "buffer": "^6.0.3"
- },
- "engines": {
- "node": ">=22.14.0",
- "pnpm": ">=10.7.0"
- },
- "packageManager": "pnpm@10.19.0",
- "exports": {
- "./SuiPriceServiceConnection": {
- "require": {
- "default": "./dist/cjs/SuiPriceServiceConnection.js",
- "types": "./dist/cjs/SuiPriceServiceConnection.d.ts"
- },
- "import": {
- "default": "./dist/esm/SuiPriceServiceConnection.js",
- "types": "./dist/esm/SuiPriceServiceConnection.d.ts"
- }
- },
- "./client": {
- "require": {
- "default": "./dist/cjs/client.js",
- "types": "./dist/cjs/client.d.ts"
- },
- "import": {
- "default": "./dist/esm/client.js",
- "types": "./dist/esm/client.d.ts"
- }
- },
- ".": {
- "require": {
- "default": "./dist/cjs/index.js",
- "types": "./dist/cjs/index.d.ts"
- },
- "import": {
- "default": "./dist/esm/index.js",
- "types": "./dist/esm/index.d.ts"
- }
- },
- "./package.json": "./package.json"
- },
- "module": "./dist/esm/index.js"
- }
|