js-waku/packages/core/package.json

194 lines
6.2 KiB
JSON
Raw Normal View History

{
"name": "@waku/core",
"version": "0.0.1",
"description": "TypeScript implementation of the Waku v2 protocol",
2022-07-26 05:18:03 +00:00
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"exports": {
2022-06-15 11:39:01 +00:00
".": {
2022-07-26 05:18:03 +00:00
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
2022-08-01 12:07:00 +00:00
},
"./lib/create_waku": {
"types": "./dist/lib/create_waku.d.ts",
"import": "./dist/lib/create_waku.js"
2022-08-05 14:36:46 +00:00
},
2022-09-06 02:25:28 +00:00
"./lib/interfaces": {
"types": "./dist/lib/interfaces.d.ts"
},
2022-08-05 14:36:46 +00:00
"./lib/peer_discovery_dns": {
"types": "./dist/lib/peer_discovery_dns/index.d.ts",
"import": "./dist/lib/peer_discovery_dns/index.js"
},
"./lib/peer_discovery_static_list": {
"types": "./dist/lib/peer_discovery_static_list.d.ts",
"import": "./dist/lib/peer_discovery_static_list.js"
2022-08-19 13:05:03 +00:00
},
"./lib/predefined_bootstrap_nodes": {
"types": "./dist/lib/predefined_bootstrap_nodes.d.ts",
"import": "./dist/lib/predefined_bootstrap_nodes.js"
},
"./lib/wait_for_remote_peer": {
"types": "./dist/lib/wait_for_remote_peer.d.ts",
"import": "./dist/lib/wait_for_remote_peer.js"
},
"./lib/waku_message/version_0": {
"types": "./dist/lib/waku_message/version_0.d.ts",
"import": "./dist/lib/waku_message/version_0.js"
},
"./lib/waku_message/version_1": {
"types": "./dist/lib/waku_message/version_1.d.ts",
"import": "./dist/lib/waku_message/version_1.js"
},
"./lib/waku_message/topic_only_message": {
"types": "./dist/lib/waku_message/topic_only_message.d.ts",
"import": "./dist/lib/waku_message/topic_only_message.js"
2022-05-20 13:40:56 +00:00
}
},
2022-08-17 09:02:19 +00:00
"typesVersions": {
"*": {
"lib/*": [
"dist/lib/*"
]
}
},
2022-05-20 13:40:56 +00:00
"type": "module",
"repository": "https://github.com/status-im/js-waku",
"license": "MIT OR Apache-2.0",
2021-05-04 05:12:36 +00:00
"keywords": [
"waku",
"decentralised",
2021-08-20 00:34:25 +00:00
"communication",
"web3",
"ethereum",
"dapps"
2021-05-04 05:12:36 +00:00
],
"scripts": {
"build": "run-s build:**",
"build:esm": "tsc && node build-scripts/fix-imports.js",
2022-08-05 14:36:46 +00:00
"build:bundle": "rollup --config rollup.config.js",
"fix": "run-s fix:*",
"fix:prettier": "prettier . --write",
2022-08-03 06:05:36 +00:00
"fix:lint": "eslint src --ext .ts --ext .cjs --fix",
"pretest": "run-s pretest:*",
2022-10-30 22:32:20 +00:00
"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",
2022-10-30 22:35:59 +00:00
"check": "run-s check:*",
"check:lint": "eslint src --ext .ts",
"check:prettier": "prettier . --list-different",
"check:spelling": "cspell \"{README.md,src/**/*.ts}\"",
"check:tsc": "tsc -p tsconfig.dev.json",
"test": "run-s test:*",
"test:node": "TS_NODE_PROJECT=./tsconfig.dev.json mocha",
"test:browser": "karma start karma.conf.cjs",
"proto": "rimraf src/proto/*.ts; protons src/proto/*.proto",
"watch:build": "tsc -p tsconfig.json -w",
2022-08-03 06:50:04 +00:00
"watch:test": "mocha --watch",
"doc": "run-s doc:*",
2022-08-25 05:50:46 +00:00
"doc:html": "typedoc --treatWarningsAsErrors",
"doc:cname": "echo 'js.waku.org' > build/docs/CNAME",
2022-05-27 13:38:12 +00:00
"prepublish": "npm run build",
"deploy": "node ci/deploy.js",
2022-09-07 06:47:22 +00:00
"reset-hard": "git clean -dfx -e .idea && git reset --hard && npm i && npm run build"
},
2022-05-09 13:32:43 +00:00
"browser": {
"crypto": false
2022-05-09 13:32:43 +00:00
},
"engines": {
"node": ">=16"
},
"dependencies": {
"@chainsafe/libp2p-gossipsub": "^4.1.1",
"@chainsafe/libp2p-noise": "^8.0.1",
2022-02-16 03:08:48 +00:00
"@ethersproject/rlp": "^5.5.0",
"@libp2p/crypto": "^1.0.4",
"@libp2p/interface-connection": "3.0.1",
2022-06-22 05:12:14 +00:00
"@libp2p/interface-peer-discovery": "^1.0.0",
"@libp2p/interface-peer-id": "^1.0.2",
2022-06-22 05:12:14 +00:00
"@libp2p/interface-peer-info": "^1.0.1",
"@libp2p/interface-peer-store": "^1.0.0",
"@libp2p/interface-pubsub": "^2.0.1",
"@libp2p/interfaces": "^3.0.2",
"@libp2p/mplex": "^5.1.1",
"@libp2p/peer-id": "^1.1.10",
"@libp2p/websockets": "^3.0.3",
"@multiformats/multiaddr": "^11.0.6",
"@noble/secp256k1": "^1.3.4",
2022-06-21 03:23:42 +00:00
"debug": "^4.3.4",
2022-07-25 03:17:47 +00:00
"dns-query": "^0.11.2",
2022-01-13 00:33:26 +00:00
"hi-base32": "^0.5.1",
2022-06-24 06:02:49 +00:00
"it-all": "^1.0.6",
"it-length-prefixed": "^8.0.2",
2022-08-16 04:48:31 +00:00
"it-pipe": "^2.0.4",
"js-sha3": "^0.8.0",
2022-09-05 00:34:49 +00:00
"libp2p": "0.38.0",
"p-event": "^5.0.1",
"protons-runtime": "^3.1.0",
"uint8arraylist": "^2.3.2",
2022-05-18 07:50:23 +00:00
"uint8arrays": "^3.0.0",
2022-06-23 05:37:30 +00:00
"uuid": "^8.3.2"
},
"devDependencies": {
"@libp2p/peer-id-factory": "^1.0.15",
2022-05-27 13:01:52 +00:00
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@types/app-root-path": "^1.2.4",
2021-03-22 04:05:03 +00:00
"@types/chai": "^4.2.15",
2022-06-21 03:23:42 +00:00
"@types/debug": "^4.1.7",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.6",
"@types/tail": "^2.0.0",
2021-04-07 01:04:30 +00:00
"@types/uuid": "^8.3.0",
2022-01-02 22:28:05 +00:00
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"app-root-path": "^3.0.0",
2021-03-22 04:05:03 +00:00
"chai": "^4.3.4",
"cspell": "^5.14.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-eslint-comments": "^3.2.0",
2022-01-02 22:28:05 +00:00
"eslint-plugin-functional": "^4.0.2",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"fast-check": "^2.14.0",
"gh-pages": "^3.2.3",
2022-05-20 13:40:56 +00:00
"ignore-loader": "^0.1.2",
2022-02-13 22:26:22 +00:00
"isomorphic-fetch": "^3.0.0",
"jsdom": "^19.0.0",
"jsdom-global": "^3.0.2",
2022-01-27 04:25:17 +00:00
"karma": "^6.3.12",
2021-07-14 01:40:15 +00:00
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
2022-05-20 13:40:56 +00:00
"karma-webpack": "^5.0.0",
"mocha": "^9.1.3",
"npm-run-all": "^4.1.5",
"p-timeout": "^6.0.0",
2022-02-01 01:54:54 +00:00
"portfinder": "^1.0.28",
"prettier": "^2.1.1",
2021-10-11 04:03:13 +00:00
"process": "^0.11.10",
"protons": "^5.1.0",
"puppeteer": "^13.0.1",
2022-05-27 13:01:52 +00:00
"rollup": "^2.75.0",
"tail": "^2.2.0",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"typedoc": "^0.23.10",
"typescript": "^4.6.3"
},
"files": [
2022-07-26 05:18:03 +00:00
"dist",
2022-08-05 14:36:46 +00:00
"bundle",
2022-06-16 00:31:02 +00:00
"src/*.ts",
"src/lib/**/*.ts",
"src/proto/**/*.ts",
"!**/*.spec.*",
"!**/*.json",
"CHANGELOG.md",
"LICENSE",
"README.md"
2022-10-30 10:12:01 +00:00
]
}