2022-11-01 03:48:52 +00:00
|
|
|
{
|
|
|
|
"name": "@waku/interfaces",
|
2024-07-10 15:25:22 +00:00
|
|
|
"version": "0.0.25",
|
2022-11-01 03:48:52 +00:00
|
|
|
"description": "Definition of Waku interfaces",
|
|
|
|
"types": "./dist/index.d.ts",
|
2022-11-01 08:15:06 +00:00
|
|
|
"module": "./dist/index.js",
|
2022-11-01 03:48:52 +00:00
|
|
|
"exports": {
|
|
|
|
".": {
|
2022-11-01 08:15:06 +00:00
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
"import": "./dist/index.js"
|
2022-11-01 03:48:52 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"type": "module",
|
|
|
|
"author": "Waku Team",
|
|
|
|
"homepage": "https://github.com/waku-org/js-waku/tree/master/packages/interfaces#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",
|
|
|
|
"decentralized",
|
|
|
|
"secure",
|
|
|
|
"communication",
|
|
|
|
"web3",
|
|
|
|
"ethereum",
|
|
|
|
"dapps",
|
|
|
|
"privacy"
|
|
|
|
],
|
|
|
|
"scripts": {
|
2023-01-30 09:30:31 +00:00
|
|
|
"build": "run-s build:**",
|
|
|
|
"build:esm": "tsc",
|
2022-11-01 03:48:52 +00:00
|
|
|
"fix": "run-s fix:*",
|
2023-02-28 03:55:17 +00:00
|
|
|
"fix:lint": "eslint src --fix",
|
2022-11-01 03:48:52 +00:00
|
|
|
"check": "run-s check:*",
|
2023-02-28 03:55:17 +00:00
|
|
|
"check:lint": "eslint src",
|
2022-11-01 03:48:52 +00:00
|
|
|
"check:spelling": "cspell \"{README.md,src/**/*.ts}\"",
|
|
|
|
"check:tsc": "tsc -p tsconfig.dev.json",
|
|
|
|
"prepublish": "npm run build",
|
2022-11-04 03:42:24 +00:00
|
|
|
"reset-hard": "git clean -dfx -e .idea && git reset --hard && npm i && npm run build"
|
2022-11-01 03:48:52 +00:00
|
|
|
},
|
|
|
|
"engines": {
|
2023-09-22 09:07:34 +00:00
|
|
|
"node": ">=18"
|
2022-11-01 03:48:52 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-02-27 16:31:02 +00:00
|
|
|
"@chainsafe/libp2p-gossipsub": "^12.0.0",
|
2023-03-20 21:39:40 +00:00
|
|
|
"@multiformats/multiaddr": "^12.0.0",
|
2024-04-04 13:42:51 +00:00
|
|
|
"cspell": "^8.6.1",
|
2022-11-01 03:48:52 +00:00
|
|
|
"npm-run-all": "^4.1.5",
|
2024-01-16 00:12:01 +00:00
|
|
|
"libp2p": "^1.1.2"
|
2022-11-01 03:48:52 +00:00
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"dist",
|
|
|
|
"bundle",
|
2023-03-24 22:43:40 +00:00
|
|
|
"src/**/*.ts",
|
2022-11-01 03:48:52 +00:00
|
|
|
"!**/*.spec.*",
|
|
|
|
"!**/*.json",
|
|
|
|
"CHANGELOG.md",
|
|
|
|
"LICENSE",
|
|
|
|
"README.md"
|
2024-04-01 11:17:47 +00:00
|
|
|
],
|
|
|
|
"dependencies": {
|
2024-04-30 15:50:00 +00:00
|
|
|
"@waku/proto": "^0.0.7"
|
2024-04-01 11:17:47 +00:00
|
|
|
}
|
2022-11-01 03:48:52 +00:00
|
|
|
}
|