@vdcs/dc-api
Version:
Digital Credentials API and Passkey in typescript
60 lines (59 loc) • 1.43 kB
JSON
{
"name": "@vdcs/dc-api",
"version": "0.2.1",
"description": "Digital Credentials API and Passkey in typescript",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/hopae-official/Verifiable-Digital-Credentials.git"
},
"bugs": {
"url": "https://github.com/hopae-official/Verifiable-Digital-Credentials/issues"
},
"homepage": "https://vdcs.js.org",
"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": [
"digital-credentials",
"passkey",
"vcdm",
"sd-jwt",
"jwt"
],
"engines": {
"node": ">=16"
},
"author": "Lukas.J.Han <lukas.j.han@gmail.com>",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"tsup": {
"entry": [
"./src/index.ts"
],
"sourceMap": true,
"splitting": false,
"clean": true,
"dts": true,
"format": [
"cjs",
"esm"
]
},
"gitHead": "ba5624a87671d1b90bdf3cee8af746316ab72c4a"
}