UNPKG

@sd-jwt/sd-jwt-vc

Version:

sd-jwt draft 7 implementation in typescript

68 lines (67 loc) 1.73 kB
{ "name": "@sd-jwt/sd-jwt-vc", "version": "0.20.0", "description": "sd-jwt draft 7 implementation in typescript", "main": "dist/index.js", "module": "dist/index.mjs", "types": "dist/index.d.ts", "exports": { ".": { "import": "./dist/index.mjs", "require": "./dist/index.js" } }, "scripts": { "build": "rm -rf **/dist && tsup", "lint": "biome lint ./src", "test": "pnpm run test:node && pnpm run test:browser && pnpm run test:e2e && pnpm run test:cov", "test:node": "vitest run ./src/test/*.spec.ts", "test:browser": "vitest run ./src/test/*.spec.ts --environment jsdom", "test:e2e": "vitest run ./test/*e2e.spec.ts --environment node", "test:cov": "vitest run --coverage" }, "keywords": [ "sd-jwt", "sdjwt", "sd-jwt-vc" ], "engines": { "node": ">=20" }, "repository": { "url": "https://github.com/openwallet-foundation/sd-jwt-js" }, "author": "Lukas.J.Han <lukas.j.han@gmail.com>", "homepage": "https://github.com/openwallet-foundation/sd-jwt-js/wiki", "bugs": { "url": "https://github.com/openwallet-foundation/sd-jwt-js/issues" }, "license": "Apache-2.0", "dependencies": { "@owf/token-status-list": "^0.1.0-alpha-20260312123226", "@sd-jwt/core": "0.20.0", "zod": "^4.3.5" }, "devDependencies": { "@owf/crypto": "^0.1.0-alpha-20260312123226", "jose": "^6.1.2", "msw": "^2.12.3" }, "publishConfig": { "access": "public" }, "tsup": { "entry": [ "./src/index.ts" ], "sourceMap": true, "splitting": false, "clean": true, "dts": true, "format": [ "cjs", "esm" ] }, "gitHead": "af170ace9b42984f8c6447caf23256fde6204b31" }