UNPKG

@aryze/reforge

Version:

TypeScript SDK for Aryze Reforge cross-chain bridge protocol

102 lines 2.81 kB
{ "name": "@aryze/reforge", "version": "1.0.4", "description": "TypeScript SDK for Aryze Reforge cross-chain bridge protocol", "type": "module", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.js", "types": "./dist/types/index.d.ts", "exports": { ".": { "types": "./dist/types/index.d.ts", "import": "./dist/esm/index.js", "require": "./dist/cjs/index.js" } }, "files": [ "dist", "README.md", "LICENSE", "CHANGELOG.md" ], "keywords": [ "reforge", "bridge", "cross-chain", "ethereum", "polygon", "arbitrum", "optimism", "typescript", "sdk", "defi", "aryze" ], "author": "Aryze", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/aryze/reforge-sdk.git" }, "bugs": { "url": "https://github.com/aryze/reforge-sdk/issues" }, "homepage": "https://github.com/aryze/reforge-sdk#readme", "devDependencies": { "@eslint/js": "^9.17.0", "@rollup/plugin-commonjs": "28.0.6", "@rollup/plugin-node-resolve": "16.0.1", "@rollup/plugin-terser": "0.4.4", "@rollup/plugin-typescript": "12.1.4", "@types/jest": "^29.5.14", "@typescript-eslint/eslint-plugin": "^8.18.2", "@typescript-eslint/parser": "^8.18.2", "eslint": "^9.17.0", "globals": "^15.14.0", "husky": "9.1.7", "jest": "^29.7.0", "lint-staged": "16.1.2", "prettier": "^3.4.2", "rollup": "^4.28.1", "rollup-plugin-typescript2": "^0.36.0", "ts-jest": "^29.2.5", "tslib": "2.8.1", "typescript": "^5.7.3" }, "peerDependencies": { "typescript": ">=4.7.0" }, "engines": { "node": ">=16.0.0" }, "lint-staged": { "src/**/*.{ts,tsx}": [ "prettier --write", "eslint --fix" ], "tests/**/*.{ts,tsx}": [ "prettier --write", "eslint --fix" ] }, "scripts": { "build": "npm run clean && npm run build:types && npm run build:esm && npm run build:cjs", "build:types": "tsc --emitDeclarationOnly --outDir dist/types", "build:esm": "tsc --project tsconfig.json --outDir dist/esm --module esnext --target es2020", "build:cjs": "tsc --project tsconfig.json --outDir dist/cjs --module commonjs --target es2020", "clean": "rm -rf dist", "dev": "rollup -c --watch", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "lint": "eslint src/**/*.ts", "lint:fix": "eslint src/**/*.ts --fix", "format": "prettier --write src/**/*.ts", "format:check": "prettier --check src/**/*.ts", "typecheck": "tsc --noEmit", "postversion": "git push && git push --tags", "release:patch": "npm version patch", "release:minor": "npm version minor", "release:major": "npm version major" } }