| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- {
- "private": true,
- "name": "@solana/wallet-adapter",
- "author": "Solana Maintainers <maintainers@solana.foundation>",
- "repository": "https://github.com/solana-labs/wallet-adapter",
- "license": "Apache-2.0",
- "type": "module",
- "engines": {
- "node": ">=16",
- "pnpm": ">=7"
- },
- "workspaces": {
- "packages": [
- "packages/*/*"
- ]
- },
- "scripts": {
- "nuke": "shx rm -rf packages/*/*/node_modules node_modules pnpm-lock.yaml || true",
- "reinstall": "pnpm run nuke && pnpm install",
- "clean": "pnpm --recursive run clean",
- "build": "tsc --project tsconfig.all.json --build --verbose",
- "watch": "tsc --project tsconfig.all.json --build --verbose --watch",
- "release": "pnpm run clean && pnpm run build",
- "version": "lerna version --no-git-tag-version --no-push",
- "publish": "lerna publish from-package",
- "fmt": "prettier --write '{*,**/*}.{ts,tsx,js,jsx,json}'",
- "lint": "prettier --check '{*,**/*}.{ts,tsx,js,jsx,json}' && eslint .",
- "lint:fix": "pnpm run fmt && eslint --fix .",
- "test": "pnpm --recursive run test",
- "docs": "shx rm -rf docs && NODE_OPTIONS=--max_old_space_size=16000 typedoc && shx cp ./{.nojekyll,wallets.png} docs/",
- "deploy": "pnpm run deploy:docs && pnpm run deploy:example",
- "deploy:docs": "pnpm run docs && gh-pages --dist docs --dotfiles",
- "deploy:example": "gh-pages --dist packages/starter/example/out --dest example --dotfiles"
- },
- "devDependencies": {
- "@types/node": "^18.6.4",
- "@typescript-eslint/eslint-plugin": "^5.32.0",
- "@typescript-eslint/parser": "^5.32.0",
- "eslint": "^8.20.0",
- "eslint-config-prettier": "^8.5.0",
- "eslint-plugin-prettier": "^4.2.1",
- "gh-pages": "^4.0.0",
- "lerna": "^5.3.0",
- "pnpm": "^7.8.0",
- "prettier": "^2.7.1",
- "shx": "^0.3.4",
- "typedoc": "^0.23.10",
- "typescript": "^4.7.4"
- },
- "overrides": {
- "@ledgerhq/devices": "6.27.1",
- "@ledgerhq/hw-transport": "6.27.1",
- "@ledgerhq/hw-transport-webhid": "6.27.1"
- },
- "resolutions": {
- "@ledgerhq/devices": "6.27.1",
- "@ledgerhq/hw-transport": "6.27.1",
- "@ledgerhq/hw-transport-webhid": "6.27.1"
- }
- }
|