2026-02-26 11:19:47 +01:00
|
|
|
{
|
|
|
|
|
"name": "@wizardconnect/core",
|
2026-04-21 14:50:54 +02:00
|
|
|
"version": "0.2.0",
|
2026-02-26 11:19:47 +01:00
|
|
|
"type": "module",
|
|
|
|
|
"description": "Transport and protocol primitives for WizardConnect",
|
2026-03-09 16:27:24 +01:00
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "https://gitlab.com/riftenlabs/lib/wizardconnect",
|
|
|
|
|
"directory": "packages/core"
|
|
|
|
|
},
|
2026-03-22 22:51:20 +01:00
|
|
|
"exports": {
|
|
|
|
|
".": {
|
|
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
|
"default": "./dist/index.js"
|
|
|
|
|
},
|
|
|
|
|
"./hdwalletv1-serialize": {
|
|
|
|
|
"types": "./dist/protocols/hdwalletv1-serialize.d.ts",
|
|
|
|
|
"default": "./dist/protocols/hdwalletv1-serialize.js"
|
|
|
|
|
}
|
|
|
|
|
},
|
2026-02-26 11:19:47 +01:00
|
|
|
"main": "dist/index.js",
|
|
|
|
|
"types": "dist/index.d.ts",
|
|
|
|
|
"files": [
|
|
|
|
|
"dist/"
|
|
|
|
|
],
|
|
|
|
|
"scripts": {
|
|
|
|
|
"build": "tsc",
|
|
|
|
|
"test": "vitest --config vitest.config.ts --run --passWithNoTests",
|
2026-03-06 14:01:41 +01:00
|
|
|
"lint:prettier": "prettier --ignore-path ../../.gitignore . --list-different",
|
2026-02-26 11:19:47 +01:00
|
|
|
"lint:eslint": "eslint .",
|
|
|
|
|
"lint": "npm run lint:eslint && npm run lint:prettier",
|
|
|
|
|
"fix": "npm run fix:eslint && npm run fix:prettier",
|
2026-03-06 14:01:41 +01:00
|
|
|
"fix:prettier": "prettier --ignore-path ../../.gitignore . --write",
|
2026-02-26 11:19:47 +01:00
|
|
|
"fix:eslint": "npm run lint:eslint -- --fix"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
|
|
|
|
"@bch-wc2/interfaces": "^0.0.8",
|
2026-03-26 08:46:26 +01:00
|
|
|
"nostr-tools": "^2.23.0",
|
2026-02-26 11:19:47 +01:00
|
|
|
"@bitauth/libauth": "^3.1.0-next.2",
|
|
|
|
|
"eventemitter3": "^5.0.1",
|
|
|
|
|
"isomorphic-ws": "^5.0.0",
|
|
|
|
|
"lossless-json": "^4.3.0",
|
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
|
|
|
"ws": "^8.21.3"
|
2026-02-26 11:19:47 +01:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"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-02-26 11:19:47 +01:00
|
|
|
}
|
|
|
|
|
}
|