-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.13 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "sd-jwt-decoder",
"version": "1.0.0",
"description": "A single-file, client-side tool to **decode** Selective Disclosure JWTs (SD-JWT) and optionally **verify the issuer signature** with a supplied public key (JWK). Built with React (UMD), Babel-in-the-browser, Tailwind via CDN, and JOSE (ESM) — all loaded from CDNs; **no build step required**.",
"main": "index.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sakimura/sd-jwt-decoder.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/sakimura/sd-jwt-decoder/issues"
},
"homepage": "https://github.com/sakimura/sd-jwt-decoder#readme",
"devDependencies": {
"@tailwindcss/cli": "^4.1.18",
"@tailwindcss/postcss": "^4.1.18",
"@vitejs/plugin-react": "^5.1.3",
"autoprefixer": "^10.4.24",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.18",
"vite": "^7.3.1"
},
"dependencies": {
"jose": "^6.1.3",
"react": "^19.2.4",
"react-dom": "^19.2.4"
}
}