WizardConnect/packages/dapp/package.json

35 lines
1,001 B
JSON
Raw Normal View History

2026-02-26 11:19:47 +01:00
{
"name": "@wizardconnect/dapp",
"version": "0.2.1",
2026-02-26 11:19:47 +01:00
"type": "module",
"description": "Dapp-side integration helpers for WizardConnect",
2026-03-09 16:27:24 +01:00
"repository": {
"type": "git",
"url": "https://gitlab.com/riftenlabs/lib/wizardconnect",
"directory": "packages/dapp"
},
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": {
"@wizardconnect/core": "*",
"eventemitter3": "^5.0.1"
},
"devDependencies": {
"typescript": "^5.6.2",
"vitest": "^3.2.3"
}
}