Files
FrenoCorp/node_modules/@wallet-standard/errors/package.json
Michael Freno 7c684a42cc FRE-600: Fix code review blockers
- Consolidated duplicate UndoManagers to single instance
- Fixed connection promise to only resolve on 'connected' status
- Fixed WebSocketProvider import (WebsocketProvider)
- Added proper doc.destroy() cleanup
- Renamed isPresenceInitialized property to avoid conflict

Co-Authored-By: Paperclip <noreply@paperclip.ing>
2026-04-25 00:08:01 -04:00

53 lines
1.3 KiB
JSON

{
"name": "@wallet-standard/errors",
"version": "0.1.1",
"author": "Solana Maintainers <maintainers@solana.foundation>",
"repository": "https://github.com/wallet-standard/wallet-standard",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"files": [
"bin",
"lib",
"src",
"LICENSE"
],
"engines": {
"node": ">=16"
},
"type": "module",
"sideEffects": false,
"bin": "./bin/cli.mjs",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/types/index.d.ts",
"exports": {
"require": "./lib/cjs/index.js",
"import": "./lib/esm/index.js",
"types": "./lib/types/index.d.ts"
},
"targets": {
"bin": {
"context": "node",
"distDir": "lib/",
"isLibrary": true,
"optimize": false,
"sourceMap": false
}
},
"dependencies": {
"chalk": "^5.4.1",
"commander": "^13.1.0"
},
"devDependencies": {
"parcel": "^2.14.4",
"shx": "^0.4.0"
},
"scripts": {
"clean": "shx mkdir -p lib && shx rm -rf lib",
"build": "parcel build --target bin src/cli.ts",
"package": "shx mkdir -p lib/cjs && shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json",
"test": "jest -c ../../../node_modules/@wallet-standard/test-config/jest.config.ts --rootDir ."
}
}