zerokey
Version:
Zero-knowledge cross-domain secret sharing library using ECDH encryption
68 lines (67 loc) • 1.64 kB
JSON
{
"name": "zerokey",
"version": "1.1.3",
"description": "Zero-knowledge cross-domain secret sharing library using ECDH encryption",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"browser": true,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./client": {
"types": "./dist/client.d.ts",
"import": "./dist/client.js",
"require": "./dist/client.cjs"
},
"./server": {
"types": "./dist/server.d.ts",
"import": "./dist/server.js",
"require": "./dist/server.cjs"
}
},
"files": [
"dist",
"client.js",
"server.js"
],
"scripts": {
"build": "tsup",
"build:watch": "tsup --watch",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"test": "npm run build && playwright test",
"test:debug": "playwright test --debug",
"test:headed": "playwright test --headed",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"tidy": "biome check --write . && biome format --write .",
"prepublishOnly": "npm run build"
},
"keywords": [
"crypto",
"ecdh",
"cross-domain",
"zero-knowledge",
"secret-sharing",
"encryption"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@playwright/test": "^1.40.0",
"@types/node": "^24.0.4",
"express": "^4.18.0",
"tsup": "^8.5.0",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=14.0.0"
}
}