This repository has been archived by the owner on Sep 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
87 lines (87 loc) · 2.38 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
77
78
79
80
81
82
83
84
85
86
87
{
"name": "orbit-db-identity-provider",
"version": "0.5.0",
"description": "Default identity provider for OrbitDB",
"main": "src/identities.js",
"type": "module",
"exports": {
".": "./src/identities.js",
"./did": "./src/identity-providers/did.js",
"./ethereum": "./src/identity-providers/ethereum.js",
"./interface": "./src/identity-providers/interface.js",
"./orbitdb": "./src/identity-providers/orbitdb.js"
},
"scripts": {
"test": "npm run test:node && npm run test:browser",
"test:node": "TEST=all mocha",
"test:browser": "npm run build:tests && mocha-headless-chrome -f ./test/browser/index.html -a no-sandbox",
"lint": "standard",
"lint:fix": "standard --fix",
"build": "npm run build:dist",
"build:dist": "webpack --config ./conf/webpack.config.js",
"build:tests": "webpack --config ./conf/webpack.tests.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/orbitdb/orbit-db-identity-provider.git"
},
"keywords": [
"orbitdb",
"orbit-db",
"identity"
],
"author": "shamb0t",
"contributors": [
"shamb0t",
"haadcode",
"RichardLitt",
"latenssi",
"adam-palazzo"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/orbitdb/orbit-db-identity-provider/issues"
},
"homepage": "https://github.com/orbitdb/orbit-db-identity-provider#readme",
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/runtime": "^7.20.7",
"babel-loader": "^9.1.2",
"fs-extra": "^11.1.0",
"is-node": "^1.0.2",
"json-loader": "^0.5.7",
"key-did-provider-ed25519": "^2.0.1",
"key-did-resolver": "^2.3.0",
"level-js": "^6.1.0",
"levelup": "^5.1.1",
"localstorage-level-migration": "^0.2.0",
"mocha": "^10.2.0",
"mocha-headless-chrome": "^4.0.0",
"process": "^0.11.10",
"rimraf": "^3.0.2",
"standard": "^17.0.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"standard": {
"env": [
"mocha"
]
},
"dependencies": {
"@ethersproject/wallet": "^5.7.0",
"assert": "^2.0.0",
"dids": "^3.4.0",
"lru": "^3.1.0",
"orbit-db-keystore": "^2.0.0",
"path-browserify": "^1.0.1",
"stream-browserify": "^3.0.0",
"uint8arrays": "^4.0.3"
},
"localMaintainers": [
"haad <haad@haja.io>",
"shamb0t <shams@haja.io>",
"hajamark <mark@haja.io>"
]
}