-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.42 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.42 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
{
"name": "gitpear",
"version": "1.0.3",
"description": "p2p transport helpers, daemon and cli for git based on holepunch/hypercore stack",
"scripts": {
"test": "GIT_PEAR=./.test_home brittle ./test/**/*.test.js --coverage --bail",
"types": "tsc src/*.js --declaration --allowJs --emitDeclarationOnly --outDir types --target es2015",
"lint": "standard --fix",
"preinstall": "./bin/preinstall.sh",
"nix": "./bin/nix.sh",
"pretest": "tar xzf test_home.tar.gz -C . "
},
"bin": {
"git-peard": "./src/gitpeard.js",
"git-remote-pear": "./src/git-remote-pear.js",
"git-pear": "./src/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dzdidi/gitpear.git"
},
"keywords": [
"p2p",
"pear2pear",
"peer2peer",
"git",
"transport",
"holepunch",
"hypercore"
],
"author": "dzdidi",
"license": "MIT",
"bugs": {
"url": "https://github.com/dzdidi/gitpear/issues"
},
"homepage": "https://github.com/dzdidi/gitpear#readme",
"devDependencies": {
"@hyperswarm/testnet": "^3.1.4",
"brittle": "^3.3.2",
"standard": "^17.1.0",
"typescript": "^5.1.3"
},
"dependencies": {
"@dzdidi_restored/nostr-tools": "^2.3.1",
"chokidar": "^3.5.3",
"commander": "^11.0.0",
"corestore": "^6.15.13",
"hyperdrive": "^11.6.3",
"hyperswarm": "^4.7.13",
"protomux-rpc": "^1.5.1",
"random-access-memory": "^6.2.0"
}
}