@keypo/typescript-sdk
Version:
A TypeScript SDK for using Keypo
77 lines (76 loc) • 2.23 kB
JSON
{
"name": "@keypo/typescript-sdk",
"version": "1.0.36",
"description": "A TypeScript SDK for using Keypo",
"type": "module",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"files": [
"dist"
],
"scripts": {
"test": "jest",
"build": "rm -rf dist && npm run build:esm && npm run build:cjs && npm run build:package-json && npm run fix-esm-imports",
"build:esm": "tsc -p tsconfig.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:package-json": "node -e \"require('fs').writeFileSync('dist/cjs/package.json', JSON.stringify({ type: 'commonjs' }))\" && node -e \"require('fs').writeFileSync('dist/esm/package.json', JSON.stringify({ type: 'module' }))\"",
"fix-esm-imports": "node scripts/fix-esm-imports.js",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/decentralized-storage/keypo-sdk.git"
},
"keywords": [
"decentralized-storage",
"encryption",
"lit-protocol",
"typescript",
"sdk",
"web3",
"privacy"
],
"author": "Decentralized Storage Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/decentralized-storage/keypo-sdk/issues"
},
"homepage": "https://www.keypo.io",
"dependencies": {
"@lit-protocol/auth-browser": "^7.2.0",
"@lit-protocol/auth-helpers": "^7.2.0",
"@lit-protocol/constants": "^7.2.0",
"@lit-protocol/encryption": "^7.2.0",
"@lit-protocol/lit-node-client": "^7.2.0",
"@lit-protocol/types": "^7.2.0",
"@zerodev/ecdsa-validator": "^5.4.9",
"@zerodev/sdk": "^5.4.36",
"axios": "^1.7.9",
"graphql": "^16.11.0",
"graphql-request": "^7.2.0",
"viem": "^2.30.5"
},
"peerDependencies": {
"ethers": "^5.8.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.15.21",
"jest": "^29.7.0",
"ts-jest": "^29.3.4",
"vite": "^6.3.5"
}
}