This repository has been archived by the owner on Jan 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 66
/
package.json
73 lines (73 loc) · 2.33 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
{
"name": "hypermerge",
"version": "2.0.0-beta.25",
"description": "Node.js library for building p2p collaborative applications without server infrastructure",
"main": "dist/index.js",
"scripts": {
"build": "rm -rd ./dist/* && tsc",
"postbuild": "copyfiles -f src/migrations/*.sql dist/migrations",
"format": "prettier --write 'src/**/*.ts' 'tests/**/*.ts'",
"peek": "ts-node --files tools/Peek.ts",
"cli": "ts-node --files tools/cli.ts",
"watch": "ts-node --files tools/Watch.ts",
"serve": "ts-node --files tools/Serve.ts",
"meta": "ts-node --files tools/Meta.ts",
"cat": "ts-node --files tools/Cat.ts",
"tape": "ts-node --files node_modules/tape/bin/tape tests/*.test.ts",
"tape-only": "ts-node --files node_modules/tape/bin/tape",
"tape-inspect": "node --inspect -r ts-node/register/transpile-only node_modules/tape/bin/tape"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inkandswitch/hypermerge.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/inkandswitch/hypermerge/issues"
},
"homepage": "https://github.com/inkandswitch/hypermerge#readme",
"dependencies": {
"automerge": "github:automerge/automerge#opaque-strings",
"better-sqlite3": "^5.4.3",
"bs58": "^4.0.1",
"copyfiles": "^2.1.1",
"debug": "^4.1.1",
"hypercore": "^8.2.5",
"hypercore-crypto": "^1.0.0",
"hypercore-protocol": "^7.6.0",
"js-sha1": "^0.6.0",
"mime-types": "^2.1.24",
"noise-peer": "^1.1.0",
"proper-lockfile": "^4.1.1",
"pump": "^3.0.0",
"random-access-file": "^2.1.3",
"random-access-memory": "^3.0.0",
"simple-message-channels": "^1.2.1",
"sodium-native": "^2.4.6",
"streamx": "^2.5.0",
"uuid": "^3.3.3"
},
"devDependencies": {
"@types/better-sqlite3": "^5.4.0",
"@types/debug": "^0.0.31",
"@types/mime-types": "^2.1.0",
"@types/node": "^12.12.6",
"@types/proper-lockfile": "^4.1.1",
"@types/pump": "^1.1.0",
"@types/tape": "^4.2.32",
"@types/uuid": "^3.4.5",
"@types/ws": "^6.0.3",
"commander": "^5.1.0",
"husky": "^3.0.5",
"hyperswarm": "^2.3.1",
"prettier": "^1.19.1",
"tape": "^4.11.0",
"ts-node": "^8.3.0",
"typescript": "^3.7.2"
},
"resolutions": {
"sodium-native": "^2.4.6",
"memory-pager": "1.4.0"
}
}