{"id":23734261,"url":"https://github.com/masterkale/simpledigicreds","last_synced_at":"2025-06-26T16:36:14.724Z","repository":{"id":268334199,"uuid":"904024413","full_name":"MasterKale/SimpleDigiCreds","owner":"MasterKale","description":"A collection of TypeScript-first libraries for simpler Digital Credential presentation and verification. Supports modern browsers, Node, Deno, and more.","archived":false,"fork":false,"pushed_at":"2024-12-16T06:21:20.000Z","size":19,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-12-24T22:48:01.333Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MasterKale.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-12-16T05:30:07.000Z","updated_at":"2024-12-16T06:21:54.000Z","dependencies_parsed_at":"2024-12-16T05:43:21.246Z","dependency_job_id":"8a5264f1-b430-42b2-90de-dafff6791b57","html_url":"https://github.com/MasterKale/SimpleDigiCreds","commit_stats":null,"previous_names":["masterkale/simpledigicreds"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MasterKale%2FSimpleDigiCreds","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MasterKale%2FSimpleDigiCreds/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MasterKale%2FSimpleDigiCreds/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MasterKale%2FSimpleDigiCreds/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MasterKale","download_url":"https://codeload.github.com/MasterKale/SimpleDigiCreds/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":231949207,"owners_count":18450458,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-12-31T05:39:06.048Z","updated_at":"2025-06-26T16:36:14.716Z","avatar_url":"https://github.com/MasterKale.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SimpleDigiCreds \u003c!-- omit in toc --\u003e\n\n- [Disclaimer](#disclaimer)\n- [Overview](#overview)\n- [Installation](#installation)\n- [Supported Features](#supported-features)\n  - [OID4VP - All doc formats](#oid4vp---all-doc-formats)\n  - [OID4VP - SD-JWT-VC](#oid4vp---sd-jwt-vc)\n- [Example Site](#example-site)\n- [Contributions](#contributions)\n- [Development](#development)\n\n## Disclaimer\n\n**THIS PROJECT IS A WIP RIGHT NOW! THE CORE API MAY CHANGE MORE QUICKLY THAN YOU LIKE!**\n\n## Overview\n\nThis project makes it easier to request presentations of **ISO 18013-5 mDL** and **IETF SD-JWT-VC**\ndigital credentials using **OID4VP (draft 24)** via the\n[Digital Credentials API](https://w3c-fedid.github.io/digital-credentials/). The following packages\nare maintained here to achieve this:\n\n- ~~[@simpledigicreds/browser](https://github.com/MasterKale/SimpleDigiCreds/tree/main/packages/browser)~~\n  (still pondering the necessity of this)\n- [@simpledigicreds/server](https://github.com/MasterKale/SimpleDigiCreds/tree/main/packages/server)\n\n## Installation\n\nSimpleDigiCreds can be installed from **[NPM](https://www.npmjs.com/search?q=%40simpledigicreds)**\nand **[JSR](https://jsr.io/@simpledigicreds)** in **Node LTS 22.x and higher**, **Deno 2.1 and\nhigher** projects, and other compatible runtimes (Cloudflare Workers, Bun, etc...)\n\nSee the packages' READMEs for more specific installation information.\n\n## Supported Features\n\n### OID4VP - All doc formats\n\n- Unencrypted requests\n- Unencrypted responses\n- Encrypted responses (following\n  [OID4VC HAIP](https://openid.net/specs/openid4vc-high-assurance-interoperability-profile-1_0-03.html#section-6))\n- Stateless presentation verification\n\n### OID4VP - SD-JWT-VC\n\n- Key binding verification\n\n## Example Site\n\nAn example site is included to help test credential presentation locally. Run the following command\nlocally to get started:\n\n```sh\n# Deno 2.1+\n$\u003e deno task example:start\n```\n\nThe site will be available at http://localhost:4000 to test out SimpleDigiCreds and the Digital\nCredentials API.\n\n## Contributions\n\nThe SimpleDigiCreds project is not currently open to external contributions.\n\nPlease [submit an Issue](https://github.com/MasterKale/SimpleDigiCreds/issues/new/choose) and fill\nout the provided template with as much information as possible if you have found a bug in need of\nfixing.\n\nYou can also [submit an Issue](https://github.com/MasterKale/SimpleDigiCreds/issues/new/choose) to\nrequest new features, or to suggest changes to existing features.\n\n## Development\n\nInstall the following before proceeding:\n\n- **Deno 2.1+**\n\nAfter pulling down the code, set up dependencies:\n\n```sh\n$\u003e deno install\n```\n\nTo run unit tests for all workspace packages, use the `test` series of scripts:\n\n```sh\n# Run an individual package's tests\n$\u003e cd packages/browser/ \u0026\u0026 deno task test\n$\u003e cd packages/server/ \u0026\u0026 deno task test\n```\n\nTests can be run in watch mode with the `test:watch` series of scripts:\n\n```sh\n$\u003e cd packages/browser/ \u0026\u0026 deno task test:watch\n$\u003e cd packages/server/ \u0026\u0026 deno task test:watch\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmasterkale%2Fsimpledigicreds","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmasterkale%2Fsimpledigicreds","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmasterkale%2Fsimpledigicreds/lists"}