js-waku/packages/core/package.json

128 lines
3.3 KiB
JSON
Raw Normal View History

{
"name": "@waku/core",
2023-10-17 01:18:34 +11:00
"version": "0.0.24",
"description": "TypeScript implementation of the Waku v2 protocol",
2022-07-26 15:18:03 +10:00
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"exports": {
2022-06-15 21:39:01 +10:00
".": {
2022-07-26 15:18:03 +10:00
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
2022-08-01 22:07:00 +10:00
},
2022-08-19 23:05:03 +10:00
"./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/base_protocol": {
"types": "./dist/lib/base_protocol.d.ts",
"import": "./dist/lib/base_protocol.js"
2022-05-20 23:40:56 +10:00
}
},
2022-08-17 11:02:19 +02:00
"typesVersions": {
"*": {
"lib/*": [
"dist/lib/*"
],
"constants/*": [
"dist/constants/*"
2022-08-17 11:02:19 +02:00
]
}
},
2022-05-20 23:40:56 +10:00
"type": "module",
2022-10-31 11:46:40 +11:00
"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"
2022-10-31 11:46:40 +11:00
},
"bugs": {
"url": "https://github.com/waku-org/js-waku/issues"
},
"license": "MIT OR Apache-2.0",
2021-05-04 15:12:36 +10:00
"keywords": [
"waku",
"decentralised",
2021-08-20 10:34:25 +10:00
"communication",
"web3",
"ethereum",
"dapps"
2021-05-04 15:12:36 +10:00
],
"scripts": {
"build": "run-s build:**",
"build:esm": "tsc",
2022-08-06 00:36:46 +10:00
"build:bundle": "rollup --config rollup.config.js",
"fix": "run-s fix:*",
"fix:lint": "eslint src *.js --fix",
2022-10-31 09:35:59 +11:00
"check": "run-s check:*",
2022-11-01 16:30:24 +11:00
"check:tsc": "tsc -p tsconfig.dev.json",
2023-06-08 12:05:22 -07:00
"check:lint": "eslint src *.js",
2022-10-31 09:35:59 +11:00
"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",
2022-08-03 16:50:04 +10:00
"watch:test": "mocha --watch",
2022-05-27 23:38:12 +10:00
"prepublish": "npm run build",
"reset-hard": "git clean -dfx -e .idea && git reset --hard && npm i && npm run build"
},
"engines": {
2023-09-22 14:37:34 +05:30
"node": ">=18"
},
"dependencies": {
"@noble/hashes": "^1.3.2",
2023-10-17 01:18:34 +11:00
"@waku/enr": "^0.0.18",
"@waku/interfaces": "0.0.19",
2023-06-02 05:50:52 +10:00
"@waku/proto": "0.0.5",
2023-10-17 01:18:34 +11:00
"@waku/utils": "0.0.12",
"debug": "^4.3.4",
"it-all": "^3.0.3",
"it-length-prefixed": "^9.0.1",
"it-pipe": "^3.0.1",
"p-event": "^6.0.0",
"uint8arraylist": "^2.4.3",
"uuid": "^9.0.0"
},
"devDependencies": {
"@multiformats/multiaddr": "^12.0.0",
"@rollup/plugin-commonjs": "^25.0.4",
2023-02-10 13:14:02 +11:00
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@types/chai": "^4.3.5",
"@types/debug": "^4.1.8",
2023-02-10 15:32:38 +11:00
"@types/mocha": "^10.0.1",
"@types/uuid": "^9.0.3",
"@waku/build-utils": "*",
"chai": "^4.3.7",
"cspell": "^7.3.2",
"fast-check": "^3.13.1",
2022-05-20 23:40:56 +10:00
"ignore-loader": "^0.1.2",
2022-02-14 09:26:22 +11:00
"isomorphic-fetch": "^3.0.0",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
2021-10-11 15:03:13 +11:00
"process": "^0.11.10",
"rollup": "^3.29.2"
},
"peerDependencies": {
"@multiformats/multiaddr": "^12.0.0",
"libp2p": "^0.46.3"
},
"peerDependenciesMeta": {
"@multiformats/multiaddr": {
"optional": true
}
},
"files": [
2022-07-26 15:18:03 +10:00
"dist",
2022-08-06 00:36:46 +10:00
"bundle",
"src/**/*.ts",
"!**/*.spec.*",
"!**/*.json",
"CHANGELOG.md",
"LICENSE",
"README.md"
2022-10-30 21:12:01 +11:00
]
}