-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathpackage.json
76 lines (76 loc) · 2.07 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
72
73
74
75
76
{
"name": "did-jwt-vc",
"version": "4.0.6",
"description": "Create and verify W3C Verifiable Credentials and Presentations in JWT format",
"type": "module",
"source": "src/index.ts",
"main": "./lib/index.cjs",
"module": "./lib/index.module.js",
"types": "./lib/index.d.ts",
"files": [
"lib",
"dist",
"src",
"LICENSE"
],
"exports": {
".": {
"types": "./lib/index.d.ts",
"require": "./lib/index.cjs",
"import": "./lib/index.module.js"
}
},
"scripts": {
"test": "cross-env NODE_OPTIONS=\"--experimental-vm-modules\" jest",
"test:ci": "yarn test --coverage",
"build": "microbundle --compress=false",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint --ignore-pattern \"src/**/*.test.[jt]s\" \"src/**/*.[jt]s\"",
"prepublishOnly": "yarn test:ci && yarn format && yarn lint",
"release": "semantic-release --debug"
},
"author": "mi-xu",
"contributors": [
"Mircea Nistor"
],
"license": "ISC",
"dependencies": {
"did-jwt": "^8.0.0",
"did-resolver": "^4.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/decentralized-identity/did-jwt-vc.git"
},
"devDependencies": {
"@babel/core": "7.26.9",
"@babel/preset-env": "7.26.9",
"@babel/preset-typescript": "7.26.0",
"@noble/curves": "1.8.1",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/elliptic": "6.4.18",
"@types/faker": "6.6.11",
"@types/jest": "29.5.14",
"@types/node": "22.13.4",
"@typescript-eslint/eslint-plugin": "8.24.0",
"@typescript-eslint/parser": "8.24.0",
"cross-env": "7.0.3",
"eslint": "9.20.1",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-jest": "28.11.0",
"eslint-plugin-prettier": "5.2.3",
"ethr-did": "3.0.25",
"@faker-js/faker": "9.5.0",
"jest": "29.7.0",
"microbundle": "0.15.1",
"prettier": "3.5.1",
"semantic-release": "24.2.3",
"ts-jest": "29.2.5",
"typescript": "5.7.3"
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]"
}