OpChan/packages/core/package.json

79 lines
1.8 KiB
JSON
Raw Normal View History

2025-09-09 17:41:33 +05:30
{
2025-09-09 18:21:12 +05:30
"name": "opchan-core",
2025-09-09 17:41:33 +05:30
"version": "1.0.0",
2025-09-09 18:21:12 +05:30
"description": "Core package for OpChan - A decentralized forum built on Waku protocol",
2025-09-09 18:16:00 +05:30
"type": "module",
2025-09-09 17:41:33 +05:30
"main": "dist/index.js",
2025-09-09 18:16:00 +05:30
"module": "dist/index.js",
2025-09-09 17:41:33 +05:30
"types": "dist/index.d.ts",
2025-09-09 18:16:00 +05:30
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
2025-09-09 17:41:33 +05:30
"files": [
2025-09-09 18:21:12 +05:30
"dist",
"README.md"
2025-09-09 17:41:33 +05:30
],
2025-09-09 18:21:12 +05:30
"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",
2025-09-09 17:41:33 +05:30
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "rm -rf dist",
2025-09-09 18:16:00 +05:30
"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",
2025-09-09 18:21:12 +05:30
"fix": "prettier --write src && eslint src --ext .ts,.tsx --fix",
"prepublishOnly": "npm run build",
"prepack": "npm run build"
2025-09-09 17:41:33 +05:30
},
"devDependencies": {
"@types/node": "^20.0.0",
2025-09-09 18:16:00 +05:30
"@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"
2025-09-09 17:41:33 +05:30
},
"engines": {
"node": ">=18.0.0"
2025-09-09 18:16:00 +05:30
},
"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"
2025-09-09 17:41:33 +05:30
}
}