-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.39 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.39 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
81
82
83
84
85
86
87
{
"name": "@interop/did-web-resolver",
"description": "A did:web method Decentralized Identifier (DID) resolver for the did-io library.",
"version": "6.3.1",
"type": "module",
"scripts": {
"build": "pnpm run clear && tsc",
"clear": "rimraf dist/*",
"dev": "vite",
"fix": "eslint --fix src test && pnpm run format",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint src test",
"prepare": "pnpm run build",
"rebuild": "pnpm run clear && pnpm run build",
"test": "pnpm run lint && pnpm run test-node && pnpm run test-browser",
"test-browser": "playwright test",
"test-node": "vitest run",
"test-coverage": "vitest run --coverage"
},
"files": [
"dist",
"README.md",
"LICENSE.md"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"react-native": "./dist/index.js",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"module": "dist/index.js",
"browser": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"dependencies": {
"@interop/bnid": "^6.0.2",
"@interop/data-integrity-core": "^8.7.1",
"@interop/did-io": "^4.1.1",
"@interop/http-client": "^1.0.5",
"did-context": "^3.1.1"
},
"devDependencies": {
"@digitalcredentials/x25519-key-agreement-key-2020": "^3.0.0",
"@eslint/js": "^10.0.1",
"@interop/ed25519-verification-key": "^8.0.4",
"@playwright/test": "^1.60.0",
"@types/node": "^25.9.1",
"@vitest/coverage-v8": "^4.1.7",
"eslint": "^10.4.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.6.0",
"prettier": "^3.8.3",
"rimraf": "^6.1.3",
"typescript": "^5.5.0",
"typescript-eslint": "^8.59.4",
"vite": "^8.0.14",
"vitest": "^4.1.7"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"keywords": [
"did",
"did:web",
"decentralized-identifier",
"did-io",
"isomorphic"
],
"packageManager": "pnpm@11.9.0",
"engines": {
"node": ">=24.0"
},
"author": {
"name": "Interop Alliance",
"url": "https://github.com/interop-alliance/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/interop-alliance/did-web-resolver.git"
},
"homepage": "https://github.com/interop-alliance/did-web-resolver",
"bugs": "https://github.com/interop-alliance/did-web-resolver/issues"
}