| 123456789101112131415161718192021222324252627282930313233343536373839 |
- {
- "name": "@solana/wallet-adapter-particle",
- "version": "0.1.0",
- "author": "Solana Maintainers <maintainers@solana.foundation>",
- "repository": "https://github.com/solana-labs/wallet-adapter",
- "license": "Apache-2.0",
- "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"
- },
- "files": [
- "lib",
- "src",
- "LICENSE"
- ],
- "publishConfig": {
- "access": "public"
- },
- "scripts": {
- "clean": "shx mkdir -p lib && shx rm -rf lib"
- },
- "peerDependencies": {
- "@solana/web3.js": "^1.50.1"
- },
- "dependencies": {
- "@particle-network/solana-wallet": "^0.5.0",
- "@solana/wallet-adapter-base": "workspace:^"
- },
- "devDependencies": {
- "@solana/web3.js": "^1.50.1",
- "shx": "^0.3.4"
- }
- }
|