| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- {
- "name": "@pythnetwork/pyth-ton-js",
- "version": "0.1.2",
- "description": "Pyth Network TON Utilities",
- "homepage": "https://pyth.network",
- "author": {
- "name": "Pyth Data Association"
- },
- "type": "module",
- "exports": {
- ".": {
- "import": "./lib/index.js",
- "require": "./lib/cjs/index.js",
- "types": "./lib/index.d.ts"
- }
- },
- "main": "./lib/cjs/index.js",
- "module": "./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": "pnpm run build:esm && pnpm run build:cjs",
- "build:esm": "tsc",
- "build:cjs": "tsc --module commonjs --outDir lib/cjs",
- "format": "prettier --write \"src/**/*.ts\"",
- "test:lint": "eslint src/",
- "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/ton": "^15.1.0",
- "@ton/crypto": "^3.3.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": "^2.6.2",
- "ts-jest": "^29.0.5",
- "typescript": "^4.6.3",
- "ts-node": "^10.9.2"
- },
- "dependencies": {}
- }
|