| 1234567891011121314151617181920212223242526272829303132333435363738 |
- {
- "name": "@pythnetwork/aptos-cli",
- "version": "1.0.0",
- "description": "Utilities for managing the Pyth Target Chain contract on Aptos",
- "private": true,
- "main": "index.js",
- "scripts": {
- "cli": "ts-node src/cli.ts",
- "build": "ts-duality",
- "test:format": "prettier --check .",
- "fix:format": "prettier --write .",
- "clean": "rm -rf ./dist"
- },
- "author": "",
- "license": "ISC",
- "bin": {
- "aptos": "./build/cli.js"
- },
- "devDependencies": {
- "@types/node": "^18.7.21",
- "@types/yargs": "^17.0.13",
- "prettier": "catalog:"
- },
- "dependencies": {
- "@pythnetwork/contract-manager": "workspace:*",
- "@pythnetwork/pyth-aptos-js": "workspace:*",
- "aptos": "^1.3.14",
- "ethers": "^5.7.1",
- "js-sha3": "^0.8.0",
- "yargs": "^17.5.1"
- },
- "engines": {
- "node": ">=22.16.0",
- "pnpm": ">=10.19.0"
- },
- "packageManager": "pnpm@10.19.0",
- "type": "module"
- }
|