This repository has been archived by the owner on Feb 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.69 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
88
89
90
91
92
93
{
"name": "@constl/orbit-db-kuiper",
"version": "0.1.1",
"description": "Further database types for orbit-db.",
"author": "Julien Jean Malard-Adam",
"keywords": [
"orbitdb"
],
"license": "AGPL-3.0-or-later",
"publishConfig": {
"access": "public"
},
"main": "./dist/src/index.js",
"type": "module",
"types": "./dist/src/index.d.ts",
"exports": "./dist/src/index.js",
"scripts": {
"clean": "rimraf dist",
"compile": "pnpm updateVersion && pnpm format && pnpm clean && pnpm tspc -p tsconfig.build.json",
"test": "pnpm compile && pnpm aegir test -t node --cov -- --exit",
"format": "pnpm prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\" && pnpm eslint --ext .js,.ts src",
"release": "pnpm test && (git commit -a -m 'version' || true) && pnpm publish",
"updateVersion": "pnpm genversion --es6 --semi src/version.ts"
},
"dependencies": {
"@orbitdb/core": "^2.0.1",
"events": "^3.3.0",
"helia": "^3.0.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"@chainsafe/libp2p-gossipsub": "^12.0.0",
"@chainsafe/libp2p-noise": "^15.0.0",
"@chainsafe/libp2p-yamux": "^6.0.1",
"@constl/orbit-db-types": "^2.0.0",
"@helia/block-brokers": "^2.0.0",
"@libp2p/circuit-relay-v2": "^1.0.12",
"@libp2p/identify": "^1.0.11",
"@libp2p/webrtc": "^4.0.16",
"@libp2p/websockets": "^8.0.12",
"@types/fs-extra": "^11.0.4",
"@types/mocha": "^10.0.6",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"aegir": "^42.2.2",
"blockstore-core": "^4.3.10",
"blockstore-level": "^1.1.7",
"browserify-fs": "^1.0.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"fs-extra": "^11.2.0",
"genversion": "^3.2.0",
"libp2p": "^1.2.0",
"mocha": "^10.2.0",
"os-browserify": "^0.3.0",
"prettier": "^3.2.4",
"process": "^0.11.10",
"rimraf": "^5.0.5",
"ts-patch": "^3.1.2",
"typescript": "^5.3.3",
"typescript-transform-paths": "^3.4.6"
},
"resolutions": {
"iso-constants": "git+https://github.com/inverted-capital/iso-constants.git#patch-1"
},
"overrides": {
"iso-constants": {
".": "git+https://github.com/inverted-capital/iso-constants.git#patch-1"
}
},
"jest": {
"transform": {
"(.*).ts$": [
"ts-jest",
{
"useESM": true
}
]
},
"preset": "ts-jest/presets/default-esm",
"moduleNameMapper": {
"^@/(.*).js$": "<rootDir>/src/$1",
"^@/(.*)$": "<rootDir>/src/$1"
},
"testMatch": [
"**/*.test.ts"
],
"testEnvironment": "node"
}
}