WizardConnect/package.json
Dagur Valberg Johannsson 45fd9f4cb5
Add 'react' package with QR code and modal dialog
Makes it easier for dapp developers to integrate WizardConnect and have
consistent user interface for it across dapps.
2026-03-18 16:34:41 +01:00

32 lines
1.2 KiB
JSON

{
"name": "wizardconnect",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build -w packages/core -w packages/dapp -w packages/wallet -w packages/react -w packages/test-cli",
"test": "npm run test --workspaces --if-present",
"test:integration": "npm run test:integration --workspaces --if-present",
"dapp": "npm run dapp --workspace @wizardconnect/test-cli",
"wallet": "npm run wallet --workspace @wizardconnect/test-cli",
"docs:serve": "zensical serve",
"docs:build": "zensical build",
"lint:copyright": "node linters/copyright_check.mjs",
"lint:prettier": "npm run lint:prettier --workspaces --if-present",
"lint:eslint": "npm run lint:eslint --workspaces --if-present",
"lint": "npm run lint:eslint && npm run lint:prettier",
"fix": "npm run fix --workspaces --if-present",
"fix:prettier": "npm run fix:prettier --workspaces --if-present",
"fix:eslint": "npm run fix:eslint --workspaces --if-present"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.43.0",
"eslint": "^10.0.1",
"globals": "^17.3.0",
"prettier": "^3.2.5",
"typescript-eslint": "^8.56.0"
}
}