UNPKG

@worldcoin/idkit-standalone

Version:

The identity SDK. Privacy-preserving identity and proof of personhood with World ID.

78 lines 1.96 kB
{ "name": "@worldcoin/idkit-standalone", "version": "2.2.5", "homepage": "https://docs.world.org/id/idkit", "license": "MIT", "private": false, "description": "The identity SDK. Privacy-preserving identity and proof of personhood with World ID.", "repository": { "type": "git", "directory": "packages/standalone", "url": "git+https://github.com/worldcoin/idkit-js" }, "type": "module", "main": "src/index.tsx", "exports": { ".": { "import": { "types": "./build/index.d.ts", "default": "./build/index.global.js" }, "require": { "types": "./build/index.d.cts", "default": "./build/index.cjs" } } }, "types": "./build/index.d.ts", "engines": { "node": ">=12.4" }, "files": [ "build", "README.md" ], "keywords": [ "identity", "ID", "web3", "proof-of-personhood", "sybil resistance" ], "dependencies": { "react": ">18.0.0", "react-dom": ">18.0.0", "@worldcoin/idkit": "^2.4.2", "@worldcoin/idkit-core": "^2.1.0" }, "publishConfig": { "access": "public" }, "devDependencies": { "@types/react": "18.0.25", "@types/react-dom": "18.0.9", "@typescript-eslint/eslint-plugin": "^6.13.1", "@typescript-eslint/parser": "^6.13.1", "concurrently": "^8.2.2", "eslint": "8.54.0", "http-server": "^14.1.1", "prettier": "^2.8.8", "prettier-plugin-sort-imports-desc": "^1.0.0", "puppeteer": "^22.15.0", "ts-node": "^10.9.2", "tsup": "^8.1.0", "typescript": "^5.3.2", "zustand": "^4.5.0" }, "overrides": { "rollup": "^4.22.4" }, "scripts": { "build": "tsup", "dev": "tsup --watch", "lint": "eslint src --ext .tsx", "test": "concurrently --kill-others \"http-server ./build/ -p 8080\" \"pnpm test:browser\"", "test:browser": "node src/browser.test.js &", "install-chrome": "puppeteer browsers install chrome" } }