-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.11 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
{
"name": "@orbitdb/simple-encryption",
"version": "0.0.1",
"description": "A simple password encryption module that encrypts data using AES-GCM PBKDF2.",
"type": "module",
"main": "src/index.js",
"scripts": {
"lint": "standard --env=mocha",
"lint:fix": "standard --fix",
"test": "mocha"
},
"author": "OrbitDB",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/orbitdb/simple-encryption.git"
},
"keywords": [
"orbitdb",
"orbit",
"p2p",
"decentralized",
"encryption"
],
"bugs": {
"url": "https://github.com/orbitdb/simple-encryption/issues"
},
"homepage": "https://github.com/orbitdb/simple-encryption#readme",
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"@chainsafe/libp2p-gossipsub": "^14.1.0",
"@multiformats/multiaddr-matcher": "^1.6.0",
"@orbitdb/core": "github:orbitdb/orbitdb#feat/encryption",
"blockstore-level": "^2.0.1",
"helia": "^5.2.1",
"mocha": "^11.1.0",
"rimraf": "^6.0.1",
"standard": "^17.1.2"
},
"dependencies": {
"multiformats": "^13.3.2"
}
}