mirror of https://github.com/waku-org/js-waku.git
66 lines
2.1 KiB
JSON
66 lines
2.1 KiB
JSON
{
|
|
"name": "@waku/root",
|
|
"private": true,
|
|
"type": "module",
|
|
"workspaces": [
|
|
"packages/interfaces",
|
|
"packages/utils",
|
|
"packages/proto",
|
|
"packages/enr",
|
|
"packages/core",
|
|
"packages/relay",
|
|
"packages/message-hash",
|
|
"packages/peer-exchange",
|
|
"packages/dns-discovery",
|
|
"packages/message-encryption",
|
|
"packages/sdk",
|
|
"packages/tests",
|
|
"packages/browser-tests",
|
|
"packages/build-utils"
|
|
],
|
|
"scripts": {
|
|
"prepare": "husky install",
|
|
"build": "npm run build --workspaces --if-present",
|
|
"build:esm": "npm run build:esm --workspaces --if-present",
|
|
"size": "npm run build && size-limit",
|
|
"fix": "run-s fix:*",
|
|
"fix:workspaces": "npm run fix --workspaces --if-present",
|
|
"check": "run-s check:*",
|
|
"check:workspaces": "npm run check --workspaces --if-present",
|
|
"check:ws": "[ $(ls -1 ./packages|wc -l) -eq $(cat package.json | jq '.workspaces | length') ] || exit 1 # check no packages left behind",
|
|
"test": "npm run test --workspaces --if-present",
|
|
"test:browser": "npm run test:browser --workspaces --if-present",
|
|
"test:node": "npm run test:node --workspaces --if-present",
|
|
"proto": "npm run proto --workspaces --if-present",
|
|
"deploy": "node ci/deploy.js",
|
|
"doc": "run-s doc:*",
|
|
"doc:html": "typedoc --options typedoc.cjs",
|
|
"doc:cname": "echo 'js.waku.org' > docs/CNAME",
|
|
"publish": "node ./ci/publish.js"
|
|
},
|
|
"devDependencies": {
|
|
"@size-limit/preset-big-lib": "^8.2.4",
|
|
"@typescript-eslint/eslint-plugin": "^6.6.0",
|
|
"@typescript-eslint/parser": "^6.6.0",
|
|
"eslint": "^8.47.0",
|
|
"eslint-config-prettier": "^9.0.0",
|
|
"eslint-plugin-eslint-comments": "^3.2.0",
|
|
"eslint-plugin-functional": "^6.0.0",
|
|
"eslint-plugin-import": "^2.27.5",
|
|
"eslint-plugin-prettier": "^5.0.0",
|
|
"gh-pages": "^5.0.0",
|
|
"husky": "^8.0.3",
|
|
"lint-staged": "^14.0.1",
|
|
"size-limit": "^9.0.0",
|
|
"ts-loader": "^9.4.2",
|
|
"ts-node": "^10.9.1",
|
|
"typedoc": "^0.25.1",
|
|
"typescript": "^5.2.2"
|
|
},
|
|
"lint-staged": {
|
|
"*.{ts,js}": [
|
|
"eslint --fix"
|
|
]
|
|
}
|
|
}
|