UNPKG

@mysten/window-wallet-core

Version:
50 lines 1.44 kB
{ "name": "@mysten/window-wallet-core", "version": "0.0.6", "description": "Window wallet core functionality", "license": "Apache-2.0", "author": "Mysten Labs <build@mystenlabs.com>", "type": "commonjs", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.js", "types": "./dist/cjs/index.d.ts", "exports": { ".": { "import": "./dist/esm/index.js", "require": "./dist/cjs/index.js" } }, "sideEffects": false, "files": [ "CHANGELOG.md", "dist" ], "repository": { "type": "git", "url": "git+https://github.com/mystenlabs/ts-sdks.git" }, "bugs": { "url": "https://github.com/mystenlabs/ts-sdks/issues" }, "homepage": "https://github.com/MystenLabs/ts-sdks/tree/main/packages/window-wallet-core#readme", "devDependencies": { "typescript": "^5.8.3", "vitest": "^3.2.1", "@mysten/build-scripts": "0.0.0" }, "dependencies": { "jose": "^6.0.11", "valibot": "^0.36.0", "@mysten/utils": "0.1.1" }, "scripts": { "clean": "rm -rf tsconfig.tsbuildinfo ./dist", "build": "build-package", "prettier:check": "prettier -c --ignore-unknown .", "prettier:fix": "prettier -w --ignore-unknown .", "eslint:check": "eslint --max-warnings=0 .", "eslint:fix": "pnpm run eslint:check --fix", "lint": "pnpm run eslint:check && pnpm run prettier:check", "lint:fix": "pnpm run eslint:fix && pnpm run prettier:fix" } }