| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- {
- "name": "@pythnetwork/xc-admin-proposer-server",
- "version": "0.1.0",
- "description": "A server that proposes the instructions that it receives to the multisig",
- "private": "true",
- "author": "",
- "homepage": "https://github.com/pyth-network/pyth-crosschain",
- "license": "ISC",
- "main": "./dist/index.cjs",
- "type": "module",
- "repository": {
- "type": "git",
- "url": "git+https://github.com/pyth-network/pyth-crosschain.git"
- },
- "bugs": {
- "url": "https://github.com/pyth-network/pyth-crosschain/issues"
- },
- "scripts": {
- "build": "ts-duality --noEsm",
- "start": "node dist/index.js",
- "fix:format": "prettier --write \"src/**/*.ts\"",
- "test:format": "prettier --check \"src/**/*.ts\"",
- "clean": "rm -rf ./dist"
- },
- "dependencies": {
- "@coral-xyz/anchor": "^0.29.0",
- "@injectivelabs/sdk-ts": "^1.10.72",
- "@pythnetwork/client": "catalog:",
- "@pythnetwork/xc-admin-common": "workspace:*",
- "@solana/web3.js": "^1.76.0",
- "@sqds/mesh": "^1.0.6",
- "@types/cors": "^2.8.17",
- "cors": "^2.8.5",
- "express": "^4.19.2",
- "ts-node": "catalog:"
- },
- "devDependencies": {
- "@types/express": "^4.17.21"
- },
- "engines": {
- "node": ">=22.14.0"
- },
- "exports": {
- ".": {
- "types": "./dist/index.d.ts",
- "default": "./dist/index.cjs"
- },
- "./package.json": "./package.json"
- },
- "types": "./dist/index.d.ts"
- }
|