@particle-network/wallet
Version:
A wallet component that can be easily injected into the developer's website to provide rich custom styles.
63 lines (62 loc) • 1.68 kB
JSON
{
"name": "@particle-network/wallet",
"version": "2.1.1",
"type": "module",
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.mjs",
"types": "./dist/types/index.d.ts",
"license": "Apache-2.0",
"homepage": "https://wallet.particle.network",
"files": [
"dist"
],
"engines": {
"node": ">=16"
},
"author": "Particle Network",
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"require": "./dist/cjs/index.cjs",
"default": "./dist/esm/index.mjs"
}
},
"sideEffects": false,
"keywords": [
"ethereum",
"solana",
"wallet",
"blockchain",
"auth",
"mpc",
"particle"
],
"scripts": {
"build": "mkdir -p dist/cjs && echo '{ \"type\": \"commonjs\" }' > dist/cjs/package.json && node build.js",
"build:dev": "NODE_ENV=development yarn build",
"build:watch": "yarn build --watch",
"clean": "rm -rf dist",
"dev": "yarn clean && NODE_ENV=development yarn build:watch & NODE_ENV=development yarn typegen:watch",
"prepare": "MINIFY_CSS=true yarn build",
"prebuild": "yarn typegen",
"typecheck": "yarn tsc --noEmit",
"typegen": "tsc --emitDeclarationOnly || true",
"typegen:watch": "tsc --emitDeclarationOnly --watch"
},
"dependencies": {
"@solana/web3.js": "^1.73.0",
"crypto-js": "^4.1.1",
"draggabilly": "^3.0.0",
"fast-json-stable-stringify": "^2.1.0",
"lodash": "^4.17.21",
"uuid": "^9.0.1"
},
"devDependencies": {
"@particle-network/auth-core": "^2.1.1",
"@types/draggabilly": "^2.1.6"
},
"gitHead": "4c9d08b92cbf7701cc60ca1a9dfeb732bc5b02dc"
}