{ "name": "opchan-core", "version": "1.0.0", "description": "Core package for OpChan - A decentralized forum built on Waku protocol", "type": "module", "main": "dist/index.js", "module": "dist/index.js", "types": "dist/index.d.ts", "exports": { ".": { "import": "./dist/index.js", "types": "./dist/index.d.ts" } }, "files": [ "dist", "README.md" ], "keywords": [ "opchan", "waku", "bitcoin", "ordinals", "ethereum", "decentralized", "forum", "p2p", "blockchain", "cryptocurrency" ], "author": "OpChan Team", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/waku-org/OpChan.git", "directory": "packages/core" }, "bugs": { "url": "https://github.com/waku-org/OpChan/issues" }, "homepage": "https://github.com/waku-org/OpChan#readme", "scripts": { "build": "tsc", "dev": "tsc --watch", "clean": "rm -rf dist", "lint": "eslint src --ext .ts,.tsx", "lint:fix": "eslint src --ext .ts,.tsx --fix", "check": "tsc --noEmit && eslint src --ext .ts,.tsx && prettier --check src", "fix": "prettier --write src && eslint src --ext .ts,.tsx --fix", "prepublishOnly": "npm run build", "prepack": "npm run build" }, "devDependencies": { "@types/node": "^20.0.0", "@typescript-eslint/eslint-plugin": "^6.21.0", "@typescript-eslint/parser": "^6.21.0", "eslint": "^8.0.0", "prettier": "^3.0.0" }, "peerDependencies": { "@waku/sdk": "^0.0.35-67a7287.0", "typescript": ">=5.0.4" }, "engines": { "node": ">=18.0.0" }, "browser": { "fs": false, "path": false, "os": false }, "dependencies": { "@reown/appkit": "^1.8.3", "@reown/appkit-adapter-bitcoin": "^1.8.3", "@reown/appkit-adapter-wagmi": "^1.8.3", "wagmi": "^2.16.9" } }