-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 1.82 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
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
77
78
79
80
{
"name": "@proof.com/proof-vc-web",
"version": "0.3.1",
"description": "Web Components for Proof Digital Credentials.",
"keywords": [
"VC",
"Verifiable Credentials",
"OID4VCI",
"OID4VCP",
"SD-JWT-VC",
"Selective Disclosures",
"Proof",
"Proof.com",
"OAuth",
"Web Component",
"Custom Element"
],
"homepage": "https://github.com/proof/proof-vc-web",
"bugs": "https://github.com/proof/proof-vc-web/issues",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/proof/proof-vc-web.git"
},
"license": "Apache-2.0",
"author": "Jeremie Charrier <jeremie.charrier@proof.com>",
"sideEffects": [
"./dist/index.js"
],
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./react": {
"types": "./dist/react.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"check-all": "yarn format && yarn lint && yarn typecheck && yarn publint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"publint": "publint --pack npm",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@proof.com/proof-vc-common": "^0.3.0"
},
"devDependencies": {
"@types/react": "^19.2.15",
"eslint": "^10.4.0",
"eslint-plugin-unused-imports": "^4.4.1",
"prettier": "^3.8.3",
"prettier-plugin-packagejson": "^3.0.2",
"publint": "^0.3.21",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.4"
},
"peerDependencies": {
"@types/react": "^19"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
},
"packageManager": "yarn@4.17.0",
"engines": {
"node": ">=22.0.0"
},
"publishConfig": {
"access": "public"
}
}