| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- {
- "name": "@pythnetwork/pyth-fuel-js",
- "version": "1.0.7",
- "description": "Pyth Network Fuel Utils in JS",
- "homepage": "https://pyth.network",
- "author": {
- "name": "Pyth Data Association"
- },
- "main": "lib/index.js",
- "types": "lib/index.d.ts",
- "files": [
- "lib/**/*"
- ],
- "repository": {
- "type": "git",
- "url": "https://github.com/pyth-network/pyth-crosschain",
- "directory": "target_chains/fuel/sdk/js"
- },
- "publishConfig": {
- "access": "public"
- },
- "scripts": {
- "usage-example": "ts-node src/examples/usage.ts",
- "build": "pnpm run generate-fuel-types && tsc && copyfiles -u 1 \"src/**/*.d.ts\" lib",
- "format": "prettier --write \"src/**/*.ts\"",
- "lint": "eslint src/",
- "prepublishOnly": "pnpm run build && pnpm run lint",
- "preversion": "pnpm run lint",
- "version": "pnpm run format && git add -A src",
- "generate-fuel-types": "pnpm fuels typegen -i ../../contracts/pyth-contract/out/release/*-abi.json -o ./src/types && prettier --write \"./src/types/**/*.ts\""
- },
- "keywords": [
- "pyth",
- "oracle"
- ],
- "license": "Apache-2.0",
- "devDependencies": {
- "@typescript-eslint/eslint-plugin": "^7.7.0",
- "@typescript-eslint/parser": "^7.7.0",
- "@pythnetwork/hermes-client": "workspace:*",
- "copyfiles": "^2.4.1",
- "eslint": "^8.14.0",
- "prettier": "^2.6.2",
- "ts-node": "^10.9.2",
- "typescript": "^5.4.5"
- },
- "dependencies": {
- "fuels": "^0.96.1"
- }
- }
|