@lit-protocol/e2e
Version:
Lit Protocol E2E testing package for running comprehensive integration tests
65 lines (64 loc) • 1.55 kB
JSON
{
"name": "@lit-protocol/e2e",
"version": "1.0.0",
"description": "Lit Protocol E2E testing package for running comprehensive integration tests",
"main": "dist/index.js",
"module": "dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"example.js"
],
"scripts": {
"build": "bun run build:cjs && bun run build:esm",
"build:cjs": "bun build src/index.ts --outdir dist --format cjs --outfile index.js",
"build:esm": "bun build src/index.ts --outdir dist --format esm --outfile index.mjs",
"prepublishOnly": "bun run build",
"test": "bun test",
"test:watch": "bun test --watch"
},
"keywords": [
"lit-protocol",
"e2e",
"testing",
"integration-tests",
"blockchain",
"pkp",
"encryption"
],
"author": "Lit Protocol",
"license": "MIT",
"dependencies": {
"@lit-protocol/auth": "workspace:*",
"@lit-protocol/lit-client": "workspace:*",
"@lit-protocol/networks": "workspace:*",
"viem": "^2.0.0",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0"
},
"peerDependencies": {
"@lit-protocol/auth": "*",
"@lit-protocol/lit-client": "*",
"@lit-protocol/networks": "*"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/LitProtocol/js-sdk.git",
"directory": "e2e"
},
"publishConfig": {
"access": "public"
}
}