UNPKG

@sd-jwt/core

Version:

sd-jwt draft 7 implementation in typescript

66 lines (65 loc) 1.59 kB
{ "name": "@sd-jwt/core", "version": "0.17.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:cov", "test:node": "vitest run ./src/test/*.spec.ts", "test:browser": "vitest run ./src/test/*.spec.ts --environment jsdom", "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", "devDependencies": { "@sd-jwt/crypto-nodejs": "0.17.0" }, "dependencies": { "@sd-jwt/decode": "0.17.0", "@sd-jwt/present": "0.17.0", "@sd-jwt/types": "0.17.0", "@sd-jwt/utils": "0.17.0" }, "publishConfig": { "access": "public" }, "tsup": { "entry": [ "./src/index.ts" ], "sourceMap": true, "splitting": false, "clean": true, "dts": true, "format": [ "cjs", "esm" ] }, "gitHead": "9f37cdfbae982a647e61589fd88dfd79305105c1" }