2025-10-22 21:38:28 -07:00
|
|
|
{
|
|
|
|
|
"name": "@waku/run",
|
2025-11-04 15:56:42 +01:00
|
|
|
"version": "0.0.2",
|
2025-10-22 21:38:28 -07:00
|
|
|
"description": "Run a local Waku network for development and testing",
|
|
|
|
|
"type": "module",
|
|
|
|
|
"author": "Waku Team",
|
|
|
|
|
"homepage": "https://github.com/waku-org/js-waku/tree/master/packages/run#readme",
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "git+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",
|
|
|
|
|
"communication",
|
|
|
|
|
"web3",
|
|
|
|
|
"testing",
|
|
|
|
|
"development"
|
|
|
|
|
],
|
|
|
|
|
"bin": {
|
|
|
|
|
"waku-run": "./dist/src/cli.js"
|
|
|
|
|
},
|
|
|
|
|
"files": [
|
|
|
|
|
"dist",
|
|
|
|
|
"docker-compose.yml",
|
|
|
|
|
"init-db.sh",
|
|
|
|
|
"README.md"
|
|
|
|
|
],
|
|
|
|
|
"scripts": {
|
|
|
|
|
"build": "tsc",
|
|
|
|
|
"prepublishOnly": "npm run build",
|
|
|
|
|
"start": "node dist/scripts/start.js",
|
|
|
|
|
"stop": "node dist/scripts/stop.js",
|
|
|
|
|
"restart": "npm run stop && npm run start",
|
|
|
|
|
"logs": "node dist/scripts/logs.js",
|
|
|
|
|
"info": "node dist/scripts/info.js",
|
|
|
|
|
"test": "if [ \"$CI\" = \"true\" ]; then echo 'Skipping tests in CI'; exit 0; fi && NODE_ENV=test node ./src/run-tests.js \"tests/basic.spec.ts\"",
|
|
|
|
|
"fix": "run-s fix:*",
|
|
|
|
|
"fix:lint": "eslint src scripts tests --fix",
|
|
|
|
|
"check": "run-s check:*",
|
|
|
|
|
"check:tsc": "tsc -p tsconfig.dev.json",
|
|
|
|
|
"check:lint": "eslint src scripts tests",
|
|
|
|
|
"check:spelling": "cspell \"{README.md,src/**/*.ts,scripts/**/*.ts,tests/**/*.ts}\""
|
|
|
|
|
},
|
|
|
|
|
"engines": {
|
|
|
|
|
"node": ">=22"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2025-11-04 15:56:42 +01:00
|
|
|
"@waku/core": "0.0.40",
|
2025-10-22 21:38:28 -07:00
|
|
|
"@waku/interfaces": "*",
|
2025-11-04 15:56:42 +01:00
|
|
|
"@waku/sdk": "0.0.36",
|
2025-10-22 21:38:28 -07:00
|
|
|
"@waku/utils": "*"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@types/chai": "^4.3.11",
|
|
|
|
|
"@types/mocha": "^10.0.6",
|
|
|
|
|
"chai": "^4.3.10",
|
|
|
|
|
"cspell": "^8.6.1",
|
|
|
|
|
"mocha": "^10.3.0",
|
|
|
|
|
"npm-run-all": "^4.1.5",
|
|
|
|
|
"ts-node": "^10.9.2",
|
|
|
|
|
"typescript": "^5.3.3"
|
|
|
|
|
}
|
|
|
|
|
}
|