{ "name": "@waku/core", "version": "0.0.10", "description": "TypeScript implementation of the Waku v2 protocol", "types": "./dist/index.d.ts", "module": "./dist/index.js", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" }, "./lib/predefined_bootstrap_nodes": { "types": "./dist/lib/predefined_bootstrap_nodes.d.ts", "import": "./dist/lib/predefined_bootstrap_nodes.js" }, "./lib/message/version_0": { "types": "./dist/lib/message/version_0.d.ts", "import": "./dist/lib/message/version_0.js" }, "./lib/message/topic_only_message": { "types": "./dist/lib/message/topic_only_message.d.ts", "import": "./dist/lib/message/topic_only_message.js" }, "./lib/base_protocol": { "types": "./dist/lib/base_protocol.d.ts", "import": "./dist/lib/base_protocol.js" } }, "typesVersions": { "*": { "lib/*": [ "dist/lib/*" ] } }, "type": "module", "homepage": "https://github.com/waku-org/js-waku/tree/master/packages/core#readme", "repository": { "type": "git", "url": "https://github.com/waku-org/js-waku.git" }, "bugs": { "url": "https://github.com/waku-org/js-waku/issues" }, "license": "MIT OR Apache-2.0", "keywords": [ "waku", "decentralised", "communication", "web3", "ethereum", "dapps" ], "scripts": { "build": "run-s build:**", "build:esm": "tsc", "build:bundle": "rollup --config rollup.config.js", "fix": "run-s fix:*", "fix:prettier": "prettier . --write", "fix:lint": "eslint src *.js --fix", "pretest": "run-s pretest:*", "pretest:1-init-git-submodules": "[ -f '../../nwaku/build/wakunode2' ] || git submodule update --init --recursive", "pretest:2-build-nwaku": "[ -f '../../nwaku/build/wakunode2' ] || run-s nwaku:build", "nwaku:build": "(PROC=$(nproc --all 2>/dev/null || echo 2); cd ../../nwaku; make -j$PROC update; NIMFLAGS=\"-d:chronicles_colors=off -d:chronicles_sinks=textlines -d:chronicles_log_level=TRACE\" make -j$PROC wakunode2)", "nwaku:force-build": "(cd ../../nwaku && rm -rf ./build/ ./vendor) && run-s nwaku:build", "check": "run-s check:*", "check:tsc": "tsc -p tsconfig.dev.json", "check:lint": "eslint src *.js", "check:prettier": "prettier . --list-different", "check:spelling": "cspell \"{README.md,src/**/*.ts}\"", "test": "run-s test:*", "test:node": "TS_NODE_PROJECT=./tsconfig.dev.json mocha", "test:browser": "karma start karma.conf.cjs", "watch:build": "tsc -p tsconfig.json -w", "watch:test": "mocha --watch", "prepublish": "npm run build", "reset-hard": "git clean -dfx -e .idea && git reset --hard && npm i && npm run build" }, "engines": { "node": ">=16" }, "dependencies": { "@chainsafe/libp2p-gossipsub": "^6.1.0", "@noble/hashes": "^1.2.0", "@waku/interfaces": "*", "@waku/proto": "*", "@waku/utils": "*", "debug": "^4.3.4", "it-all": "^2.0.0", "it-length-prefixed": "^8.0.4", "it-pipe": "^2.0.5", "p-event": "^5.0.1", "uint8arraylist": "^2.4.3", "uuid": "^9.0.0" }, "devDependencies": { "@libp2p/interface-connection": "^3.0.8", "@libp2p/interface-libp2p": "^1.1.1", "@libp2p/interface-peer-id": "^2.0.1", "@libp2p/interface-peer-store": "^1.2.8", "@libp2p/interface-pubsub": "^3.0.6", "@libp2p/interface-registrar": "^2.0.8", "@multiformats/multiaddr": "^11.4.0", "@rollup/plugin-commonjs": "^24.0.1", "@rollup/plugin-json": "^6.0.0", "@rollup/plugin-node-resolve": "^15.0.1", "@types/chai": "^4.3.4", "@types/debug": "^4.1.7", "@types/mocha": "^10.0.1", "@types/uuid": "^9.0.0", "@typescript-eslint/eslint-plugin": "^5.54.1", "@typescript-eslint/parser": "^5.51.0", "@waku/build-utils": "*", "chai": "^4.3.7", "cspell": "^6.28.0", "eslint": "^8.35.0", "eslint-config-prettier": "^8.6.0", "eslint-plugin-eslint-comments": "^3.2.0", "eslint-plugin-functional": "^5.0.4", "eslint-plugin-import": "^2.27.5", "eslint-plugin-prettier": "^4.2.1", "fast-check": "^3.7.0", "ignore-loader": "^0.1.2", "isomorphic-fetch": "^3.0.0", "karma": "^6.4.1", "karma-chrome-launcher": "^3.1.1", "karma-mocha": "^2.0.1", "karma-webpack": "^5.0.0", "mocha": "^10.2.0", "npm-run-all": "^4.1.5", "prettier": "^2.8.4", "process": "^0.11.10", "puppeteer": "^19.7.2", "rollup": "^3.15.0", "ts-loader": "^9.4.2", "ts-node": "^10.9.1", "typescript": "^4.9.5" }, "peerDependencies": { "@multiformats/multiaddr": "^11.4.0", "libp2p": "^0.42.2" }, "peerDependenciesMeta": { "@multiformats/multiaddr": { "optional": true } }, "typedoc": { "entryPoint": "./src/index.ts" }, "files": [ "dist", "bundle", "src/*.ts", "src/lib/**/*.ts", "!**/*.spec.*", "!**/*.json", "CHANGELOG.md", "LICENSE", "README.md" ] }