forked from openwallet-foundation/sd-jwt-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.66 KB
/
package.json
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
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "@sd-jwt/sd-jwt-vc",
"description": "sd-jwt implementation in typescript",
"scripts": {
"build": "lerna run build --stream",
"lint": "biome lint ./packages",
"format": "biome format . --write",
"biome:ci": "biome ci .",
"test": "vitest run --coverage.enabled=true --coverage.include=packages/*",
"test:watch": "vitest",
"clean": "lerna clean -y",
"publish:latest": "lerna publish --no-private --conventional-commits --include-merged-tags --create-release github --yes --dist-tag latest",
"publish:next": "lerna publish --no-private --conventional-prerelease --force-publish --canary --no-git-tag-version --include-merged-tags --preid next --pre-dist-tag next --yes",
"prepare": "husky"
},
"keywords": [
"sd-jwt",
"sdjwt",
"sd-jwt-vc"
],
"engines": {
"node": ">=18",
"pnpm": ">=9"
},
"repository": {
"type": "git",
"url": "https://github.com/openwallet-foundation-labs/sd-jwt-js"
},
"author": "Lukas.J.Han <lukas.j.han@gmail.com>",
"homepage": "https://sdjwt.js.org",
"bugs": {
"url": "https://github.com/openwallet-foundation-labs/sd-jwt-js/issues"
},
"license": "Apache-2.0",
"devDependencies": {
"@biomejs/biome": "^1.6.0",
"@types/node": "^20.10.2",
"@vitest/coverage-v8": "^1.2.2",
"husky": "^9.0.11",
"jose": "^5.2.2",
"jsdom": "^24.0.0",
"lerna": "^8.1.2",
"ts-node": "^10.9.1",
"tsup": "^8.0.2",
"typescript": "^5.3.2",
"vite": "^5.1.1",
"vitest": "^1.2.2"
},
"packageManager": "pnpm@9.4.0+sha512.f549b8a52c9d2b8536762f99c0722205efc5af913e77835dbccc3b0b0b2ca9e7dc8022b78062c17291c48e88749c70ce88eb5a74f1fa8c4bf5e18bb46c8bd83a"
}