31 lines
925 B
JSON
31 lines
925 B
JSON
{
|
|
"name": "@wizardconnect/wallet",
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"description": "Wallet-side integration helpers for WizardConnect",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"files": [
|
|
"dist/"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"test": "vitest --config vitest.config.ts --run --passWithNoTests",
|
|
"test:integration": "vitest --config vitest.integration.config.ts --run",
|
|
"lint:prettier": "prettier . --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 . --write",
|
|
"fix:eslint": "npm run lint:eslint -- --fix"
|
|
},
|
|
"dependencies": {
|
|
"@wizardconnect/core": "*",
|
|
"@bitauth/libauth": "^3.1.0-next.2",
|
|
"eventemitter3": "^5.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.6.2",
|
|
"vitest": "^3.2.3"
|
|
}
|
|
}
|