js-waku/package.json

55 lines
1.7 KiB
JSON
Raw Normal View History

2022-10-30 10:02:12 +00:00
{
"name": "@waku/root",
2022-10-30 10:02:12 +00:00
"private": true,
"type": "module",
2022-10-30 10:02:12 +00:00
"workspaces": [
"packages/utils",
"packages/proto",
"packages/interfaces",
"packages/enr",
"packages/core",
"packages/peer-exchange",
"packages/dns-discovery",
"packages/message-encryption",
"packages/create",
"packages/tests",
"packages/build-utils"
2022-10-30 10:02:12 +00:00
],
2022-10-30 10:12:01 +00:00
"scripts": {
2022-10-30 10:16:02 +00:00
"prepare": "husky install",
"build": "npm run build --workspaces --if-present",
"build:esm": "npm run build:esm --workspaces --if-present",
2022-10-30 21:56:48 +00:00
"size": "npm run build && size-limit",
"fix": "npm run fix --workspaces --if-present",
"fix:lint": "npm run fix:lint --workspaces --if-present",
"check": "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",
2022-11-02 04:05:12 +00:00
"doc": "run-s doc:*",
2023-02-09 03:45:32 +00:00
"doc:html": "typedoc --options typedoc.cjs",
"doc:cname": "echo 'js.waku.org' > docs/CNAME",
"publish": "node ./ci/publish.js"
2022-10-30 10:12:01 +00:00
},
2022-10-30 10:02:12 +00:00
"devDependencies": {
"@size-limit/preset-big-lib": "^8.2.4",
"gh-pages": "^5.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.1",
"size-limit": "^8.1.2",
"typedoc": "^0.23.26",
"typedoc-plugin-resolve-crossmodule-references": "^0.3.3"
},
2022-10-30 10:12:01 +00:00
"lint-staged": {
"*.{ts,js}": [
2022-10-30 10:12:01 +00:00
"eslint --fix"
],
2022-12-12 11:14:26 +00:00
"*.{ts,json,js,md,cjs}": [
2022-10-30 10:12:01 +00:00
"prettier --write"
]
2022-10-30 10:02:12 +00:00
}
}