generated from orbitdb/repo-template
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.27 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.27 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
{
"name": "@orbitdb/identity-provider-did",
"version": "1.0.2",
"description": "An identity provider for creating and signing OrbitDB identities using a Decentralized IDentifier (DID). See https://www.w3.org/TR/did-core/.",
"main": "src/index.js",
"type": "module",
"scripts": {
"lint": "standard --env=mocha",
"lint:fix": "standard --fix",
"test": "mocha"
},
"engines": {
"node": ">=20.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/orbitdb/orbitdb-identity-provider-did.git"
},
"keywords": [
"orbitdb",
"orbit",
"did",
"decentralized identifier",
"identifier",
"decentralized"
],
"author": "OrbitDB",
"license": "MIT",
"bugs": {
"url": "https://github.com/orbitdb/orbitdb-identity-provider-did/issues"
},
"homepage": "https://github.com/orbitdb/orbitdb-identity-provider-did#readme",
"devDependencies": {
"@orbitdb/core": "^2.4.3",
"helia": "^5.2.1",
"key-did-provider-ed25519": "^3.0.1",
"key-did-resolver": "^3.0.0",
"mocha": "^10.2.0",
"rimraf": "^5.0.5",
"standard": "^17.1.0"
},
"dependencies": {
"dids": "^4.0.3",
"uint8arrays": "^4.0.4"
},
"standard": {
"env": [
"mocha"
],
"ignore": [
"keystore"
]
}
}