@sd-jwt/present
Version:
sd-jwt draft 7 implementation in typescript
66 lines (65 loc) • 1.6 kB
JSON
{
"name": "@sd-jwt/present",
"version": "0.14.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": ">=18"
},
"repository": {
"type": "git",
"url": "https://github.com/openwallet-foundation-labs/sd-jwt-js"
},
"author": "Lukas.J.Han <lukas.j.han@gmail.com>",
"homepage": "https://github.com/openwallet-foundation-labs/sd-jwt-js/wiki",
"bugs": {
"url": "https://github.com/openwallet-foundation-labs/sd-jwt-js/issues"
},
"license": "Apache-2.0",
"devDependencies": {
"@sd-jwt/crypto-nodejs": "0.14.0"
},
"dependencies": {
"@sd-jwt/decode": "0.14.0",
"@sd-jwt/types": "0.14.0",
"@sd-jwt/utils": "0.14.0"
},
"publishConfig": {
"access": "public"
},
"tsup": {
"entry": [
"./src/index.ts"
],
"sourceMap": true,
"splitting": false,
"clean": true,
"dts": true,
"format": [
"cjs",
"esm"
]
},
"gitHead": "121c6d9d3a9df09e9bbaf9a20b7759aa79ec091d"
}