js-waku/packages/interfaces/package.json

89 lines
2.4 KiB
JSON
Raw Normal View History

2022-11-01 03:48:52 +00:00
{
"name": "@waku/interfaces",
2023-01-18 04:16:00 +00:00
"version": "0.0.7",
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": {
"build": "run-s build:**",
"build:esm": "tsc",
2022-11-01 03:48:52 +00:00
"fix": "run-s fix:*",
"fix:prettier": "prettier . --write",
"fix:lint": "eslint src --ext .ts --ext .cjs --fix",
"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",
"prepublish": "npm run build",
"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",
"@libp2p/interface-connection-manager": "^1.3.7",
2023-02-09 02:21:03 +00:00
"@libp2p/interface-libp2p": "^1.1.1",
"@libp2p/interface-peer-id": "^2.0.1",
"@libp2p/interface-peer-store": "^1.2.8",
"@libp2p/interface-registrar": "^2.0.8",
2023-02-09 02:21:03 +00:00
"@multiformats/multiaddr": "^11.4.0",
2022-11-01 03:48:52 +00:00
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"cspell": "^6.17.0",
2022-11-01 03:48:52 +00:00
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-functional": "^4.0.2",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.1",
"typescript": "^4.6.3"
},
2022-11-02 04:05:12 +00:00
"typedoc": {
"entryPoint": "./src/index.ts"
},
2022-11-01 03:48:52 +00:00
"files": [
"dist",
"bundle",
"src/*.ts",
"src/lib/**/*.ts",
"src/proto/**/*.ts",
"!**/*.spec.*",
"!**/*.json",
"CHANGELOG.md",
"LICENSE",
"README.md"
2022-11-01 05:30:24 +00:00
]
2022-11-01 03:48:52 +00:00
}