| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- {
- "name": "@pythnetwork/pyth-ton-js",
- "version": "0.1.2",
- "description": "Pyth Network TON Utilities",
- "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/ton/sdk/js"
- },
- "publishConfig": {
- "access": "public"
- },
- "scripts": {
- "build": "tsc",
- "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 run test:lint",
- "preversion": "pnpm run test:lint",
- "version": "pnpm run format && git add -A src"
- },
- "keywords": [
- "pyth",
- "oracle"
- ],
- "license": "Apache-2.0",
- "devDependencies": {
- "@ton/core": "^0.59.0",
- "@ton/crypto": "^3.3.0",
- "@ton/ton": "^15.1.0",
- "@types/node": "^18.11.18",
- "@typescript-eslint/eslint-plugin": "^5.21.0",
- "@typescript-eslint/parser": "^5.21.0",
- "eslint": "^8.14.0",
- "jest": "^29.4.1",
- "prettier": "catalog:",
- "ts-jest": "^29.0.5",
- "ts-node": "^10.9.2",
- "typescript": "^4.6.3"
- }
- }
|