-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.16 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
{
"name": "ppppp-db",
"version": "0.0.1",
"description": "Default ppppp database",
"homepage": "https://github.com/staltz/ppppp-db",
"repository": {
"type": "git",
"url": "[email protected]:staltz/ppppp-db.git"
},
"author": "Andre Staltz <[email protected]>",
"license": "MIT",
"type": "commonjs",
"main": "lib/index.js",
"files": [
"lib/**/*"
],
"types": "types/index.d.ts",
"engines": {
"node": ">=16"
},
"exports": {
".": {
"require": "./lib/index.js"
},
"./msg-v4": {
"require": "./lib/msg-v4/index.js"
}
},
"dependencies": {
"@alloc/quick-lru": "^5.2.0",
"atomic-file-rw": "~0.3.0",
"b4a": "~1.6.4",
"blake3": "~2.1.7",
"bs58": "~5.0.0",
"debug": "^4.3.0",
"is-buffer-zero": "^1.0.0",
"json-canon": "~1.0.0",
"lodash.debounce": "~4.0.8",
"multicb": "~1.2.2",
"mutexify": "~1.4.0",
"obz": "~1.1.0",
"polyraf": "^1.1.0",
"ppppp-keypair": "github:staltz/ppppp-keypair#61ef4420578f450dc2cc7b1efc1c5a691a871c74",
"promisify-4loc": "~1.0.0",
"promisify-tuple": "~1.2.0",
"pull-stream": "^3.7.0",
"push-stream": "~11.2.0",
"set.prototype.union": "~1.0.2"
},
"devDependencies": {
"@types/b4a": "^1.6.0",
"@types/pull-stream": "^3.6.7",
"c8": "^7.11.0",
"flumecodec": "~0.0.1",
"husky": "^4.3.0",
"ppppp-caps": "github:staltz/ppppp-caps#93fa810b9a40b78aef4872d4c2a8412cccb52929",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"rimraf": "^4.4.0",
"secret-handshake-ext": "0.0.10",
"secret-stack": "8.0.0",
"ssb-box": "^1.0.1",
"typescript": "^5.1.3"
},
"scripts": {
"clean-check": "tsc --build --clean",
"prepublishOnly": "npm run clean-check && tsc --build",
"postpublish": "npm run clean-check",
"test": "npm run clean-check && node --test",
"test-verbose": "VERBOSE=1 npm run test",
"format-code": "prettier --write \"(lib|test)/**/*.js\"",
"format-code-staged": "pretty-quick --staged --pattern \"(lib|test)/**/*.js\"",
"coverage": "c8 --reporter=lcov npm run test"
},
"husky": {
"hooks": {
"pre-commit": "npm run format-code-staged"
}
}
}