generated from cheqd/.github
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (71 loc) · 2.63 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "sd-jwt-ts",
"private": true,
"version": "1.0.0",
"description": "[![GitHub release (latest by date)](https://img.shields.io/github/v/release/cheqd/.github?color=green&label=stable%20release&style=flat-square)](https://github.com/cheqd/.github/releases/latest) ![GitHub Release Date](https://img.shields.io/github/release-date/cheqd/.github?color=green&style=flat-square) [![GitHub license](https://img.shields.io/github/license/cheqd/.github?color=blue&style=flat-square)](https://github.com/cheqd/.github/blob/main/LICENSE)",
"repository": {
"type": "git",
"url": "https://github.com/Eengineer1/sd-jwt-ts.git"
},
"main": "src/index.ts",
"type": "module",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"*",
"dist/*",
"dist/*/index"
]
}
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"scripts": {
"build": "lerna run build",
"test": "cross-env NODE_OPTIONS='--experimental-vm-modules' jest --colors --passWithNoTests --maxWorkers 1 --maxConcurrency 1",
"format": "for dir in packages/*/; do [ -f \"${dir}package.json\" ] && (cd \"$dir\" && pnpm run format); done",
"release": "for dir in packages/*/; do [ -f \"${dir}package.json\" ] && (cd \"$dir\" && pnpm run release); done",
"release:debug": "for dir in packages/*/; do [ -f \"${dir}package.json\" ] && (cd \"$dir\" && pnpm run release --debug); done",
"release:dry-run": "for dir in packages/*/; do [ -f \"${dir}package.json\" ] && (cd \"$dir\" && pnpm run release:dry-run); done",
"release:dry-run:debug": "for dir in packages/*/; do [ -f \"${dir}package.json\" ] && (cd \"$dir\" && pnpm run release:dry-run --debug); done"
},
"keywords": [
"sd-jwt",
"verifiable-credentials"
],
"author": "Eengineer1",
"license": "ISC",
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
"@semantic-release/npm": "^11.0.2",
"@semantic-release/release-notes-generator": "^12.1.0",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.5",
"conventional-changelog-angular": "^7.0.0",
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"lerna": "^8.0.1",
"nx": "^17.1.3",
"prettier": "^3.1.1",
"semantic-release": "^22.0.12",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"jose": "^5.2.0",
"uint8arrays": "^4.0.10"
},
"engines": {
"node": ">=18.17.0"
}
}