-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.59 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
{
"name": "@proof.com/x401-node",
"version": "0.2.0",
"description": "Node.js SDK for the x401 protocol.",
"keywords": [
"x401",
"HTTP",
"Verifiable Presentation",
"OID4VP",
"DCQL",
"Agent",
"Verifier",
"Proof",
"Proof.com"
],
"homepage": "https://github.com/proof/x401-node",
"bugs": "https://github.com/proof/x401-node/issues",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/proof/x401-node.git"
},
"license": "Apache-2.0",
"author": "Jeremie Charrier <jeremie.charrier@proof.com>",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"check-all": "yarn format && yarn lint && yarn typecheck && yarn test && yarn publint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"publint": "publint --pack npm",
"test": "node --test tests/*.test.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@owf/identity-common": "^0.3.0"
},
"devDependencies": {
"@types/node": "^25.9.1",
"ajv": "^8.20.0",
"ajv-formats": "^3.0.1",
"eslint": "^10.4.0",
"eslint-plugin-unused-imports": "^4.4.1",
"prettier": "^3.8.4",
"prettier-plugin-packagejson": "^3.0.2",
"publint": "^0.3.21",
"typescript": "^6.0.3",
"typescript-eslint": "^8.61.0"
},
"engines": {
"node": ">=22.0.0"
},
"publishConfig": {
"access": "public"
}
}