UNPKG

@manifoldxyz/client-sdk

Version:

Manifold Client SDK for headless purchasing and display of Manifold products

81 lines 1.94 kB
{ "name": "@manifoldxyz/client-sdk", "version": "0.5.0-beta.0", "description": "Manifold Client SDK for headless purchasing and display of Manifold products", "main": "./dist/index.cjs", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "exports": { ".": { "import": "./dist/index.mjs", "require": "./dist/index.cjs", "types": "./dist/index.d.ts" } }, "files": [ "dist" ], "keywords": [ "manifold", "web3", "nft", "ethereum", "sdk", "typescript" ], "author": "Manifold", "license": "MIT", "type": "module", "dependencies": { "@manifoldxyz/js-ts-utils": "^9.0.0", "@manifoldxyz/studio-apps-client-public": "^1.0.0-beta.0", "ethers": "^5.7.2" }, "peerDependencies": { "@wagmi/core": "^2.0.0", "viem": "^2.0.0" }, "peerDependenciesMeta": { "viem": { "optional": true }, "ethers": { "optional": true }, "@wagmi/core": { "optional": true } }, "devDependencies": { "@types/node": "^20.11.30", "@typescript-eslint/eslint-plugin": "^7.3.1", "@typescript-eslint/parser": "^7.3.1", "@vitest/coverage-v8": "^1.4.0", "@wagmi/core": "^2.22.1", "eslint": "^8.57.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-prettier": "^5.1.3", "prettier": "^3.2.5", "rimraf": "^5.0.5", "tslib": "^2.6.2", "typescript": "^5.4.3", "viem": "^2.37.9", "vite": "^5.4.20", "vite-plugin-dts": "^4.5.4", "vitest": "^1.4.0" }, "engines": { "node": ">=18" }, "scripts": { "build": "vite build", "dev": "vite build --watch", "test": "vitest run", "test:coverage": "vitest run --coverage", "lint": "eslint . --ext .ts,.tsx", "lint:fix": "eslint . --ext .ts,.tsx --fix", "typecheck": "tsc --noEmit", "clean": "rimraf dist", "playground": "cd playground && pnpm install && pnpm run dev" } }