2026-03-18 16:13:38 +01:00
|
|
|
{
|
|
|
|
|
"name": "@wizardconnect/react",
|
2026-04-21 14:50:54 +02:00
|
|
|
"version": "0.2.0",
|
2026-03-18 16:13:38 +01:00
|
|
|
"type": "module",
|
|
|
|
|
"description": "React components and hooks for WizardConnect dapp integration",
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "git+https://gitlab.com/riftenlabs/lib/wizardconnect.git",
|
|
|
|
|
"directory": "packages/react"
|
|
|
|
|
},
|
|
|
|
|
"main": "dist/index.js",
|
|
|
|
|
"types": "dist/index.d.ts",
|
|
|
|
|
"files": [
|
|
|
|
|
"dist/"
|
|
|
|
|
],
|
|
|
|
|
"scripts": {
|
|
|
|
|
"build": "tsc",
|
|
|
|
|
"test": "vitest --config vitest.config.ts --run --passWithNoTests",
|
|
|
|
|
"lint:prettier": "prettier --ignore-path ../../.gitignore . --list-different",
|
|
|
|
|
"lint:eslint": "eslint .",
|
|
|
|
|
"lint": "npm run lint:eslint && npm run lint:prettier",
|
|
|
|
|
"fix": "npm run fix:eslint && npm run fix:prettier",
|
|
|
|
|
"fix:prettier": "prettier --ignore-path ../../.gitignore . --write",
|
|
|
|
|
"fix:eslint": "npm run lint:eslint -- --fix"
|
|
|
|
|
},
|
|
|
|
|
"peerDependencies": {
|
|
|
|
|
"react": ">=18.0.0",
|
|
|
|
|
"react-dom": ">=18.0.0"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
|
|
|
|
"@wizardconnect/core": "*",
|
|
|
|
|
"@wizardconnect/dapp": "*",
|
|
|
|
|
"qrcode-generator": "^1.4.4"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2026-04-03 17:11:18 +02:00
|
|
|
"@types/react": "^19.0.0",
|
|
|
|
|
"@types/react-dom": "^19.0.0",
|
2026-03-18 16:13:38 +01:00
|
|
|
"happy-dom": "^20.8.4",
|
2026-04-03 17:11:18 +02:00
|
|
|
"react": "^19.0.0",
|
|
|
|
|
"react-dom": "^19.0.0",
|
2026-03-18 16:13:38 +01:00
|
|
|
"typescript": "^5.6.2",
|
chore(deps): resolve npm audit advisories
Declared ranges — the lockfile is not published, so these are what consumers
resolve against:
core ws ^8.18.0 -> ^8.21.3 (prod, vuln 8.0.0-8.20.1)
core, dapp, wallet, react vitest ^3.2.3 -> ^3.2.7 (dev, vuln <3.2.6)
Transitive, lockfile only: vite 7.3.2 -> 7.3.6, postcss 8.5.12 -> 8.5.26,
nanoid 3.3.11 -> 3.3.18, brace-expansion 5.0.5 -> 5.0.9.
npm audit --audit-level=moderate now exits 0. esbuild's low-severity Windows
dev-server advisory is left: needs a major bump behind a peer range.
2026-08-18 16:38:58 +02:00
|
|
|
"vitest": "^3.2.7"
|
2026-03-18 16:13:38 +01:00
|
|
|
}
|
|
|
|
|
}
|