This repository has been archived by the owner on Jul 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
85 lines (85 loc) · 2.48 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
{
"name": "db3.js",
"version": "0.3.11",
"description": "DB3 Network Javascript API",
"author": "dbpunk labs",
"keywords": [
"db",
"database",
"db3",
"document",
"indexeddb",
"encryption",
"couchdb",
"live-query",
"reactive",
"replication",
"realtime"
],
"license": "Apache-2.0",
"main": "./dist/index.js",
"module": "./dist/index.module.js",
"unpkg": "./dist/index.umd.js",
"types": "./dist/index.d.ts",
"type": "module",
"scripts": {
"build": "microbundle --entry src/index.ts",
"test": "jest"
},
"exports": {
"require": "./dist/index.cjs",
"default": "./dist/index.modern.js"
},
"dependencies": {
"@ethereumjs/util": "^8.0.5",
"@metamask/eth-sig-util": "^5.0.2",
"@noble/secp256k1": "^1.7.0",
"@protobuf-ts/grpcweb-transport": "^2.8.2",
"@protobuf-ts/runtime": "^2.8.2",
"@protobuf-ts/runtime-rpc": "^2.8.2",
"@scure/bip32": "^1.1.1",
"@scure/bip39": "^1.1.1",
"buffer": "^6.0.3",
"db3-bson": "5.1.2",
"events": "^3.3.0",
"int64-buffer": "^1.0.1",
"js-sha3": "^0.8.0",
"loglevel": "^1.8.1",
"tweetnacl": "^1.0.3",
"viem": "^0.3.50"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@protobuf-ts/plugin": "^2.8.2",
"@protobuf-ts/protoc": "^2.8.2",
"@rollup/plugin-commonjs": "^23.0.2",
"@swc/core": "^1.3.19",
"@types/google-protobuf": "^3.15.6",
"@types/jest": "^29.2.3",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"@types/secp256k1": "^4.0.3",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"babel-jest": "^29.3.1",
"benny": "^3.7.1",
"coveralls": "^3.1.1",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"microbundle": "^0.15.1",
"node-fetch": "2.6.7",
"prettier": "^2.8.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tsdx": "^0.14.1",
"tslint": "~6.1.0",
"tsup": "^6.5.0",
"typedoc": "^0.24.8",
"typescript": "^4.6.4"
}
}