UNPKG

@wallet-standard/features

Version:

This package defines TypeScript types for **Standard Features** -- canonical, chain-agnostic features using the `standard` namespace of the Wallet Standard.

38 lines 930 B
{ "name": "@wallet-standard/features", "version": "1.1.0", "author": "Solana Maintainers <maintainers@solana.foundation>", "repository": "https://github.com/wallet-standard/wallet-standard", "license": "Apache-2.0", "publishConfig": { "access": "public" }, "files": [ "lib", "src", "LICENSE" ], "engines": { "node": ">=16" }, "type": "module", "sideEffects": false, "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" }, "dependencies": { "@wallet-standard/base": "^1.1.0" }, "devDependencies": { "shx": "^0.3.4" }, "scripts": { "clean": "shx mkdir -p lib && shx rm -rf lib", "package": "shx mkdir -p lib/cjs && shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json" } }