2022-11-01 03:48:52 +00:00
|
|
|
{
|
|
|
|
"name": "@waku/interfaces",
|
2023-04-03 06:15:39 +00:00
|
|
|
"version": "0.0.11",
|
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": {
|
|
|
|
"node": ">=16"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-02-09 02:21:03 +00:00
|
|
|
"@chainsafe/libp2p-gossipsub": "^6.1.0",
|
|
|
|
"@libp2p/interface-connection": "^3.0.8",
|
2023-02-09 02:47:48 +00:00
|
|
|
"@libp2p/interface-connection-manager": "^1.3.7",
|
2023-03-27 16:10:31 +00:00
|
|
|
"@libp2p/interface-libp2p": "^1.1.2",
|
2023-02-09 02:21:03 +00:00
|
|
|
"@libp2p/interface-peer-id": "^2.0.1",
|
2023-03-07 03:36:21 +00:00
|
|
|
"@libp2p/interface-peer-info": "^1.0.8",
|
2023-02-09 02:21:03 +00:00
|
|
|
"@libp2p/interface-peer-store": "^1.2.8",
|
2023-02-09 02:47:48 +00:00
|
|
|
"@libp2p/interface-registrar": "^2.0.8",
|
2023-03-20 21:39:40 +00:00
|
|
|
"@multiformats/multiaddr": "^12.0.0",
|
2023-03-29 03:22:08 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.57.0",
|
2023-02-10 03:52:20 +00:00
|
|
|
"@typescript-eslint/parser": "^5.51.0",
|
2023-03-29 04:06:00 +00:00
|
|
|
"cspell": "^6.31.1",
|
2023-02-27 16:25:16 +00:00
|
|
|
"eslint": "^8.35.0",
|
2023-02-10 03:52:20 +00:00
|
|
|
"eslint-config-prettier": "^8.6.0",
|
2022-11-01 03:48:52 +00:00
|
|
|
"eslint-plugin-eslint-comments": "^3.2.0",
|
2023-02-10 03:52:20 +00:00
|
|
|
"eslint-plugin-functional": "^5.0.4",
|
|
|
|
"eslint-plugin-import": "^2.27.5",
|
|
|
|
"eslint-plugin-prettier": "^4.2.1",
|
2022-11-01 03:48:52 +00:00
|
|
|
"npm-run-all": "^4.1.5",
|
2023-05-04 16:24:58 +00:00
|
|
|
"prettier": "^2.8.8",
|
2023-02-10 02:49:03 +00:00
|
|
|
"typescript": "^4.9.5"
|
2022-11-01 03:48:52 +00:00
|
|
|
},
|
2022-11-02 04:05:12 +00:00
|
|
|
"typedoc": {
|
|
|
|
"entryPoint": "./src/index.ts"
|
|
|
|
},
|
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"
|
2022-11-01 05:30:24 +00:00
|
|
|
]
|
2022-11-01 03:48:52 +00:00
|
|
|
}
|