OpChan/package.json

37 lines
946 B
JSON
Raw Normal View History

2025-09-09 17:41:33 +05:30
{
"name": "opchan",
"version": "1.0.0",
"description": "A decentralized Forum library over Waku",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build --workspaces",
"dev": "npm run dev --workspaces",
"test": "npm run test --workspaces",
"lint": "npm run lint --workspaces",
2025-09-09 18:16:00 +05:30
"lint:fix": "npm run lint:fix --workspaces",
"check": "npm run check --workspaces",
"fix": "npm run fix --workspaces",
2025-09-09 17:41:33 +05:30
"clean": "npm run clean --workspaces"
},
2025-09-09 18:16:00 +05:30
"dependencies": {
"@noble/ed25519": "^3.0.0",
"@waku/sdk": "^0.0.35-67a7287.0",
"bitcoinjs-message": "^2.2.0",
"uuid": "^13.0.0"
},
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",
"typescript": "^5.5.3"
2025-09-09 17:41:33 +05:30
},
"engines": {
"node": ">=18.0.0"
}
}